tencentcloud-sdk-python 3.1.102__py2.py3-none-any.whl → 3.1.104__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cdb/v20170320/models.py +30 -0
- tencentcloud/ckafka/v20190819/models.py +2 -2
- tencentcloud/clb/v20180317/models.py +15 -0
- tencentcloud/csip/v20221121/models.py +393 -176
- tencentcloud/cvm/v20170312/models.py +10 -14
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +46 -0
- tencentcloud/cynosdb/v20190107/cynosdb_client_async.py +36 -0
- tencentcloud/cynosdb/v20190107/models.py +996 -64
- tencentcloud/es/v20180416/models.py +161 -134
- tencentcloud/ga2/v20250115/errorcodes.py +3 -0
- tencentcloud/ga2/v20250115/ga2_client.py +92 -0
- tencentcloud/ga2/v20250115/ga2_client_async.py +72 -0
- tencentcloud/ga2/v20250115/models.py +641 -44
- tencentcloud/hai/v20230812/models.py +70 -0
- tencentcloud/iotexplorer/v20190423/errorcodes.py +81 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +463 -1
- tencentcloud/iotexplorer/v20190423/iotexplorer_client_async.py +362 -0
- tencentcloud/iotexplorer/v20190423/models.py +13917 -9785
- tencentcloud/mqtt/v20240516/models.py +289 -0
- tencentcloud/mqtt/v20240516/mqtt_client.py +46 -0
- tencentcloud/mqtt/v20240516/mqtt_client_async.py +36 -0
- tencentcloud/ssl/v20191205/models.py +107 -292
- tencentcloud/tcaplusdb/v20190823/models.py +24 -24
- tencentcloud/tcb/v20180608/models.py +247 -16
- tencentcloud/tdai/v20250717/errorcodes.py +3 -0
- tencentcloud/tdai/v20250717/models.py +1778 -118
- tencentcloud/tdai/v20250717/tdai_client.py +207 -0
- tencentcloud/tdai/v20250717/tdai_client_async.py +162 -0
- tencentcloud/teo/v20220901/models.py +17 -2
- tencentcloud/tke/v20180525/models.py +138 -18
- tencentcloud/trp/v20210515/models.py +2 -2
- tencentcloud/waf/v20180125/models.py +1491 -1114
- tencentcloud/waf/v20180125/waf_client.py +1 -1
- tencentcloud/waf/v20180125/waf_client_async.py +1 -1
- {tencentcloud_sdk_python-3.1.102.dist-info → tencentcloud_sdk_python-3.1.104.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.1.102.dist-info → tencentcloud_sdk_python-3.1.104.dist-info}/RECORD +40 -40
- {tencentcloud_sdk_python-3.1.102.dist-info → tencentcloud_sdk_python-3.1.104.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.1.102.dist-info → tencentcloud_sdk_python-3.1.104.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.1.102.dist-info → tencentcloud_sdk_python-3.1.104.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -20023,6 +20023,8 @@ class DescribeInstanceUpgradeTypeRequest(AbstractModel):
|
|
|
20023
20023
|
:type NodeDistribution: :class:`tencentcloud.cdb.v20170320.models.NodeDistribution`
|
|
20024
20024
|
:param _ClusterTopology: <p>云盘版的节点拓扑配置。Nodeld 信息可通过 <a href="https://cloud.tencent.com/document/api/236/105116">DescribeClusterInfo</a> 接口获取。</p>
|
|
20025
20025
|
:type ClusterTopology: :class:`tencentcloud.cdb.v20170320.models.ClusterTopology`
|
|
20026
|
+
:param _DstFourthZone: <p>目标实例备机3可用区 ID。可使用 <a href="https://cloud.tencent.com/document/product/236/80281">DescribeCdbZoneConfig</a> 获取可用区 ID。</p>
|
|
20027
|
+
:type DstFourthZone: int
|
|
20026
20028
|
"""
|
|
20027
20029
|
self._InstanceId = None
|
|
20028
20030
|
self._DstCpu = None
|
|
@@ -20037,6 +20039,7 @@ class DescribeInstanceUpgradeTypeRequest(AbstractModel):
|
|
|
20037
20039
|
self._DstZoneId = None
|
|
20038
20040
|
self._NodeDistribution = None
|
|
20039
20041
|
self._ClusterTopology = None
|
|
20042
|
+
self._DstFourthZone = None
|
|
20040
20043
|
|
|
20041
20044
|
@property
|
|
20042
20045
|
def InstanceId(self):
|
|
@@ -20181,6 +20184,17 @@ class DescribeInstanceUpgradeTypeRequest(AbstractModel):
|
|
|
20181
20184
|
def ClusterTopology(self, ClusterTopology):
|
|
20182
20185
|
self._ClusterTopology = ClusterTopology
|
|
20183
20186
|
|
|
20187
|
+
@property
|
|
20188
|
+
def DstFourthZone(self):
|
|
20189
|
+
r"""<p>目标实例备机3可用区 ID。可使用 <a href="https://cloud.tencent.com/document/product/236/80281">DescribeCdbZoneConfig</a> 获取可用区 ID。</p>
|
|
20190
|
+
:rtype: int
|
|
20191
|
+
"""
|
|
20192
|
+
return self._DstFourthZone
|
|
20193
|
+
|
|
20194
|
+
@DstFourthZone.setter
|
|
20195
|
+
def DstFourthZone(self, DstFourthZone):
|
|
20196
|
+
self._DstFourthZone = DstFourthZone
|
|
20197
|
+
|
|
20184
20198
|
|
|
20185
20199
|
def _deserialize(self, params):
|
|
20186
20200
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -20200,6 +20214,7 @@ class DescribeInstanceUpgradeTypeRequest(AbstractModel):
|
|
|
20200
20214
|
if params.get("ClusterTopology") is not None:
|
|
20201
20215
|
self._ClusterTopology = ClusterTopology()
|
|
20202
20216
|
self._ClusterTopology._deserialize(params.get("ClusterTopology"))
|
|
20217
|
+
self._DstFourthZone = params.get("DstFourthZone")
|
|
20203
20218
|
memeber_set = set(params.keys())
|
|
20204
20219
|
for name, value in vars(self).items():
|
|
20205
20220
|
property_name = name[1:]
|
|
@@ -39554,6 +39569,8 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
|
39554
39569
|
:type CheckFastUpgradeReboot: int
|
|
39555
39570
|
:param _DataCheckSensitive: <p>数据校验敏感度,非极速变配时使用此参数,敏感度根据当前实例规格计算迁移过程中的数据对比使用的cpu资源<br>对应的选项为: "high"、"normal"、"low",默认为空<br>参数详解,:<br>"high": 对应控制台中的高,数据库负载过高不建议使用<br>"normal":对应控制台中的标准<br>"low":对应控制台中的低</p>
|
|
39556
39571
|
:type DataCheckSensitive: str
|
|
39572
|
+
:param _FourthZone: <p>备库 3 的可用区信息,默认为空,购买四节点主实例时可指定该参数。</p>
|
|
39573
|
+
:type FourthZone: str
|
|
39557
39574
|
"""
|
|
39558
39575
|
self._InstanceId = None
|
|
39559
39576
|
self._Memory = None
|
|
@@ -39575,6 +39592,7 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
|
39575
39592
|
self._ClusterTopology = None
|
|
39576
39593
|
self._CheckFastUpgradeReboot = None
|
|
39577
39594
|
self._DataCheckSensitive = None
|
|
39595
|
+
self._FourthZone = None
|
|
39578
39596
|
|
|
39579
39597
|
@property
|
|
39580
39598
|
def InstanceId(self):
|
|
@@ -39796,6 +39814,17 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
|
39796
39814
|
def DataCheckSensitive(self, DataCheckSensitive):
|
|
39797
39815
|
self._DataCheckSensitive = DataCheckSensitive
|
|
39798
39816
|
|
|
39817
|
+
@property
|
|
39818
|
+
def FourthZone(self):
|
|
39819
|
+
r"""<p>备库 3 的可用区信息,默认为空,购买四节点主实例时可指定该参数。</p>
|
|
39820
|
+
:rtype: str
|
|
39821
|
+
"""
|
|
39822
|
+
return self._FourthZone
|
|
39823
|
+
|
|
39824
|
+
@FourthZone.setter
|
|
39825
|
+
def FourthZone(self, FourthZone):
|
|
39826
|
+
self._FourthZone = FourthZone
|
|
39827
|
+
|
|
39799
39828
|
|
|
39800
39829
|
def _deserialize(self, params):
|
|
39801
39830
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -39820,6 +39849,7 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
|
39820
39849
|
self._ClusterTopology._deserialize(params.get("ClusterTopology"))
|
|
39821
39850
|
self._CheckFastUpgradeReboot = params.get("CheckFastUpgradeReboot")
|
|
39822
39851
|
self._DataCheckSensitive = params.get("DataCheckSensitive")
|
|
39852
|
+
self._FourthZone = params.get("FourthZone")
|
|
39823
39853
|
memeber_set = set(params.keys())
|
|
39824
39854
|
for name, value in vars(self).items():
|
|
39825
39855
|
property_name = name[1:]
|
|
@@ -20789,7 +20789,7 @@ class InstanceAttributesResponse(AbstractModel):
|
|
|
20789
20789
|
:type MaxGroupNum: int
|
|
20790
20790
|
:param _Cvm: <p>售卖类型,0:标准版,1:专业版</p>
|
|
20791
20791
|
:type Cvm: int
|
|
20792
|
-
:param _InstanceType: <p
|
|
20792
|
+
:param _InstanceType: <p>实例类型</p><p>枚举值:</p><ul><li>profession: 专业版</li><li>premium: 高级版</li><li>serverless: serverless版</li><li>其他: 标准版(如:standards2/standard,该版本已停售)</li></ul>
|
|
20793
20793
|
:type InstanceType: str
|
|
20794
20794
|
:param _Features: <p>表示该实例支持的特性。FEATURE_SUBNET_ACL:表示acl策略支持设置子网。</p>
|
|
20795
20795
|
:type Features: list of str
|
|
@@ -21171,7 +21171,7 @@ class InstanceAttributesResponse(AbstractModel):
|
|
|
21171
21171
|
|
|
21172
21172
|
@property
|
|
21173
21173
|
def InstanceType(self):
|
|
21174
|
-
r"""<p
|
|
21174
|
+
r"""<p>实例类型</p><p>枚举值:</p><ul><li>profession: 专业版</li><li>premium: 高级版</li><li>serverless: serverless版</li><li>其他: 标准版(如:standards2/standard,该版本已停售)</li></ul>
|
|
21175
21175
|
:rtype: str
|
|
21176
21176
|
"""
|
|
21177
21177
|
return self._InstanceType
|
|
@@ -22551,6 +22551,8 @@ class TargetGroupInfo(AbstractModel):
|
|
|
22551
22551
|
:type SessionExpireTime: int
|
|
22552
22552
|
:param _IpVersion: <p>IP版本。</p>
|
|
22553
22553
|
:type IpVersion: str
|
|
22554
|
+
:param _SnatEnable: <p>是否开启SNAT</p>
|
|
22555
|
+
:type SnatEnable: bool
|
|
22554
22556
|
"""
|
|
22555
22557
|
self._TargetGroupId = None
|
|
22556
22558
|
self._VpcId = None
|
|
@@ -22571,6 +22573,7 @@ class TargetGroupInfo(AbstractModel):
|
|
|
22571
22573
|
self._KeepaliveEnable = None
|
|
22572
22574
|
self._SessionExpireTime = None
|
|
22573
22575
|
self._IpVersion = None
|
|
22576
|
+
self._SnatEnable = None
|
|
22574
22577
|
|
|
22575
22578
|
@property
|
|
22576
22579
|
def TargetGroupId(self):
|
|
@@ -22787,6 +22790,17 @@ class TargetGroupInfo(AbstractModel):
|
|
|
22787
22790
|
def IpVersion(self, IpVersion):
|
|
22788
22791
|
self._IpVersion = IpVersion
|
|
22789
22792
|
|
|
22793
|
+
@property
|
|
22794
|
+
def SnatEnable(self):
|
|
22795
|
+
r"""<p>是否开启SNAT</p>
|
|
22796
|
+
:rtype: bool
|
|
22797
|
+
"""
|
|
22798
|
+
return self._SnatEnable
|
|
22799
|
+
|
|
22800
|
+
@SnatEnable.setter
|
|
22801
|
+
def SnatEnable(self, SnatEnable):
|
|
22802
|
+
self._SnatEnable = SnatEnable
|
|
22803
|
+
|
|
22790
22804
|
|
|
22791
22805
|
def _deserialize(self, params):
|
|
22792
22806
|
self._TargetGroupId = params.get("TargetGroupId")
|
|
@@ -22820,6 +22834,7 @@ class TargetGroupInfo(AbstractModel):
|
|
|
22820
22834
|
self._KeepaliveEnable = params.get("KeepaliveEnable")
|
|
22821
22835
|
self._SessionExpireTime = params.get("SessionExpireTime")
|
|
22822
22836
|
self._IpVersion = params.get("IpVersion")
|
|
22837
|
+
self._SnatEnable = params.get("SnatEnable")
|
|
22823
22838
|
memeber_set = set(params.keys())
|
|
22824
22839
|
for name, value in vars(self).items():
|
|
22825
22840
|
property_name = name[1:]
|