|
14 | 14 | # limitations under the License.
|
15 | 15 | #
|
16 | 16 |
|
| 17 | +from google.cloud.video.stitcher_v1.services.video_stitcher_service.async_client import ( |
| 18 | + VideoStitcherServiceAsyncClient, |
| 19 | +) |
17 | 20 | from google.cloud.video.stitcher_v1.services.video_stitcher_service.client import (
|
18 | 21 | VideoStitcherServiceClient,
|
19 | 22 | )
|
20 |
| -from google.cloud.video.stitcher_v1.services.video_stitcher_service.async_client import ( |
21 |
| - VideoStitcherServiceAsyncClient, |
| 23 | +from google.cloud.video.stitcher_v1.types.ad_tag_details import ( |
| 24 | + AdRequest, |
| 25 | + LiveAdTagDetail, |
| 26 | + RequestMetadata, |
| 27 | + ResponseMetadata, |
| 28 | + VodAdTagDetail, |
| 29 | +) |
| 30 | +from google.cloud.video.stitcher_v1.types.cdn_keys import ( |
| 31 | + AkamaiCdnKey, |
| 32 | + CdnKey, |
| 33 | + GoogleCdnKey, |
| 34 | +) |
| 35 | +from google.cloud.video.stitcher_v1.types.companions import ( |
| 36 | + Companion, |
| 37 | + CompanionAds, |
| 38 | + HtmlAdResource, |
| 39 | + IframeAdResource, |
| 40 | + StaticAdResource, |
| 41 | +) |
| 42 | +from google.cloud.video.stitcher_v1.types.events import Event, ProgressEvent |
| 43 | +from google.cloud.video.stitcher_v1.types.sessions import ( |
| 44 | + AdTag, |
| 45 | + Interstitials, |
| 46 | + LiveSession, |
| 47 | + ManifestOptions, |
| 48 | + RenditionFilter, |
| 49 | + VodSession, |
| 50 | + VodSessionAd, |
| 51 | + VodSessionAdBreak, |
| 52 | + VodSessionContent, |
22 | 53 | )
|
23 |
| - |
24 |
| -from google.cloud.video.stitcher_v1.types.ad_tag_details import AdRequest |
25 |
| -from google.cloud.video.stitcher_v1.types.ad_tag_details import LiveAdTagDetail |
26 |
| -from google.cloud.video.stitcher_v1.types.ad_tag_details import RequestMetadata |
27 |
| -from google.cloud.video.stitcher_v1.types.ad_tag_details import ResponseMetadata |
28 |
| -from google.cloud.video.stitcher_v1.types.ad_tag_details import VodAdTagDetail |
29 |
| -from google.cloud.video.stitcher_v1.types.cdn_keys import AkamaiCdnKey |
30 |
| -from google.cloud.video.stitcher_v1.types.cdn_keys import CdnKey |
31 |
| -from google.cloud.video.stitcher_v1.types.cdn_keys import GoogleCdnKey |
32 |
| -from google.cloud.video.stitcher_v1.types.companions import Companion |
33 |
| -from google.cloud.video.stitcher_v1.types.companions import CompanionAds |
34 |
| -from google.cloud.video.stitcher_v1.types.companions import HtmlAdResource |
35 |
| -from google.cloud.video.stitcher_v1.types.companions import IframeAdResource |
36 |
| -from google.cloud.video.stitcher_v1.types.companions import StaticAdResource |
37 |
| -from google.cloud.video.stitcher_v1.types.events import Event |
38 |
| -from google.cloud.video.stitcher_v1.types.events import ProgressEvent |
39 |
| -from google.cloud.video.stitcher_v1.types.sessions import AdTag |
40 |
| -from google.cloud.video.stitcher_v1.types.sessions import Interstitials |
41 |
| -from google.cloud.video.stitcher_v1.types.sessions import LiveSession |
42 |
| -from google.cloud.video.stitcher_v1.types.sessions import ManifestOptions |
43 |
| -from google.cloud.video.stitcher_v1.types.sessions import RenditionFilter |
44 |
| -from google.cloud.video.stitcher_v1.types.sessions import VodSession |
45 |
| -from google.cloud.video.stitcher_v1.types.sessions import VodSessionAd |
46 |
| -from google.cloud.video.stitcher_v1.types.sessions import VodSessionAdBreak |
47 |
| -from google.cloud.video.stitcher_v1.types.sessions import VodSessionContent |
48 | 54 | from google.cloud.video.stitcher_v1.types.slates import Slate
|
49 |
| -from google.cloud.video.stitcher_v1.types.stitch_details import AdStitchDetail |
50 |
| -from google.cloud.video.stitcher_v1.types.stitch_details import VodStitchDetail |
51 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
52 |
| - CreateCdnKeyRequest, |
| 55 | +from google.cloud.video.stitcher_v1.types.stitch_details import ( |
| 56 | + AdStitchDetail, |
| 57 | + VodStitchDetail, |
53 | 58 | )
|
54 | 59 | from google.cloud.video.stitcher_v1.types.video_stitcher_service import (
|
| 60 | + CreateCdnKeyRequest, |
55 | 61 | CreateLiveSessionRequest,
|
56 |
| -) |
57 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
58 | 62 | CreateSlateRequest,
|
59 |
| -) |
60 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
61 | 63 | CreateVodSessionRequest,
|
62 |
| -) |
63 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
64 | 64 | DeleteCdnKeyRequest,
|
65 |
| -) |
66 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
67 | 65 | DeleteSlateRequest,
|
68 |
| -) |
69 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import GetCdnKeyRequest |
70 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
| 66 | + GetCdnKeyRequest, |
71 | 67 | GetLiveAdTagDetailRequest,
|
72 |
| -) |
73 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
74 | 68 | GetLiveSessionRequest,
|
75 |
| -) |
76 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import GetSlateRequest |
77 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
| 69 | + GetSlateRequest, |
78 | 70 | GetVodAdTagDetailRequest,
|
79 |
| -) |
80 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
81 | 71 | GetVodSessionRequest,
|
82 |
| -) |
83 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
84 | 72 | GetVodStitchDetailRequest,
|
85 |
| -) |
86 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
87 | 73 | ListCdnKeysRequest,
|
88 |
| -) |
89 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
90 | 74 | ListCdnKeysResponse,
|
91 |
| -) |
92 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
93 | 75 | ListLiveAdTagDetailsRequest,
|
94 |
| -) |
95 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
96 | 76 | ListLiveAdTagDetailsResponse,
|
97 |
| -) |
98 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
99 | 77 | ListSlatesRequest,
|
100 |
| -) |
101 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
102 | 78 | ListSlatesResponse,
|
103 |
| -) |
104 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
105 | 79 | ListVodAdTagDetailsRequest,
|
106 |
| -) |
107 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
108 | 80 | ListVodAdTagDetailsResponse,
|
109 |
| -) |
110 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
111 | 81 | ListVodStitchDetailsRequest,
|
112 |
| -) |
113 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
114 | 82 | ListVodStitchDetailsResponse,
|
115 |
| -) |
116 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
117 | 83 | UpdateCdnKeyRequest,
|
118 |
| -) |
119 |
| -from google.cloud.video.stitcher_v1.types.video_stitcher_service import ( |
120 | 84 | UpdateSlateRequest,
|
121 | 85 | )
|
122 | 86 |
|
|
0 commit comments