alibabacloud-vod20170321 3.8.2__tar.gz → 3.9.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/ChangeLog.md +7 -0
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/PKG-INFO +1 -1
- alibabacloud_vod20170321-3.9.1/alibabacloud_vod20170321/__init__.py +1 -0
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/alibabacloud_vod20170321/client.py +104 -0
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/alibabacloud_vod20170321/models.py +161 -0
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/alibabacloud_vod20170321.egg-info/PKG-INFO +1 -1
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/setup.py +1 -1
- alibabacloud_vod20170321-3.8.2/alibabacloud_vod20170321/__init__.py +0 -1
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/LICENSE +0 -0
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/MANIFEST.in +0 -0
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/README-CN.md +0 -0
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/README.md +0 -0
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/alibabacloud_vod20170321.egg-info/SOURCES.txt +0 -0
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/alibabacloud_vod20170321.egg-info/dependency_links.txt +0 -0
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/alibabacloud_vod20170321.egg-info/requires.txt +0 -0
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/alibabacloud_vod20170321.egg-info/top_level.txt +0 -0
- {alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '3.9.1'
|
{alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/alibabacloud_vod20170321/client.py
RENAMED
|
@@ -10603,6 +10603,110 @@ class Client(OpenApiClient):
|
|
|
10603
10603
|
runtime = util_models.RuntimeOptions()
|
|
10604
10604
|
return await self.describe_vod_user_domains_with_options_async(request, runtime)
|
|
10605
10605
|
|
|
10606
|
+
def describe_vod_user_vips_by_domain_with_options(
|
|
10607
|
+
self,
|
|
10608
|
+
request: vod_20170321_models.DescribeVodUserVipsByDomainRequest,
|
|
10609
|
+
runtime: util_models.RuntimeOptions,
|
|
10610
|
+
) -> vod_20170321_models.DescribeVodUserVipsByDomainResponse:
|
|
10611
|
+
"""
|
|
10612
|
+
@summary 获取域名Vip
|
|
10613
|
+
|
|
10614
|
+
@param request: DescribeVodUserVipsByDomainRequest
|
|
10615
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
10616
|
+
@return: DescribeVodUserVipsByDomainResponse
|
|
10617
|
+
"""
|
|
10618
|
+
UtilClient.validate_model(request)
|
|
10619
|
+
query = {}
|
|
10620
|
+
if not UtilClient.is_unset(request.available):
|
|
10621
|
+
query['Available'] = request.available
|
|
10622
|
+
if not UtilClient.is_unset(request.domain_name):
|
|
10623
|
+
query['DomainName'] = request.domain_name
|
|
10624
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
10625
|
+
query['OwnerId'] = request.owner_id
|
|
10626
|
+
req = open_api_models.OpenApiRequest(
|
|
10627
|
+
query=OpenApiUtilClient.query(query)
|
|
10628
|
+
)
|
|
10629
|
+
params = open_api_models.Params(
|
|
10630
|
+
action='DescribeVodUserVipsByDomain',
|
|
10631
|
+
version='2017-03-21',
|
|
10632
|
+
protocol='HTTPS',
|
|
10633
|
+
pathname='/',
|
|
10634
|
+
method='POST',
|
|
10635
|
+
auth_type='AK',
|
|
10636
|
+
style='RPC',
|
|
10637
|
+
req_body_type='formData',
|
|
10638
|
+
body_type='json'
|
|
10639
|
+
)
|
|
10640
|
+
return TeaCore.from_map(
|
|
10641
|
+
vod_20170321_models.DescribeVodUserVipsByDomainResponse(),
|
|
10642
|
+
self.call_api(params, req, runtime)
|
|
10643
|
+
)
|
|
10644
|
+
|
|
10645
|
+
async def describe_vod_user_vips_by_domain_with_options_async(
|
|
10646
|
+
self,
|
|
10647
|
+
request: vod_20170321_models.DescribeVodUserVipsByDomainRequest,
|
|
10648
|
+
runtime: util_models.RuntimeOptions,
|
|
10649
|
+
) -> vod_20170321_models.DescribeVodUserVipsByDomainResponse:
|
|
10650
|
+
"""
|
|
10651
|
+
@summary 获取域名Vip
|
|
10652
|
+
|
|
10653
|
+
@param request: DescribeVodUserVipsByDomainRequest
|
|
10654
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
10655
|
+
@return: DescribeVodUserVipsByDomainResponse
|
|
10656
|
+
"""
|
|
10657
|
+
UtilClient.validate_model(request)
|
|
10658
|
+
query = {}
|
|
10659
|
+
if not UtilClient.is_unset(request.available):
|
|
10660
|
+
query['Available'] = request.available
|
|
10661
|
+
if not UtilClient.is_unset(request.domain_name):
|
|
10662
|
+
query['DomainName'] = request.domain_name
|
|
10663
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
10664
|
+
query['OwnerId'] = request.owner_id
|
|
10665
|
+
req = open_api_models.OpenApiRequest(
|
|
10666
|
+
query=OpenApiUtilClient.query(query)
|
|
10667
|
+
)
|
|
10668
|
+
params = open_api_models.Params(
|
|
10669
|
+
action='DescribeVodUserVipsByDomain',
|
|
10670
|
+
version='2017-03-21',
|
|
10671
|
+
protocol='HTTPS',
|
|
10672
|
+
pathname='/',
|
|
10673
|
+
method='POST',
|
|
10674
|
+
auth_type='AK',
|
|
10675
|
+
style='RPC',
|
|
10676
|
+
req_body_type='formData',
|
|
10677
|
+
body_type='json'
|
|
10678
|
+
)
|
|
10679
|
+
return TeaCore.from_map(
|
|
10680
|
+
vod_20170321_models.DescribeVodUserVipsByDomainResponse(),
|
|
10681
|
+
await self.call_api_async(params, req, runtime)
|
|
10682
|
+
)
|
|
10683
|
+
|
|
10684
|
+
def describe_vod_user_vips_by_domain(
|
|
10685
|
+
self,
|
|
10686
|
+
request: vod_20170321_models.DescribeVodUserVipsByDomainRequest,
|
|
10687
|
+
) -> vod_20170321_models.DescribeVodUserVipsByDomainResponse:
|
|
10688
|
+
"""
|
|
10689
|
+
@summary 获取域名Vip
|
|
10690
|
+
|
|
10691
|
+
@param request: DescribeVodUserVipsByDomainRequest
|
|
10692
|
+
@return: DescribeVodUserVipsByDomainResponse
|
|
10693
|
+
"""
|
|
10694
|
+
runtime = util_models.RuntimeOptions()
|
|
10695
|
+
return self.describe_vod_user_vips_by_domain_with_options(request, runtime)
|
|
10696
|
+
|
|
10697
|
+
async def describe_vod_user_vips_by_domain_async(
|
|
10698
|
+
self,
|
|
10699
|
+
request: vod_20170321_models.DescribeVodUserVipsByDomainRequest,
|
|
10700
|
+
) -> vod_20170321_models.DescribeVodUserVipsByDomainResponse:
|
|
10701
|
+
"""
|
|
10702
|
+
@summary 获取域名Vip
|
|
10703
|
+
|
|
10704
|
+
@param request: DescribeVodUserVipsByDomainRequest
|
|
10705
|
+
@return: DescribeVodUserVipsByDomainResponse
|
|
10706
|
+
"""
|
|
10707
|
+
runtime = util_models.RuntimeOptions()
|
|
10708
|
+
return await self.describe_vod_user_vips_by_domain_with_options_async(request, runtime)
|
|
10709
|
+
|
|
10606
10710
|
def describe_vod_verify_content_with_options(
|
|
10607
10711
|
self,
|
|
10608
10712
|
request: vod_20170321_models.DescribeVodVerifyContentRequest,
|
{alibabacloud_vod20170321-3.8.2 → alibabacloud_vod20170321-3.9.1}/alibabacloud_vod20170321/models.py
RENAMED
|
@@ -2634,6 +2634,7 @@ class BatchGetMediaInfosResponseBodyMediaInfosMezzanineInfo(TeaModel):
|
|
|
2634
2634
|
bitrate: str = None,
|
|
2635
2635
|
creation_time: str = None,
|
|
2636
2636
|
duration: str = None,
|
|
2637
|
+
file_md5: str = None,
|
|
2637
2638
|
file_name: str = None,
|
|
2638
2639
|
file_url: str = None,
|
|
2639
2640
|
fps: str = None,
|
|
@@ -2652,6 +2653,7 @@ class BatchGetMediaInfosResponseBodyMediaInfosMezzanineInfo(TeaModel):
|
|
|
2652
2653
|
self.creation_time = creation_time
|
|
2653
2654
|
# The duration of the file. Unit: seconds.
|
|
2654
2655
|
self.duration = duration
|
|
2656
|
+
self.file_md5 = file_md5
|
|
2655
2657
|
# The name of the file.
|
|
2656
2658
|
self.file_name = file_name
|
|
2657
2659
|
# The OSS URL of the source file.
|
|
@@ -2702,6 +2704,8 @@ class BatchGetMediaInfosResponseBodyMediaInfosMezzanineInfo(TeaModel):
|
|
|
2702
2704
|
result['CreationTime'] = self.creation_time
|
|
2703
2705
|
if self.duration is not None:
|
|
2704
2706
|
result['Duration'] = self.duration
|
|
2707
|
+
if self.file_md5 is not None:
|
|
2708
|
+
result['FileMD5'] = self.file_md5
|
|
2705
2709
|
if self.file_name is not None:
|
|
2706
2710
|
result['FileName'] = self.file_name
|
|
2707
2711
|
if self.file_url is not None:
|
|
@@ -2737,6 +2741,8 @@ class BatchGetMediaInfosResponseBodyMediaInfosMezzanineInfo(TeaModel):
|
|
|
2737
2741
|
self.creation_time = m.get('CreationTime')
|
|
2738
2742
|
if m.get('Duration') is not None:
|
|
2739
2743
|
self.duration = m.get('Duration')
|
|
2744
|
+
if m.get('FileMD5') is not None:
|
|
2745
|
+
self.file_md5 = m.get('FileMD5')
|
|
2740
2746
|
if m.get('FileName') is not None:
|
|
2741
2747
|
self.file_name = m.get('FileName')
|
|
2742
2748
|
if m.get('FileURL') is not None:
|
|
@@ -18124,6 +18130,155 @@ class DescribeVodUserDomainsResponse(TeaModel):
|
|
|
18124
18130
|
return self
|
|
18125
18131
|
|
|
18126
18132
|
|
|
18133
|
+
class DescribeVodUserVipsByDomainRequest(TeaModel):
|
|
18134
|
+
def __init__(
|
|
18135
|
+
self,
|
|
18136
|
+
available: str = None,
|
|
18137
|
+
domain_name: str = None,
|
|
18138
|
+
owner_id: int = None,
|
|
18139
|
+
):
|
|
18140
|
+
self.available = available
|
|
18141
|
+
# This parameter is required.
|
|
18142
|
+
self.domain_name = domain_name
|
|
18143
|
+
self.owner_id = owner_id
|
|
18144
|
+
|
|
18145
|
+
def validate(self):
|
|
18146
|
+
pass
|
|
18147
|
+
|
|
18148
|
+
def to_map(self):
|
|
18149
|
+
_map = super().to_map()
|
|
18150
|
+
if _map is not None:
|
|
18151
|
+
return _map
|
|
18152
|
+
|
|
18153
|
+
result = dict()
|
|
18154
|
+
if self.available is not None:
|
|
18155
|
+
result['Available'] = self.available
|
|
18156
|
+
if self.domain_name is not None:
|
|
18157
|
+
result['DomainName'] = self.domain_name
|
|
18158
|
+
if self.owner_id is not None:
|
|
18159
|
+
result['OwnerId'] = self.owner_id
|
|
18160
|
+
return result
|
|
18161
|
+
|
|
18162
|
+
def from_map(self, m: dict = None):
|
|
18163
|
+
m = m or dict()
|
|
18164
|
+
if m.get('Available') is not None:
|
|
18165
|
+
self.available = m.get('Available')
|
|
18166
|
+
if m.get('DomainName') is not None:
|
|
18167
|
+
self.domain_name = m.get('DomainName')
|
|
18168
|
+
if m.get('OwnerId') is not None:
|
|
18169
|
+
self.owner_id = m.get('OwnerId')
|
|
18170
|
+
return self
|
|
18171
|
+
|
|
18172
|
+
|
|
18173
|
+
class DescribeVodUserVipsByDomainResponseBodyVips(TeaModel):
|
|
18174
|
+
def __init__(
|
|
18175
|
+
self,
|
|
18176
|
+
vip: List[str] = None,
|
|
18177
|
+
):
|
|
18178
|
+
self.vip = vip
|
|
18179
|
+
|
|
18180
|
+
def validate(self):
|
|
18181
|
+
pass
|
|
18182
|
+
|
|
18183
|
+
def to_map(self):
|
|
18184
|
+
_map = super().to_map()
|
|
18185
|
+
if _map is not None:
|
|
18186
|
+
return _map
|
|
18187
|
+
|
|
18188
|
+
result = dict()
|
|
18189
|
+
if self.vip is not None:
|
|
18190
|
+
result['Vip'] = self.vip
|
|
18191
|
+
return result
|
|
18192
|
+
|
|
18193
|
+
def from_map(self, m: dict = None):
|
|
18194
|
+
m = m or dict()
|
|
18195
|
+
if m.get('Vip') is not None:
|
|
18196
|
+
self.vip = m.get('Vip')
|
|
18197
|
+
return self
|
|
18198
|
+
|
|
18199
|
+
|
|
18200
|
+
class DescribeVodUserVipsByDomainResponseBody(TeaModel):
|
|
18201
|
+
def __init__(
|
|
18202
|
+
self,
|
|
18203
|
+
domain_name: str = None,
|
|
18204
|
+
request_id: str = None,
|
|
18205
|
+
vips: DescribeVodUserVipsByDomainResponseBodyVips = None,
|
|
18206
|
+
):
|
|
18207
|
+
self.domain_name = domain_name
|
|
18208
|
+
self.request_id = request_id
|
|
18209
|
+
self.vips = vips
|
|
18210
|
+
|
|
18211
|
+
def validate(self):
|
|
18212
|
+
if self.vips:
|
|
18213
|
+
self.vips.validate()
|
|
18214
|
+
|
|
18215
|
+
def to_map(self):
|
|
18216
|
+
_map = super().to_map()
|
|
18217
|
+
if _map is not None:
|
|
18218
|
+
return _map
|
|
18219
|
+
|
|
18220
|
+
result = dict()
|
|
18221
|
+
if self.domain_name is not None:
|
|
18222
|
+
result['DomainName'] = self.domain_name
|
|
18223
|
+
if self.request_id is not None:
|
|
18224
|
+
result['RequestId'] = self.request_id
|
|
18225
|
+
if self.vips is not None:
|
|
18226
|
+
result['Vips'] = self.vips.to_map()
|
|
18227
|
+
return result
|
|
18228
|
+
|
|
18229
|
+
def from_map(self, m: dict = None):
|
|
18230
|
+
m = m or dict()
|
|
18231
|
+
if m.get('DomainName') is not None:
|
|
18232
|
+
self.domain_name = m.get('DomainName')
|
|
18233
|
+
if m.get('RequestId') is not None:
|
|
18234
|
+
self.request_id = m.get('RequestId')
|
|
18235
|
+
if m.get('Vips') is not None:
|
|
18236
|
+
temp_model = DescribeVodUserVipsByDomainResponseBodyVips()
|
|
18237
|
+
self.vips = temp_model.from_map(m['Vips'])
|
|
18238
|
+
return self
|
|
18239
|
+
|
|
18240
|
+
|
|
18241
|
+
class DescribeVodUserVipsByDomainResponse(TeaModel):
|
|
18242
|
+
def __init__(
|
|
18243
|
+
self,
|
|
18244
|
+
headers: Dict[str, str] = None,
|
|
18245
|
+
status_code: int = None,
|
|
18246
|
+
body: DescribeVodUserVipsByDomainResponseBody = None,
|
|
18247
|
+
):
|
|
18248
|
+
self.headers = headers
|
|
18249
|
+
self.status_code = status_code
|
|
18250
|
+
self.body = body
|
|
18251
|
+
|
|
18252
|
+
def validate(self):
|
|
18253
|
+
if self.body:
|
|
18254
|
+
self.body.validate()
|
|
18255
|
+
|
|
18256
|
+
def to_map(self):
|
|
18257
|
+
_map = super().to_map()
|
|
18258
|
+
if _map is not None:
|
|
18259
|
+
return _map
|
|
18260
|
+
|
|
18261
|
+
result = dict()
|
|
18262
|
+
if self.headers is not None:
|
|
18263
|
+
result['headers'] = self.headers
|
|
18264
|
+
if self.status_code is not None:
|
|
18265
|
+
result['statusCode'] = self.status_code
|
|
18266
|
+
if self.body is not None:
|
|
18267
|
+
result['body'] = self.body.to_map()
|
|
18268
|
+
return result
|
|
18269
|
+
|
|
18270
|
+
def from_map(self, m: dict = None):
|
|
18271
|
+
m = m or dict()
|
|
18272
|
+
if m.get('headers') is not None:
|
|
18273
|
+
self.headers = m.get('headers')
|
|
18274
|
+
if m.get('statusCode') is not None:
|
|
18275
|
+
self.status_code = m.get('statusCode')
|
|
18276
|
+
if m.get('body') is not None:
|
|
18277
|
+
temp_model = DescribeVodUserVipsByDomainResponseBody()
|
|
18278
|
+
self.body = temp_model.from_map(m['body'])
|
|
18279
|
+
return self
|
|
18280
|
+
|
|
18281
|
+
|
|
18127
18282
|
class DescribeVodVerifyContentRequest(TeaModel):
|
|
18128
18283
|
def __init__(
|
|
18129
18284
|
self,
|
|
@@ -28415,6 +28570,7 @@ class GetMezzanineInfoResponseBodyMezzanine(TeaModel):
|
|
|
28415
28570
|
bitrate: str = None,
|
|
28416
28571
|
creation_time: str = None,
|
|
28417
28572
|
duration: str = None,
|
|
28573
|
+
file_md5: str = None,
|
|
28418
28574
|
file_name: str = None,
|
|
28419
28575
|
file_url: str = None,
|
|
28420
28576
|
fps: str = None,
|
|
@@ -28438,6 +28594,7 @@ class GetMezzanineInfoResponseBodyMezzanine(TeaModel):
|
|
|
28438
28594
|
self.creation_time = creation_time
|
|
28439
28595
|
# The duration of the file. Unit: seconds.
|
|
28440
28596
|
self.duration = duration
|
|
28597
|
+
self.file_md5 = file_md5
|
|
28441
28598
|
# The name of the file.
|
|
28442
28599
|
self.file_name = file_name
|
|
28443
28600
|
# The URL of the file.
|
|
@@ -28517,6 +28674,8 @@ class GetMezzanineInfoResponseBodyMezzanine(TeaModel):
|
|
|
28517
28674
|
result['CreationTime'] = self.creation_time
|
|
28518
28675
|
if self.duration is not None:
|
|
28519
28676
|
result['Duration'] = self.duration
|
|
28677
|
+
if self.file_md5 is not None:
|
|
28678
|
+
result['FileMD5'] = self.file_md5
|
|
28520
28679
|
if self.file_name is not None:
|
|
28521
28680
|
result['FileName'] = self.file_name
|
|
28522
28681
|
if self.file_url is not None:
|
|
@@ -28562,6 +28721,8 @@ class GetMezzanineInfoResponseBodyMezzanine(TeaModel):
|
|
|
28562
28721
|
self.creation_time = m.get('CreationTime')
|
|
28563
28722
|
if m.get('Duration') is not None:
|
|
28564
28723
|
self.duration = m.get('Duration')
|
|
28724
|
+
if m.get('FileMD5') is not None:
|
|
28725
|
+
self.file_md5 = m.get('FileMD5')
|
|
28565
28726
|
if m.get('FileName') is not None:
|
|
28566
28727
|
self.file_name = m.get('FileName')
|
|
28567
28728
|
if m.get('FileURL') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '3.8.2'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|