tencentcloud-sdk-python 3.0.1342__py2.py3-none-any.whl → 3.0.1343__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/bi/v20220105/models.py +68 -0
- tencentcloud/billing/v20180709/billing_client.py +3 -1
- tencentcloud/billing/v20180709/models.py +90 -210
- tencentcloud/cdwpg/v20201230/models.py +4 -4
- tencentcloud/cdz/v20221123/models.py +0 -4
- tencentcloud/cfg/v20210820/models.py +0 -192
- tencentcloud/clb/v20180317/clb_client.py +2 -2
- tencentcloud/cwp/v20180228/models.py +61 -18
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +161 -0
- tencentcloud/dbbrain/v20210527/models.py +1743 -387
- tencentcloud/domain/v20180808/models.py +0 -2
- tencentcloud/dts/v20180330/models.py +0 -6
- tencentcloud/dts/v20211206/models.py +2 -210
- tencentcloud/ess/v20201111/models.py +69 -4
- tencentcloud/essbasic/v20210526/models.py +57 -2
- tencentcloud/iotexplorer/v20190423/errorcodes.py +12 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +69 -0
- tencentcloud/iotexplorer/v20190423/models.py +995 -65
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +46 -0
- tencentcloud/iotvideo/v20211125/models.py +188 -0
- tencentcloud/lcic/v20220817/errorcodes.py +1 -1
- tencentcloud/lighthouse/v20200324/errorcodes.py +12 -9
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +24 -17
- tencentcloud/lighthouse/v20200324/models.py +68 -36
- tencentcloud/lke/v20231130/models.py +2 -2
- tencentcloud/lkeap/v20240522/models.py +4 -8
- tencentcloud/mps/v20190612/models.py +170 -0
- tencentcloud/mqtt/v20240516/errorcodes.py +9 -0
- tencentcloud/organization/v20210331/errorcodes.py +3 -0
- tencentcloud/organization/v20210331/models.py +0 -82
- tencentcloud/tcb/v20180608/models.py +0 -4
- tencentcloud/teo/v20220901/models.py +955 -20
- tencentcloud/tione/v20211111/models.py +90 -0
- tencentcloud/vdb/v20230616/models.py +45 -0
- tencentcloud/vdb/v20230616/vdb_client.py +1 -1
- tencentcloud/vrs/v20200824/models.py +32 -0
- tencentcloud/wedata/v20210820/models.py +77 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/RECORD +43 -43
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/top_level.txt +0 -0
@@ -1542,9 +1542,9 @@ class DescribeInstanceInfoResponse(AbstractModel):
|
|
1542
1542
|
|
1543
1543
|
def __init__(self):
|
1544
1544
|
r"""
|
1545
|
-
:param _SimpleInstanceInfo:
|
1545
|
+
:param _SimpleInstanceInfo: 集群描述信息
|
1546
1546
|
:type SimpleInstanceInfo: :class:`tencentcloud.cdwpg.v20201230.models.SimpleInstanceInfo`
|
1547
|
-
:param _ErrorMsg:
|
1547
|
+
:param _ErrorMsg: 错误信息
|
1548
1548
|
:type ErrorMsg: str
|
1549
1549
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1550
1550
|
:type RequestId: str
|
@@ -1555,7 +1555,7 @@ class DescribeInstanceInfoResponse(AbstractModel):
|
|
1555
1555
|
|
1556
1556
|
@property
|
1557
1557
|
def SimpleInstanceInfo(self):
|
1558
|
-
"""
|
1558
|
+
"""集群描述信息
|
1559
1559
|
:rtype: :class:`tencentcloud.cdwpg.v20201230.models.SimpleInstanceInfo`
|
1560
1560
|
"""
|
1561
1561
|
return self._SimpleInstanceInfo
|
@@ -1566,7 +1566,7 @@ class DescribeInstanceInfoResponse(AbstractModel):
|
|
1566
1566
|
|
1567
1567
|
@property
|
1568
1568
|
def ErrorMsg(self):
|
1569
|
-
"""
|
1569
|
+
"""错误信息
|
1570
1570
|
:rtype: str
|
1571
1571
|
"""
|
1572
1572
|
return self._ErrorMsg
|
@@ -26,10 +26,8 @@ class CloudDedicatedZoneHostsInfo(AbstractModel):
|
|
26
26
|
def __init__(self):
|
27
27
|
r"""
|
28
28
|
:param _HostUuid: Host的唯一标识uuid
|
29
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30
29
|
:type HostUuid: str
|
31
30
|
:param _InstancesInfo: 实例名称数组
|
32
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33
31
|
:type InstancesInfo: list of str
|
34
32
|
"""
|
35
33
|
self._HostUuid = None
|
@@ -38,7 +36,6 @@ class CloudDedicatedZoneHostsInfo(AbstractModel):
|
|
38
36
|
@property
|
39
37
|
def HostUuid(self):
|
40
38
|
"""Host的唯一标识uuid
|
41
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42
39
|
:rtype: str
|
43
40
|
"""
|
44
41
|
return self._HostUuid
|
@@ -50,7 +47,6 @@ class CloudDedicatedZoneHostsInfo(AbstractModel):
|
|
50
47
|
@property
|
51
48
|
def InstancesInfo(self):
|
52
49
|
"""实例名称数组
|
53
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54
50
|
:rtype: list of str
|
55
51
|
"""
|
56
52
|
return self._InstancesInfo
|