tencentcloud-sdk-python 3.0.1061__py2.py3-none-any.whl → 3.0.1063__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 might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/billing/v20180709/models.py +27 -0
- tencentcloud/cat/v20180409/models.py +1 -1
- tencentcloud/cbs/v20170312/models.py +4 -4
- tencentcloud/cwp/v20180228/models.py +9 -15
- tencentcloud/dts/v20211206/models.py +1 -1
- tencentcloud/ess/v20201111/ess_client.py +64 -8
- tencentcloud/ess/v20201111/models.py +291 -37
- tencentcloud/essbasic/v20210526/essbasic_client.py +43 -4
- tencentcloud/essbasic/v20210526/models.py +292 -25
- tencentcloud/faceid/v20180301/models.py +2 -2
- tencentcloud/iss/v20230517/errorcodes.py +3 -0
- tencentcloud/iss/v20230517/models.py +20 -8
- tencentcloud/ivld/v20210903/models.py +1 -1
- tencentcloud/mongodb/v20190725/models.py +149 -0
- tencentcloud/omics/v20221128/models.py +55 -2
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +6 -6
- tencentcloud/ssm/v20190923/models.py +2 -2
- tencentcloud/tcb/v20180608/models.py +3 -3
- tencentcloud/tsf/v20180326/models.py +1 -1
- tencentcloud/tsf/v20180326/tsf_client.py +1 -1
- tencentcloud/vod/v20180717/models.py +117 -118
- tencentcloud/vod/v20180717/vod_client.py +2 -1
- tencentcloud/vpc/v20170312/models.py +24 -0
- tencentcloud/wedata/v20210820/models.py +1353 -0
- tencentcloud/wedata/v20210820/wedata_client.py +69 -0
- {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/RECORD +31 -31
- {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1061.dist-info → tencentcloud_sdk_python-3.0.1063.dist-info}/top_level.txt +0 -0
|
@@ -347,6 +347,7 @@ class VodClient(AbstractClient):
|
|
|
347
347
|
|
|
348
348
|
def CreateHeadTailTemplate(self, request):
|
|
349
349
|
"""创建片头片尾模板。
|
|
350
|
+
- 最大支持模版数量为 100 个。
|
|
350
351
|
|
|
351
352
|
:param request: Request instance for CreateHeadTailTemplate.
|
|
352
353
|
:type request: :class:`tencentcloud.vod.v20180717.models.CreateHeadTailTemplateRequest`
|
|
@@ -1828,7 +1829,7 @@ class VodClient(AbstractClient):
|
|
|
1828
1829
|
|
|
1829
1830
|
def DescribeFileAttributes(self, request):
|
|
1830
1831
|
"""用于异步获取文件属性。
|
|
1831
|
-
- 当前仅支持获取源文件的 Md5。
|
|
1832
|
+
- 当前仅支持获取源文件的 Md5、Sha1。
|
|
1832
1833
|
- 对输入文件为 HLS 或 DASH 的情况,仅获取索引文件的属性。
|
|
1833
1834
|
|
|
1834
1835
|
:param request: Request instance for DescribeFileAttributes.
|
|
@@ -31518,10 +31518,16 @@ class ModifyCcnAttributeRequest(AbstractModel):
|
|
|
31518
31518
|
:type CcnName: str
|
|
31519
31519
|
:param _CcnDescription: CCN描述信息,最大长度不能超过100个字节,限制:CcnName和CcnDescription必须至少选择一个参数输入,否则报错。
|
|
31520
31520
|
:type CcnDescription: str
|
|
31521
|
+
:param _RouteECMPFlag: 是否开启等价路由功能。`False` 不开启,`True` 开启。
|
|
31522
|
+
:type RouteECMPFlag: bool
|
|
31523
|
+
:param _RouteOverlapFlag: 是否开启路由重叠功能。`False` 不开启,`True` 开启。
|
|
31524
|
+
:type RouteOverlapFlag: bool
|
|
31521
31525
|
"""
|
|
31522
31526
|
self._CcnId = None
|
|
31523
31527
|
self._CcnName = None
|
|
31524
31528
|
self._CcnDescription = None
|
|
31529
|
+
self._RouteECMPFlag = None
|
|
31530
|
+
self._RouteOverlapFlag = None
|
|
31525
31531
|
|
|
31526
31532
|
@property
|
|
31527
31533
|
def CcnId(self):
|
|
@@ -31547,11 +31553,29 @@ class ModifyCcnAttributeRequest(AbstractModel):
|
|
|
31547
31553
|
def CcnDescription(self, CcnDescription):
|
|
31548
31554
|
self._CcnDescription = CcnDescription
|
|
31549
31555
|
|
|
31556
|
+
@property
|
|
31557
|
+
def RouteECMPFlag(self):
|
|
31558
|
+
return self._RouteECMPFlag
|
|
31559
|
+
|
|
31560
|
+
@RouteECMPFlag.setter
|
|
31561
|
+
def RouteECMPFlag(self, RouteECMPFlag):
|
|
31562
|
+
self._RouteECMPFlag = RouteECMPFlag
|
|
31563
|
+
|
|
31564
|
+
@property
|
|
31565
|
+
def RouteOverlapFlag(self):
|
|
31566
|
+
return self._RouteOverlapFlag
|
|
31567
|
+
|
|
31568
|
+
@RouteOverlapFlag.setter
|
|
31569
|
+
def RouteOverlapFlag(self, RouteOverlapFlag):
|
|
31570
|
+
self._RouteOverlapFlag = RouteOverlapFlag
|
|
31571
|
+
|
|
31550
31572
|
|
|
31551
31573
|
def _deserialize(self, params):
|
|
31552
31574
|
self._CcnId = params.get("CcnId")
|
|
31553
31575
|
self._CcnName = params.get("CcnName")
|
|
31554
31576
|
self._CcnDescription = params.get("CcnDescription")
|
|
31577
|
+
self._RouteECMPFlag = params.get("RouteECMPFlag")
|
|
31578
|
+
self._RouteOverlapFlag = params.get("RouteOverlapFlag")
|
|
31555
31579
|
memeber_set = set(params.keys())
|
|
31556
31580
|
for name, value in vars(self).items():
|
|
31557
31581
|
property_name = name[1:]
|