tencentcloud-sdk-python 3.0.1333__py2.py3-none-any.whl → 3.0.1335__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/acp/v20220105/models.py +0 -32
- tencentcloud/aiart/v20221229/models.py +2 -0
- tencentcloud/antiddos/v20200309/models.py +2 -2
- tencentcloud/apm/v20210622/models.py +63 -55
- tencentcloud/autoscaling/v20180419/autoscaling_client.py +3 -2
- tencentcloud/billing/v20180709/models.py +30 -474
- tencentcloud/cat/v20180409/models.py +2 -2
- tencentcloud/ciam/v20220331/models.py +0 -92
- tencentcloud/cls/v20201016/models.py +0 -2
- tencentcloud/common/abstract_client.py +3 -0
- tencentcloud/controlcenter/v20230110/controlcenter_client.py +92 -0
- tencentcloud/controlcenter/v20230110/errorcodes.py +9 -0
- tencentcloud/controlcenter/v20230110/models.py +947 -3
- tencentcloud/csip/v20221121/models.py +94 -4
- tencentcloud/cvm/v20170312/cvm_client.py +92 -0
- tencentcloud/cvm/v20170312/errorcodes.py +9 -0
- tencentcloud/cvm/v20170312/models.py +1627 -332
- tencentcloud/cynosdb/v20190107/models.py +17 -2
- tencentcloud/dbbrain/v20191016/models.py +0 -6
- tencentcloud/dbbrain/v20210527/models.py +0 -12
- tencentcloud/dlc/v20210125/models.py +32 -0
- tencentcloud/emr/v20190103/models.py +17 -0
- tencentcloud/es/v20180416/models.py +15 -0
- tencentcloud/goosefs/v20220519/models.py +0 -10
- tencentcloud/gwlb/v20240906/models.py +34 -2
- tencentcloud/ims/v20201229/ims_client.py +18 -12
- tencentcloud/iotcloud/v20210408/models.py +15 -15
- tencentcloud/keewidb/v20220308/models.py +0 -78
- tencentcloud/lcic/v20220817/models.py +75 -54
- tencentcloud/live/v20180801/models.py +8 -58
- tencentcloud/lke/v20231130/errorcodes.py +0 -12
- tencentcloud/lke/v20231130/lke_client.py +46 -50
- tencentcloud/lke/v20231130/models.py +385 -284
- tencentcloud/lowcode/v20210108/models.py +182 -2
- tencentcloud/mariadb/v20170312/models.py +10 -10
- tencentcloud/mongodb/v20190725/models.py +10 -4
- tencentcloud/mqtt/v20240516/models.py +238 -0
- tencentcloud/mqtt/v20240516/mqtt_client.py +46 -0
- tencentcloud/ocr/v20181119/errorcodes.py +3 -0
- tencentcloud/ocr/v20181119/models.py +32 -28
- tencentcloud/ocr/v20181119/ocr_client.py +1 -1
- tencentcloud/partners/v20180321/models.py +197 -0
- tencentcloud/partners/v20180321/partners_client.py +23 -0
- tencentcloud/pts/v20210728/models.py +68 -6
- tencentcloud/redis/v20180412/models.py +0 -66
- tencentcloud/rum/v20210622/models.py +150 -0
- tencentcloud/tag/v20180813/models.py +2 -2
- tencentcloud/tat/v20201028/models.py +494 -180
- tencentcloud/tat/v20201028/tat_client.py +2 -2
- tencentcloud/tdmq/v20200217/models.py +192 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/teo/v20220901/models.py +14 -4
- tencentcloud/tke/v20180525/models.py +0 -312
- tencentcloud/tke/v20220501/models.py +0 -2
- tencentcloud/tms/v20201229/models.py +15 -0
- tencentcloud/tsf/v20180326/models.py +0 -880
- tencentcloud/vdb/v20230616/models.py +0 -12
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +0 -6
- tencentcloud/wedata/v20210820/models.py +173 -0
- {tencentcloud_sdk_python-3.0.1333.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1333.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/RECORD +66 -66
- {tencentcloud_sdk_python-3.0.1333.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1333.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1333.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/top_level.txt +0 -0
@@ -239,7 +239,6 @@ class BinlogInfo(AbstractModel):
|
|
239
239
|
:param _Filename: 备份文件名。
|
240
240
|
:type Filename: str
|
241
241
|
:param _FileSize: 备份文件大小,单位:Byte。
|
242
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
243
242
|
:type FileSize: int
|
244
243
|
"""
|
245
244
|
self._StartTime = None
|
@@ -295,7 +294,6 @@ class BinlogInfo(AbstractModel):
|
|
295
294
|
@property
|
296
295
|
def FileSize(self):
|
297
296
|
"""备份文件大小,单位:Byte。
|
298
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
299
297
|
:rtype: int
|
300
298
|
"""
|
301
299
|
return self._FileSize
|
@@ -1318,10 +1316,8 @@ class DescribeConnectionConfigResponse(AbstractModel):
|
|
1318
1316
|
:param _ClientLimit: 实例当前单分片连接数限制。
|
1319
1317
|
:type ClientLimit: int
|
1320
1318
|
:param _ClientLimitMin: 单分片连接数限制最小值。
|
1321
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1322
1319
|
:type ClientLimitMin: int
|
1323
1320
|
:param _ClientLimitMax: 单分片连接数限制最大值。
|
1324
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1325
1321
|
:type ClientLimitMax: int
|
1326
1322
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1327
1323
|
:type RequestId: str
|
@@ -1369,7 +1365,6 @@ class DescribeConnectionConfigResponse(AbstractModel):
|
|
1369
1365
|
@property
|
1370
1366
|
def ClientLimitMin(self):
|
1371
1367
|
"""单分片连接数限制最小值。
|
1372
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1373
1368
|
:rtype: int
|
1374
1369
|
"""
|
1375
1370
|
return self._ClientLimitMin
|
@@ -1381,7 +1376,6 @@ class DescribeConnectionConfigResponse(AbstractModel):
|
|
1381
1376
|
@property
|
1382
1377
|
def ClientLimitMax(self):
|
1383
1378
|
"""单分片连接数限制最大值。
|
1384
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1385
1379
|
:rtype: int
|
1386
1380
|
"""
|
1387
1381
|
return self._ClientLimitMax
|
@@ -1663,7 +1657,6 @@ class DescribeInstanceBackupsResponse(AbstractModel):
|
|
1663
1657
|
:param _TotalCount: 备份文件总数。
|
1664
1658
|
:type TotalCount: int
|
1665
1659
|
:param _BackupSet: 废弃字段。
|
1666
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1667
1660
|
:type BackupSet: list of BinlogInfo
|
1668
1661
|
:param _BackupRecord: 实例备份信息列表。
|
1669
1662
|
:type BackupRecord: list of BackupInfo
|
@@ -1689,7 +1682,6 @@ class DescribeInstanceBackupsResponse(AbstractModel):
|
|
1689
1682
|
@property
|
1690
1683
|
def BackupSet(self):
|
1691
1684
|
"""废弃字段。
|
1692
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1693
1685
|
:rtype: list of BinlogInfo
|
1694
1686
|
"""
|
1695
1687
|
return self._BackupSet
|
@@ -2057,23 +2049,18 @@ class DescribeInstanceNodeInfoResponse(AbstractModel):
|
|
2057
2049
|
:param _ProxyCount: Proxy 节点数量。
|
2058
2050
|
:type ProxyCount: int
|
2059
2051
|
:param _Proxy: Proxy 节点信息。
|
2060
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2061
2052
|
:type Proxy: list of ProxyNodeInfo
|
2062
2053
|
:param _RedisCount: Redis 节点数量。该参数仅为产品兼容性而保留,并不具有实际意义,可忽略。
|
2063
2054
|
:type RedisCount: int
|
2064
2055
|
:param _Redis: Redis 节点信息。该参数仅为产品兼容性而保留,并不具有实际意义,可忽略。
|
2065
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2066
2056
|
:type Redis: list of RedisNodeInfo
|
2067
2057
|
:param _TendisCount: Tendis 节点数量。该参数仅为产品兼容性而保留,并不具有实际意义,可忽略。
|
2068
2058
|
:type TendisCount: int
|
2069
2059
|
:param _Tendis: Tendis 节点信息。该参数仅为产品兼容性而保留,并不具有实际意义,可忽略。
|
2070
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2071
2060
|
:type Tendis: list of InstanceNodeInfo
|
2072
2061
|
:param _KeeWiDBCount: KeewiDB 节点数量。
|
2073
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2074
2062
|
:type KeeWiDBCount: int
|
2075
2063
|
:param _KeeWiDB: KeewiDB 节点信息。
|
2076
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2077
2064
|
:type KeeWiDB: list of InstanceNodeInfo
|
2078
2065
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2079
2066
|
:type RequestId: str
|
@@ -2102,7 +2089,6 @@ class DescribeInstanceNodeInfoResponse(AbstractModel):
|
|
2102
2089
|
@property
|
2103
2090
|
def Proxy(self):
|
2104
2091
|
"""Proxy 节点信息。
|
2105
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2106
2092
|
:rtype: list of ProxyNodeInfo
|
2107
2093
|
"""
|
2108
2094
|
return self._Proxy
|
@@ -2125,7 +2111,6 @@ class DescribeInstanceNodeInfoResponse(AbstractModel):
|
|
2125
2111
|
@property
|
2126
2112
|
def Redis(self):
|
2127
2113
|
"""Redis 节点信息。该参数仅为产品兼容性而保留,并不具有实际意义,可忽略。
|
2128
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2129
2114
|
:rtype: list of RedisNodeInfo
|
2130
2115
|
"""
|
2131
2116
|
return self._Redis
|
@@ -2148,7 +2133,6 @@ class DescribeInstanceNodeInfoResponse(AbstractModel):
|
|
2148
2133
|
@property
|
2149
2134
|
def Tendis(self):
|
2150
2135
|
"""Tendis 节点信息。该参数仅为产品兼容性而保留,并不具有实际意义,可忽略。
|
2151
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2152
2136
|
:rtype: list of InstanceNodeInfo
|
2153
2137
|
"""
|
2154
2138
|
return self._Tendis
|
@@ -2160,7 +2144,6 @@ class DescribeInstanceNodeInfoResponse(AbstractModel):
|
|
2160
2144
|
@property
|
2161
2145
|
def KeeWiDBCount(self):
|
2162
2146
|
"""KeewiDB 节点数量。
|
2163
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2164
2147
|
:rtype: int
|
2165
2148
|
"""
|
2166
2149
|
return self._KeeWiDBCount
|
@@ -2172,7 +2155,6 @@ class DescribeInstanceNodeInfoResponse(AbstractModel):
|
|
2172
2155
|
@property
|
2173
2156
|
def KeeWiDB(self):
|
2174
2157
|
"""KeewiDB 节点信息。
|
2175
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2176
2158
|
:rtype: list of InstanceNodeInfo
|
2177
2159
|
"""
|
2178
2160
|
return self._KeeWiDB
|
@@ -4634,55 +4616,38 @@ class InstanceInfo(AbstractModel):
|
|
4634
4616
|
:param _SlaveReadWeight: 从节点读取权重。
|
4635
4617
|
:type SlaveReadWeight: int
|
4636
4618
|
:param _InstanceTags: 实例关联的标签信息。
|
4637
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4638
4619
|
:type InstanceTags: list of InstanceTagInfo
|
4639
4620
|
:param _ProjectName: 项目名称。
|
4640
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4641
4621
|
:type ProjectName: str
|
4642
4622
|
:param _NoAuth: 是否为免密实例;<ul><li>true:免密实例。</li><li>false:非免密实例。</li></ul>
|
4643
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4644
4623
|
:type NoAuth: bool
|
4645
4624
|
:param _ClientLimit: 客户端连接数。
|
4646
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4647
4625
|
:type ClientLimit: int
|
4648
4626
|
:param _DtsStatus: DTS状态(内部参数,用户可忽略)。
|
4649
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4650
4627
|
:type DtsStatus: int
|
4651
4628
|
:param _NetLimit: 分片带宽上限,单位 MB。
|
4652
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4653
4629
|
:type NetLimit: int
|
4654
4630
|
:param _PasswordFree: 免密实例标识(内部参数,用户可忽略)。
|
4655
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4656
4631
|
:type PasswordFree: int
|
4657
4632
|
:param _ReadOnly: 实例只读标识(内部参数,用户可忽略)。
|
4658
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4659
4633
|
:type ReadOnly: int
|
4660
4634
|
:param _Vip6: 内部参数,用户可忽略。
|
4661
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4662
4635
|
:type Vip6: str
|
4663
4636
|
:param _RemainBandwidthDuration: 内部参数,用户可忽略。
|
4664
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4665
4637
|
:type RemainBandwidthDuration: str
|
4666
4638
|
:param _DiskSize: 实例的磁盘容量大小。
|
4667
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4668
4639
|
:type DiskSize: int
|
4669
4640
|
:param _MonitorVersion: 监控版本。<ul><li>1m:分钟粒度监控。</li><li>5s:5秒粒度监控。</li></ul>
|
4670
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4671
4641
|
:type MonitorVersion: str
|
4672
4642
|
:param _ClientLimitMin: 客户端最大连接数可设置的最小值。
|
4673
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4674
4643
|
:type ClientLimitMin: int
|
4675
4644
|
:param _ClientLimitMax: 客户端最大连接数可设置的最大值。
|
4676
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4677
4645
|
:type ClientLimitMax: int
|
4678
4646
|
:param _NodeSet: 实例的节点详细信息。
|
4679
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4680
4647
|
:type NodeSet: list of NodeInfo
|
4681
4648
|
:param _Region: 实例所在的地域信息,比如ap-guangzhou。
|
4682
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4683
4649
|
:type Region: str
|
4684
4650
|
:param _MachineMemory: 实例内存容量,单位:GB。KeeWiDB 内存容量
|
4685
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4686
4651
|
:type MachineMemory: int
|
4687
4652
|
:param _DiskShardSize: 单分片磁盘大小,单位:MB
|
4688
4653
|
:type DiskShardSize: int
|
@@ -4691,7 +4656,6 @@ class InstanceInfo(AbstractModel):
|
|
4691
4656
|
:param _DiskReplicasNum: 1
|
4692
4657
|
:type DiskReplicasNum: int
|
4693
4658
|
:param _Compression: 数据压缩开关。<ul><li>ON:开启。</li><li>OFF:关闭。</li></ul>
|
4694
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4695
4659
|
:type Compression: str
|
4696
4660
|
"""
|
4697
4661
|
self._InstanceName = None
|
@@ -5091,7 +5055,6 @@ class InstanceInfo(AbstractModel):
|
|
5091
5055
|
@property
|
5092
5056
|
def InstanceTags(self):
|
5093
5057
|
"""实例关联的标签信息。
|
5094
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5095
5058
|
:rtype: list of InstanceTagInfo
|
5096
5059
|
"""
|
5097
5060
|
return self._InstanceTags
|
@@ -5103,7 +5066,6 @@ class InstanceInfo(AbstractModel):
|
|
5103
5066
|
@property
|
5104
5067
|
def ProjectName(self):
|
5105
5068
|
"""项目名称。
|
5106
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5107
5069
|
:rtype: str
|
5108
5070
|
"""
|
5109
5071
|
return self._ProjectName
|
@@ -5115,7 +5077,6 @@ class InstanceInfo(AbstractModel):
|
|
5115
5077
|
@property
|
5116
5078
|
def NoAuth(self):
|
5117
5079
|
"""是否为免密实例;<ul><li>true:免密实例。</li><li>false:非免密实例。</li></ul>
|
5118
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5119
5080
|
:rtype: bool
|
5120
5081
|
"""
|
5121
5082
|
return self._NoAuth
|
@@ -5127,7 +5088,6 @@ class InstanceInfo(AbstractModel):
|
|
5127
5088
|
@property
|
5128
5089
|
def ClientLimit(self):
|
5129
5090
|
"""客户端连接数。
|
5130
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5131
5091
|
:rtype: int
|
5132
5092
|
"""
|
5133
5093
|
return self._ClientLimit
|
@@ -5139,7 +5099,6 @@ class InstanceInfo(AbstractModel):
|
|
5139
5099
|
@property
|
5140
5100
|
def DtsStatus(self):
|
5141
5101
|
"""DTS状态(内部参数,用户可忽略)。
|
5142
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5143
5102
|
:rtype: int
|
5144
5103
|
"""
|
5145
5104
|
return self._DtsStatus
|
@@ -5151,7 +5110,6 @@ class InstanceInfo(AbstractModel):
|
|
5151
5110
|
@property
|
5152
5111
|
def NetLimit(self):
|
5153
5112
|
"""分片带宽上限,单位 MB。
|
5154
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5155
5113
|
:rtype: int
|
5156
5114
|
"""
|
5157
5115
|
return self._NetLimit
|
@@ -5163,7 +5121,6 @@ class InstanceInfo(AbstractModel):
|
|
5163
5121
|
@property
|
5164
5122
|
def PasswordFree(self):
|
5165
5123
|
"""免密实例标识(内部参数,用户可忽略)。
|
5166
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5167
5124
|
:rtype: int
|
5168
5125
|
"""
|
5169
5126
|
return self._PasswordFree
|
@@ -5175,7 +5132,6 @@ class InstanceInfo(AbstractModel):
|
|
5175
5132
|
@property
|
5176
5133
|
def ReadOnly(self):
|
5177
5134
|
"""实例只读标识(内部参数,用户可忽略)。
|
5178
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5179
5135
|
:rtype: int
|
5180
5136
|
"""
|
5181
5137
|
return self._ReadOnly
|
@@ -5187,7 +5143,6 @@ class InstanceInfo(AbstractModel):
|
|
5187
5143
|
@property
|
5188
5144
|
def Vip6(self):
|
5189
5145
|
"""内部参数,用户可忽略。
|
5190
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5191
5146
|
:rtype: str
|
5192
5147
|
"""
|
5193
5148
|
return self._Vip6
|
@@ -5199,7 +5154,6 @@ class InstanceInfo(AbstractModel):
|
|
5199
5154
|
@property
|
5200
5155
|
def RemainBandwidthDuration(self):
|
5201
5156
|
"""内部参数,用户可忽略。
|
5202
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5203
5157
|
:rtype: str
|
5204
5158
|
"""
|
5205
5159
|
return self._RemainBandwidthDuration
|
@@ -5211,7 +5165,6 @@ class InstanceInfo(AbstractModel):
|
|
5211
5165
|
@property
|
5212
5166
|
def DiskSize(self):
|
5213
5167
|
"""实例的磁盘容量大小。
|
5214
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5215
5168
|
:rtype: int
|
5216
5169
|
"""
|
5217
5170
|
return self._DiskSize
|
@@ -5223,7 +5176,6 @@ class InstanceInfo(AbstractModel):
|
|
5223
5176
|
@property
|
5224
5177
|
def MonitorVersion(self):
|
5225
5178
|
"""监控版本。<ul><li>1m:分钟粒度监控。</li><li>5s:5秒粒度监控。</li></ul>
|
5226
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5227
5179
|
:rtype: str
|
5228
5180
|
"""
|
5229
5181
|
return self._MonitorVersion
|
@@ -5235,7 +5187,6 @@ class InstanceInfo(AbstractModel):
|
|
5235
5187
|
@property
|
5236
5188
|
def ClientLimitMin(self):
|
5237
5189
|
"""客户端最大连接数可设置的最小值。
|
5238
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5239
5190
|
:rtype: int
|
5240
5191
|
"""
|
5241
5192
|
return self._ClientLimitMin
|
@@ -5247,7 +5198,6 @@ class InstanceInfo(AbstractModel):
|
|
5247
5198
|
@property
|
5248
5199
|
def ClientLimitMax(self):
|
5249
5200
|
"""客户端最大连接数可设置的最大值。
|
5250
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5251
5201
|
:rtype: int
|
5252
5202
|
"""
|
5253
5203
|
return self._ClientLimitMax
|
@@ -5259,7 +5209,6 @@ class InstanceInfo(AbstractModel):
|
|
5259
5209
|
@property
|
5260
5210
|
def NodeSet(self):
|
5261
5211
|
"""实例的节点详细信息。
|
5262
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5263
5212
|
:rtype: list of NodeInfo
|
5264
5213
|
"""
|
5265
5214
|
return self._NodeSet
|
@@ -5271,7 +5220,6 @@ class InstanceInfo(AbstractModel):
|
|
5271
5220
|
@property
|
5272
5221
|
def Region(self):
|
5273
5222
|
"""实例所在的地域信息,比如ap-guangzhou。
|
5274
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5275
5223
|
:rtype: str
|
5276
5224
|
"""
|
5277
5225
|
return self._Region
|
@@ -5283,7 +5231,6 @@ class InstanceInfo(AbstractModel):
|
|
5283
5231
|
@property
|
5284
5232
|
def MachineMemory(self):
|
5285
5233
|
"""实例内存容量,单位:GB。KeeWiDB 内存容量
|
5286
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5287
5234
|
:rtype: int
|
5288
5235
|
"""
|
5289
5236
|
return self._MachineMemory
|
@@ -5328,7 +5275,6 @@ class InstanceInfo(AbstractModel):
|
|
5328
5275
|
@property
|
5329
5276
|
def Compression(self):
|
5330
5277
|
"""数据压缩开关。<ul><li>ON:开启。</li><li>OFF:关闭。</li></ul>
|
5331
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5332
5278
|
:rtype: str
|
5333
5279
|
"""
|
5334
5280
|
return self._Compression
|
@@ -5437,7 +5383,6 @@ class InstanceIntegerParam(AbstractModel):
|
|
5437
5383
|
:param _Status: 参数状态, 1: 修改中, 2:修改完成
|
5438
5384
|
:type Status: int
|
5439
5385
|
:param _Unit: 参数单位
|
5440
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5441
5386
|
:type Unit: str
|
5442
5387
|
"""
|
5443
5388
|
self._ParamName = None
|
@@ -5553,7 +5498,6 @@ class InstanceIntegerParam(AbstractModel):
|
|
5553
5498
|
@property
|
5554
5499
|
def Unit(self):
|
5555
5500
|
"""参数单位
|
5556
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5557
5501
|
:rtype: str
|
5558
5502
|
"""
|
5559
5503
|
return self._Unit
|
@@ -7597,7 +7541,6 @@ class ProxyNodeInfo(AbstractModel):
|
|
7597
7541
|
def __init__(self):
|
7598
7542
|
r"""
|
7599
7543
|
:param _NodeId: 节点ID
|
7600
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7601
7544
|
:type NodeId: str
|
7602
7545
|
"""
|
7603
7546
|
self._NodeId = None
|
@@ -7605,7 +7548,6 @@ class ProxyNodeInfo(AbstractModel):
|
|
7605
7548
|
@property
|
7606
7549
|
def NodeId(self):
|
7607
7550
|
"""节点ID
|
7608
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7609
7551
|
:rtype: str
|
7610
7552
|
"""
|
7611
7553
|
return self._NodeId
|
@@ -8376,34 +8318,24 @@ class TaskInfoDetail(AbstractModel):
|
|
8376
8318
|
def __init__(self):
|
8377
8319
|
r"""
|
8378
8320
|
:param _TaskId: 任务Id
|
8379
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8380
8321
|
:type TaskId: int
|
8381
8322
|
:param _StartTime: 开始时间
|
8382
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8383
8323
|
:type StartTime: str
|
8384
8324
|
:param _TaskType: 任务类型
|
8385
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8386
8325
|
:type TaskType: str
|
8387
8326
|
:param _InstanceName: 实例名称
|
8388
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8389
8327
|
:type InstanceName: str
|
8390
8328
|
:param _InstanceId: 实例Id
|
8391
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8392
8329
|
:type InstanceId: str
|
8393
8330
|
:param _ProjectId: 项目Id
|
8394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8395
8331
|
:type ProjectId: int
|
8396
8332
|
:param _Progress: 任务进度
|
8397
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8398
8333
|
:type Progress: float
|
8399
8334
|
:param _EndTime: 结束时间
|
8400
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8401
8335
|
:type EndTime: str
|
8402
8336
|
:param _Result: 任务状态
|
8403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8404
8337
|
:type Result: int
|
8405
8338
|
:param _OperatorUin: 操作者用户uin
|
8406
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8407
8339
|
:type OperatorUin: str
|
8408
8340
|
"""
|
8409
8341
|
self._TaskId = None
|
@@ -8420,7 +8352,6 @@ class TaskInfoDetail(AbstractModel):
|
|
8420
8352
|
@property
|
8421
8353
|
def TaskId(self):
|
8422
8354
|
"""任务Id
|
8423
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8424
8355
|
:rtype: int
|
8425
8356
|
"""
|
8426
8357
|
return self._TaskId
|
@@ -8432,7 +8363,6 @@ class TaskInfoDetail(AbstractModel):
|
|
8432
8363
|
@property
|
8433
8364
|
def StartTime(self):
|
8434
8365
|
"""开始时间
|
8435
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8436
8366
|
:rtype: str
|
8437
8367
|
"""
|
8438
8368
|
return self._StartTime
|
@@ -8444,7 +8374,6 @@ class TaskInfoDetail(AbstractModel):
|
|
8444
8374
|
@property
|
8445
8375
|
def TaskType(self):
|
8446
8376
|
"""任务类型
|
8447
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8448
8377
|
:rtype: str
|
8449
8378
|
"""
|
8450
8379
|
return self._TaskType
|
@@ -8456,7 +8385,6 @@ class TaskInfoDetail(AbstractModel):
|
|
8456
8385
|
@property
|
8457
8386
|
def InstanceName(self):
|
8458
8387
|
"""实例名称
|
8459
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8460
8388
|
:rtype: str
|
8461
8389
|
"""
|
8462
8390
|
return self._InstanceName
|
@@ -8468,7 +8396,6 @@ class TaskInfoDetail(AbstractModel):
|
|
8468
8396
|
@property
|
8469
8397
|
def InstanceId(self):
|
8470
8398
|
"""实例Id
|
8471
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8472
8399
|
:rtype: str
|
8473
8400
|
"""
|
8474
8401
|
return self._InstanceId
|
@@ -8480,7 +8407,6 @@ class TaskInfoDetail(AbstractModel):
|
|
8480
8407
|
@property
|
8481
8408
|
def ProjectId(self):
|
8482
8409
|
"""项目Id
|
8483
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8484
8410
|
:rtype: int
|
8485
8411
|
"""
|
8486
8412
|
return self._ProjectId
|
@@ -8492,7 +8418,6 @@ class TaskInfoDetail(AbstractModel):
|
|
8492
8418
|
@property
|
8493
8419
|
def Progress(self):
|
8494
8420
|
"""任务进度
|
8495
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8496
8421
|
:rtype: float
|
8497
8422
|
"""
|
8498
8423
|
return self._Progress
|
@@ -8504,7 +8429,6 @@ class TaskInfoDetail(AbstractModel):
|
|
8504
8429
|
@property
|
8505
8430
|
def EndTime(self):
|
8506
8431
|
"""结束时间
|
8507
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8508
8432
|
:rtype: str
|
8509
8433
|
"""
|
8510
8434
|
return self._EndTime
|
@@ -8516,7 +8440,6 @@ class TaskInfoDetail(AbstractModel):
|
|
8516
8440
|
@property
|
8517
8441
|
def Result(self):
|
8518
8442
|
"""任务状态
|
8519
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8520
8443
|
:rtype: int
|
8521
8444
|
"""
|
8522
8445
|
return self._Result
|
@@ -8528,7 +8451,6 @@ class TaskInfoDetail(AbstractModel):
|
|
8528
8451
|
@property
|
8529
8452
|
def OperatorUin(self):
|
8530
8453
|
"""操作者用户uin
|
8531
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8532
8454
|
:rtype: str
|
8533
8455
|
"""
|
8534
8456
|
return self._OperatorUin
|