tencentcloud-sdk-python-intl-en 3.0.1106__py2.py3-none-any.whl → 3.0.1107__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/vod/v20180717/models.py +60 -0
- {tencentcloud_sdk_python_intl_en-3.0.1106.dist-info → tencentcloud_sdk_python_intl_en-3.0.1107.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1106.dist-info → tencentcloud_sdk_python_intl_en-3.0.1107.dist-info}/RECORD +6 -6
- {tencentcloud_sdk_python_intl_en-3.0.1106.dist-info → tencentcloud_sdk_python_intl_en-3.0.1107.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1106.dist-info → tencentcloud_sdk_python_intl_en-3.0.1107.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -19343,6 +19343,51 @@ class CreateDomainVerifyRecordRequest(AbstractModel):
|
|
|
19343
19343
|
|
|
19344
19344
|
"""
|
|
19345
19345
|
|
|
19346
|
+
def __init__(self):
|
|
19347
|
+
r"""
|
|
19348
|
+
:param _Domain: Need to access the VOD acceleration domain name.
|
|
19349
|
+
:type Domain: str
|
|
19350
|
+
:param _SubAppId: <b>The VOD [application](https://intl.cloud.tencent.com/document/product/266/14574) ID. For customers who activate VOD service from December 25, 2024, if they want to access resources in a VOD application (whether it's the default application or a newly created one), they must fill in this field with the application ID.</b>
|
|
19351
|
+
:type SubAppId: int
|
|
19352
|
+
"""
|
|
19353
|
+
self._Domain = None
|
|
19354
|
+
self._SubAppId = None
|
|
19355
|
+
|
|
19356
|
+
@property
|
|
19357
|
+
def Domain(self):
|
|
19358
|
+
"""Need to access the VOD acceleration domain name.
|
|
19359
|
+
:rtype: str
|
|
19360
|
+
"""
|
|
19361
|
+
return self._Domain
|
|
19362
|
+
|
|
19363
|
+
@Domain.setter
|
|
19364
|
+
def Domain(self, Domain):
|
|
19365
|
+
self._Domain = Domain
|
|
19366
|
+
|
|
19367
|
+
@property
|
|
19368
|
+
def SubAppId(self):
|
|
19369
|
+
"""<b>The VOD [application](https://intl.cloud.tencent.com/document/product/266/14574) ID. For customers who activate VOD service from December 25, 2024, if they want to access resources in a VOD application (whether it's the default application or a newly created one), they must fill in this field with the application ID.</b>
|
|
19370
|
+
:rtype: int
|
|
19371
|
+
"""
|
|
19372
|
+
return self._SubAppId
|
|
19373
|
+
|
|
19374
|
+
@SubAppId.setter
|
|
19375
|
+
def SubAppId(self, SubAppId):
|
|
19376
|
+
self._SubAppId = SubAppId
|
|
19377
|
+
|
|
19378
|
+
|
|
19379
|
+
def _deserialize(self, params):
|
|
19380
|
+
self._Domain = params.get("Domain")
|
|
19381
|
+
self._SubAppId = params.get("SubAppId")
|
|
19382
|
+
memeber_set = set(params.keys())
|
|
19383
|
+
for name, value in vars(self).items():
|
|
19384
|
+
property_name = name[1:]
|
|
19385
|
+
if property_name in memeber_set:
|
|
19386
|
+
memeber_set.remove(property_name)
|
|
19387
|
+
if len(memeber_set) > 0:
|
|
19388
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
19389
|
+
|
|
19390
|
+
|
|
19346
19391
|
|
|
19347
19392
|
class CreateDomainVerifyRecordResponse(AbstractModel):
|
|
19348
19393
|
"""CreateDomainVerifyRecord response structure.
|
|
@@ -74238,6 +74283,8 @@ class VerifyDomainRecordRequest(AbstractModel):
|
|
|
74238
74283
|
r"""
|
|
74239
74284
|
:param _Domain: Need to access the VOD acceleration domain name.
|
|
74240
74285
|
:type Domain: str
|
|
74286
|
+
:param _SubAppId: <b>The VOD [application](https://intl.cloud.tencent.com/document/product/266/14574) ID. For customers who activate VOD service from December 25, 2024, if they want to access resources in a VOD application (whether it's the default application or a newly created one), they must fill in this field with the application ID.</b>
|
|
74287
|
+
:type SubAppId: int
|
|
74241
74288
|
:param _VerifyType: VerifyType:
|
|
74242
74289
|
<li>dns: DNS Parse verification; </li>
|
|
74243
74290
|
<li>fIle: Document verification.</li>
|
|
@@ -74246,6 +74293,7 @@ Default value: dns.
|
|
|
74246
74293
|
:type VerifyType: str
|
|
74247
74294
|
"""
|
|
74248
74295
|
self._Domain = None
|
|
74296
|
+
self._SubAppId = None
|
|
74249
74297
|
self._VerifyType = None
|
|
74250
74298
|
|
|
74251
74299
|
@property
|
|
@@ -74259,6 +74307,17 @@ Default value: dns.
|
|
|
74259
74307
|
def Domain(self, Domain):
|
|
74260
74308
|
self._Domain = Domain
|
|
74261
74309
|
|
|
74310
|
+
@property
|
|
74311
|
+
def SubAppId(self):
|
|
74312
|
+
"""<b>The VOD [application](https://intl.cloud.tencent.com/document/product/266/14574) ID. For customers who activate VOD service from December 25, 2024, if they want to access resources in a VOD application (whether it's the default application or a newly created one), they must fill in this field with the application ID.</b>
|
|
74313
|
+
:rtype: int
|
|
74314
|
+
"""
|
|
74315
|
+
return self._SubAppId
|
|
74316
|
+
|
|
74317
|
+
@SubAppId.setter
|
|
74318
|
+
def SubAppId(self, SubAppId):
|
|
74319
|
+
self._SubAppId = SubAppId
|
|
74320
|
+
|
|
74262
74321
|
@property
|
|
74263
74322
|
def VerifyType(self):
|
|
74264
74323
|
"""VerifyType:
|
|
@@ -74277,6 +74336,7 @@ Default value: dns.
|
|
|
74277
74336
|
|
|
74278
74337
|
def _deserialize(self, params):
|
|
74279
74338
|
self._Domain = params.get("Domain")
|
|
74339
|
+
self._SubAppId = params.get("SubAppId")
|
|
74280
74340
|
self._VerifyType = params.get("VerifyType")
|
|
74281
74341
|
memeber_set = set(params.keys())
|
|
74282
74342
|
for name, value in vars(self).items():
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=RMR1kC4Nt0NWHk_5cMrnoidz9Rst3V5ZubZD0fAtBCM,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
|
|
@@ -587,7 +587,7 @@ tencentcloud/vm/v20210922/vm_client.py,sha256=2UIsX6GMf-PgGico7p4AKu7zBKXY-hyyhV
|
|
|
587
587
|
tencentcloud/vod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
588
588
|
tencentcloud/vod/v20180717/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
589
589
|
tencentcloud/vod/v20180717/errorcodes.py,sha256=3P_KCtKz8lsSy2gz2FPlL4GTprTK2moTMNdZ_MfMRss,27070
|
|
590
|
-
tencentcloud/vod/v20180717/models.py,sha256=
|
|
590
|
+
tencentcloud/vod/v20180717/models.py,sha256=4eXN-ENOMo6WUatIvSEq99WYvuVHCOVXfV1LRMHFca0,2908933
|
|
591
591
|
tencentcloud/vod/v20180717/vod_client.py,sha256=mtpzExtuXHGeiVPeKH7MJ8leX6VuCdehLoXqxfM1ihw,199270
|
|
592
592
|
tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
593
593
|
tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -609,7 +609,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
609
609
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
610
610
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
611
611
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
612
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
613
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
614
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
615
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
612
|
+
tencentcloud_sdk_python_intl_en-3.0.1107.dist-info/METADATA,sha256=2XMQ9a8H1mxqtW9h3LAFiGEFQGuR3ruZfkCPLsjpN9o,1628
|
|
613
|
+
tencentcloud_sdk_python_intl_en-3.0.1107.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
614
|
+
tencentcloud_sdk_python_intl_en-3.0.1107.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
615
|
+
tencentcloud_sdk_python_intl_en-3.0.1107.dist-info/RECORD,,
|
|
File without changes
|