tencentcloud-sdk-python 3.0.1363__py2.py3-none-any.whl → 3.0.1364__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/cat/v20180409/cat_client.py +23 -0
- tencentcloud/cat/v20180409/models.py +199 -0
- tencentcloud/cbs/v20170312/models.py +26 -12
- tencentcloud/ccc/v20200210/models.py +71 -56
- tencentcloud/cdwpg/v20201230/models.py +0 -12
- tencentcloud/clb/v20180317/clb_client.py +1 -1
- tencentcloud/clb/v20180317/models.py +262 -366
- tencentcloud/cls/v20201016/models.py +35 -0
- tencentcloud/cvm/v20170312/errorcodes.py +1 -1
- tencentcloud/dts/v20211206/models.py +1 -1
- tencentcloud/ess/v20201111/models.py +16 -12
- tencentcloud/gwlb/v20240906/errorcodes.py +3 -0
- tencentcloud/gwlb/v20240906/gwlb_client.py +0 -1
- tencentcloud/gwlb/v20240906/models.py +4 -4
- tencentcloud/hunyuan/v20230901/models.py +2 -2
- tencentcloud/ioa/v20220601/ioa_client.py +46 -0
- tencentcloud/ioa/v20220601/models.py +538 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +3 -1
- tencentcloud/lke/v20231130/errorcodes.py +3 -0
- tencentcloud/lke/v20231130/lke_client.py +4 -2
- tencentcloud/lke/v20231130/models.py +167 -6
- tencentcloud/lkeap/v20240522/lkeap_client.py +2 -2
- tencentcloud/lkeap/v20240522/models.py +2 -2
- tencentcloud/teo/v20220901/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +8 -112
- tencentcloud/tsf/v20180326/models.py +15 -0
- tencentcloud/vpc/v20170312/models.py +710 -0
- tencentcloud/vpc/v20170312/vpc_client.py +115 -0
- tencentcloud/waf/v20180125/models.py +205 -0
- {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1364.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1364.dist-info}/RECORD +35 -35
- {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1364.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1364.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1363.dist-info → tencentcloud_sdk_python-3.0.1364.dist-info}/top_level.txt +0 -0
@@ -4899,6 +4899,8 @@ class ClusterV2(AbstractModel):
|
|
4899
4899
|
:type KuberneteNativeSecret: str
|
4900
4900
|
:param _EnableLogCollection: 是否开启cls日志功能
|
4901
4901
|
:type EnableLogCollection: bool
|
4902
|
+
:param _Reason: 集群状态的原因
|
4903
|
+
:type Reason: str
|
4902
4904
|
"""
|
4903
4905
|
self._ClusterId = None
|
4904
4906
|
self._ClusterName = None
|
@@ -4937,6 +4939,7 @@ class ClusterV2(AbstractModel):
|
|
4937
4939
|
self._KuberneteNativeType = None
|
4938
4940
|
self._KuberneteNativeSecret = None
|
4939
4941
|
self._EnableLogCollection = None
|
4942
|
+
self._Reason = None
|
4940
4943
|
|
4941
4944
|
@property
|
4942
4945
|
def ClusterId(self):
|
@@ -5380,6 +5383,17 @@ class ClusterV2(AbstractModel):
|
|
5380
5383
|
def EnableLogCollection(self, EnableLogCollection):
|
5381
5384
|
self._EnableLogCollection = EnableLogCollection
|
5382
5385
|
|
5386
|
+
@property
|
5387
|
+
def Reason(self):
|
5388
|
+
"""集群状态的原因
|
5389
|
+
:rtype: str
|
5390
|
+
"""
|
5391
|
+
return self._Reason
|
5392
|
+
|
5393
|
+
@Reason.setter
|
5394
|
+
def Reason(self, Reason):
|
5395
|
+
self._Reason = Reason
|
5396
|
+
|
5383
5397
|
|
5384
5398
|
def _deserialize(self, params):
|
5385
5399
|
self._ClusterId = params.get("ClusterId")
|
@@ -5421,6 +5435,7 @@ class ClusterV2(AbstractModel):
|
|
5421
5435
|
self._KuberneteNativeType = params.get("KuberneteNativeType")
|
5422
5436
|
self._KuberneteNativeSecret = params.get("KuberneteNativeSecret")
|
5423
5437
|
self._EnableLogCollection = params.get("EnableLogCollection")
|
5438
|
+
self._Reason = params.get("Reason")
|
5424
5439
|
memeber_set = set(params.keys())
|
5425
5440
|
for name, value in vars(self).items():
|
5426
5441
|
property_name = name[1:]
|