tencentcloud-sdk-python 3.0.1345__py2.py3-none-any.whl → 3.0.1346__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/antiddos/v20200309/antiddos_client.py +0 -50
- tencentcloud/antiddos/v20200309/models.py +12 -687
- tencentcloud/apm/v20210622/models.py +60 -60
- tencentcloud/batch/v20170312/models.py +0 -150
- tencentcloud/cdwch/v20200915/models.py +111 -146
- tencentcloud/ckafka/v20190819/models.py +18 -960
- tencentcloud/cls/v20201016/models.py +0 -112
- tencentcloud/dbbrain/v20191016/models.py +2 -2
- tencentcloud/dbbrain/v20210527/models.py +17 -4
- tencentcloud/emr/v20190103/emr_client.py +1 -1
- tencentcloud/emr/v20190103/models.py +422 -15
- tencentcloud/hunyuan/v20230901/models.py +17 -2
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
- tencentcloud/iotexplorer/v20190423/models.py +131 -0
- tencentcloud/iotvideoindustry/v20201201/models.py +0 -52
- tencentcloud/lke/v20231130/lke_client.py +0 -23
- tencentcloud/lke/v20231130/models.py +0 -79
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/memcached/v20190318/models.py +2 -2
- tencentcloud/monitor/v20180724/models.py +446 -0
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/redis/v20180412/models.py +2 -4
- tencentcloud/svp/v20240125/models.py +0 -2
- tencentcloud/tdmq/v20200217/models.py +266 -0
- tencentcloud/teo/v20220901/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +81 -2
- tencentcloud/teo/v20220901/teo_client.py +23 -0
- tencentcloud/thpc/v20220401/models.py +0 -6
- tencentcloud/thpc/v20230321/models.py +0 -12
- tencentcloud/wedata/v20210820/models.py +222 -0
- {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/RECORD +36 -36
- {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/top_level.txt +0 -0
@@ -220,6 +220,10 @@ class BackUpJobDisplay(AbstractModel):
|
|
220
220
|
:type ExpireTime: str
|
221
221
|
:param _JobStatus: 任务状态
|
222
222
|
:type JobStatus: str
|
223
|
+
:param _ProcessSize: 处理数据量
|
224
|
+
:type ProcessSize: int
|
225
|
+
:param _ErrorReason: 错误原因
|
226
|
+
:type ErrorReason: str
|
223
227
|
"""
|
224
228
|
self._JobId = None
|
225
229
|
self._Snapshot = None
|
@@ -228,6 +232,8 @@ class BackUpJobDisplay(AbstractModel):
|
|
228
232
|
self._BackUpTime = None
|
229
233
|
self._ExpireTime = None
|
230
234
|
self._JobStatus = None
|
235
|
+
self._ProcessSize = None
|
236
|
+
self._ErrorReason = None
|
231
237
|
|
232
238
|
@property
|
233
239
|
def JobId(self):
|
@@ -306,6 +312,28 @@ class BackUpJobDisplay(AbstractModel):
|
|
306
312
|
def JobStatus(self, JobStatus):
|
307
313
|
self._JobStatus = JobStatus
|
308
314
|
|
315
|
+
@property
|
316
|
+
def ProcessSize(self):
|
317
|
+
"""处理数据量
|
318
|
+
:rtype: int
|
319
|
+
"""
|
320
|
+
return self._ProcessSize
|
321
|
+
|
322
|
+
@ProcessSize.setter
|
323
|
+
def ProcessSize(self, ProcessSize):
|
324
|
+
self._ProcessSize = ProcessSize
|
325
|
+
|
326
|
+
@property
|
327
|
+
def ErrorReason(self):
|
328
|
+
"""错误原因
|
329
|
+
:rtype: str
|
330
|
+
"""
|
331
|
+
return self._ErrorReason
|
332
|
+
|
333
|
+
@ErrorReason.setter
|
334
|
+
def ErrorReason(self, ErrorReason):
|
335
|
+
self._ErrorReason = ErrorReason
|
336
|
+
|
309
337
|
|
310
338
|
def _deserialize(self, params):
|
311
339
|
self._JobId = params.get("JobId")
|
@@ -315,6 +343,8 @@ class BackUpJobDisplay(AbstractModel):
|
|
315
343
|
self._BackUpTime = params.get("BackUpTime")
|
316
344
|
self._ExpireTime = params.get("ExpireTime")
|
317
345
|
self._JobStatus = params.get("JobStatus")
|
346
|
+
self._ProcessSize = params.get("ProcessSize")
|
347
|
+
self._ErrorReason = params.get("ErrorReason")
|
318
348
|
memeber_set = set(params.keys())
|
319
349
|
for name, value in vars(self).items():
|
320
350
|
property_name = name[1:]
|
@@ -1325,10 +1355,8 @@ class CreateInstanceNewResponse(AbstractModel):
|
|
1325
1355
|
def __init__(self):
|
1326
1356
|
r"""
|
1327
1357
|
:param _FlowId: 流程ID
|
1328
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1329
1358
|
:type FlowId: str
|
1330
1359
|
:param _InstanceId: 实例ID
|
1331
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1332
1360
|
:type InstanceId: str
|
1333
1361
|
:param _ErrorMsg: 错误信息
|
1334
1362
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -1344,7 +1372,6 @@ class CreateInstanceNewResponse(AbstractModel):
|
|
1344
1372
|
@property
|
1345
1373
|
def FlowId(self):
|
1346
1374
|
"""流程ID
|
1347
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1348
1375
|
:rtype: str
|
1349
1376
|
"""
|
1350
1377
|
return self._FlowId
|
@@ -1356,7 +1383,6 @@ class CreateInstanceNewResponse(AbstractModel):
|
|
1356
1383
|
@property
|
1357
1384
|
def InstanceId(self):
|
1358
1385
|
"""实例ID
|
1359
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1360
1386
|
:rtype: str
|
1361
1387
|
"""
|
1362
1388
|
return self._InstanceId
|
@@ -1405,11 +1431,9 @@ class DatabasePrivilegeInfo(AbstractModel):
|
|
1405
1431
|
r"""
|
1406
1432
|
:param _DatabaseName: 数据库名称
|
1407
1433
|
:type DatabaseName: str
|
1408
|
-
:param _DatabasePrivileges:
|
1409
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1434
|
+
:param _DatabasePrivileges: 库表权限,SELECT、INSERT_ALL、ALTER、TRUNCATE、DROP_TABLE、CREATE_TABLE、DROP_DATABASE
|
1410
1435
|
:type DatabasePrivileges: list of str
|
1411
|
-
:param _TablePrivilegeList:
|
1412
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1436
|
+
:param _TablePrivilegeList: 库下面的表权限
|
1413
1437
|
:type TablePrivilegeList: list of TablePrivilegeInfo
|
1414
1438
|
"""
|
1415
1439
|
self._DatabaseName = None
|
@@ -1429,8 +1453,7 @@ class DatabasePrivilegeInfo(AbstractModel):
|
|
1429
1453
|
|
1430
1454
|
@property
|
1431
1455
|
def DatabasePrivileges(self):
|
1432
|
-
"""
|
1433
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1456
|
+
"""库表权限,SELECT、INSERT_ALL、ALTER、TRUNCATE、DROP_TABLE、CREATE_TABLE、DROP_DATABASE
|
1434
1457
|
:rtype: list of str
|
1435
1458
|
"""
|
1436
1459
|
return self._DatabasePrivileges
|
@@ -1441,8 +1464,7 @@ class DatabasePrivilegeInfo(AbstractModel):
|
|
1441
1464
|
|
1442
1465
|
@property
|
1443
1466
|
def TablePrivilegeList(self):
|
1444
|
-
"""
|
1445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1467
|
+
"""库下面的表权限
|
1446
1468
|
:rtype: list of TablePrivilegeInfo
|
1447
1469
|
"""
|
1448
1470
|
return self._TablePrivilegeList
|
@@ -1768,18 +1790,22 @@ class DescribeBackUpJobResponse(AbstractModel):
|
|
1768
1790
|
def __init__(self):
|
1769
1791
|
r"""
|
1770
1792
|
:param _BackUpJobs: 任务列表
|
1771
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1772
1793
|
:type BackUpJobs: list of BackUpJobDisplay
|
1794
|
+
:param _ErrorMsg: 错误描述
|
1795
|
+
:type ErrorMsg: str
|
1796
|
+
:param _TotalCount: 数量
|
1797
|
+
:type TotalCount: int
|
1773
1798
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1774
1799
|
:type RequestId: str
|
1775
1800
|
"""
|
1776
1801
|
self._BackUpJobs = None
|
1802
|
+
self._ErrorMsg = None
|
1803
|
+
self._TotalCount = None
|
1777
1804
|
self._RequestId = None
|
1778
1805
|
|
1779
1806
|
@property
|
1780
1807
|
def BackUpJobs(self):
|
1781
1808
|
"""任务列表
|
1782
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1783
1809
|
:rtype: list of BackUpJobDisplay
|
1784
1810
|
"""
|
1785
1811
|
return self._BackUpJobs
|
@@ -1788,6 +1814,28 @@ class DescribeBackUpJobResponse(AbstractModel):
|
|
1788
1814
|
def BackUpJobs(self, BackUpJobs):
|
1789
1815
|
self._BackUpJobs = BackUpJobs
|
1790
1816
|
|
1817
|
+
@property
|
1818
|
+
def ErrorMsg(self):
|
1819
|
+
"""错误描述
|
1820
|
+
:rtype: str
|
1821
|
+
"""
|
1822
|
+
return self._ErrorMsg
|
1823
|
+
|
1824
|
+
@ErrorMsg.setter
|
1825
|
+
def ErrorMsg(self, ErrorMsg):
|
1826
|
+
self._ErrorMsg = ErrorMsg
|
1827
|
+
|
1828
|
+
@property
|
1829
|
+
def TotalCount(self):
|
1830
|
+
"""数量
|
1831
|
+
:rtype: int
|
1832
|
+
"""
|
1833
|
+
return self._TotalCount
|
1834
|
+
|
1835
|
+
@TotalCount.setter
|
1836
|
+
def TotalCount(self, TotalCount):
|
1837
|
+
self._TotalCount = TotalCount
|
1838
|
+
|
1791
1839
|
@property
|
1792
1840
|
def RequestId(self):
|
1793
1841
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -1807,6 +1855,8 @@ class DescribeBackUpJobResponse(AbstractModel):
|
|
1807
1855
|
obj = BackUpJobDisplay()
|
1808
1856
|
obj._deserialize(item)
|
1809
1857
|
self._BackUpJobs.append(obj)
|
1858
|
+
self._ErrorMsg = params.get("ErrorMsg")
|
1859
|
+
self._TotalCount = params.get("TotalCount")
|
1810
1860
|
self._RequestId = params.get("RequestId")
|
1811
1861
|
|
1812
1862
|
|
@@ -2026,10 +2076,13 @@ class DescribeBackUpTablesResponse(AbstractModel):
|
|
2026
2076
|
r"""
|
2027
2077
|
:param _AvailableTables: 可备份表列表
|
2028
2078
|
:type AvailableTables: list of BackupTableContent
|
2079
|
+
:param _ErrorMsg: 错误描述
|
2080
|
+
:type ErrorMsg: str
|
2029
2081
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2030
2082
|
:type RequestId: str
|
2031
2083
|
"""
|
2032
2084
|
self._AvailableTables = None
|
2085
|
+
self._ErrorMsg = None
|
2033
2086
|
self._RequestId = None
|
2034
2087
|
|
2035
2088
|
@property
|
@@ -2043,6 +2096,17 @@ class DescribeBackUpTablesResponse(AbstractModel):
|
|
2043
2096
|
def AvailableTables(self, AvailableTables):
|
2044
2097
|
self._AvailableTables = AvailableTables
|
2045
2098
|
|
2099
|
+
@property
|
2100
|
+
def ErrorMsg(self):
|
2101
|
+
"""错误描述
|
2102
|
+
:rtype: str
|
2103
|
+
"""
|
2104
|
+
return self._ErrorMsg
|
2105
|
+
|
2106
|
+
@ErrorMsg.setter
|
2107
|
+
def ErrorMsg(self, ErrorMsg):
|
2108
|
+
self._ErrorMsg = ErrorMsg
|
2109
|
+
|
2046
2110
|
@property
|
2047
2111
|
def RequestId(self):
|
2048
2112
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -2062,6 +2126,7 @@ class DescribeBackUpTablesResponse(AbstractModel):
|
|
2062
2126
|
obj = BackupTableContent()
|
2063
2127
|
obj._deserialize(item)
|
2064
2128
|
self._AvailableTables.append(obj)
|
2129
|
+
self._ErrorMsg = params.get("ErrorMsg")
|
2065
2130
|
self._RequestId = params.get("RequestId")
|
2066
2131
|
|
2067
2132
|
|
@@ -2951,20 +3016,19 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
2951
3016
|
:param _InstanceState: 集群状态,例如:Serving
|
2952
3017
|
:type InstanceState: str
|
2953
3018
|
:param _FlowCreateTime: 集群操作创建时间
|
2954
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2955
3019
|
:type FlowCreateTime: str
|
2956
3020
|
:param _FlowName: 集群操作名称
|
2957
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2958
3021
|
:type FlowName: str
|
2959
3022
|
:param _FlowProgress: 集群操作进度
|
2960
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2961
3023
|
:type FlowProgress: float
|
2962
3024
|
:param _InstanceStateDesc: 集群状态描述,例如:运行中
|
2963
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2964
3025
|
:type InstanceStateDesc: str
|
2965
3026
|
:param _FlowMsg: 集群流程错误信息,例如:“创建失败,资源不足”
|
2966
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2967
3027
|
:type FlowMsg: str
|
3028
|
+
:param _ProcessName: 当前步骤的名称,例如:”购买资源中“
|
3029
|
+
:type ProcessName: str
|
3030
|
+
:param _ProcessSubName: 当前步骤的名称,例如:”购买资源中“
|
3031
|
+
:type ProcessSubName: str
|
2968
3032
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2969
3033
|
:type RequestId: str
|
2970
3034
|
"""
|
@@ -2974,6 +3038,8 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
2974
3038
|
self._FlowProgress = None
|
2975
3039
|
self._InstanceStateDesc = None
|
2976
3040
|
self._FlowMsg = None
|
3041
|
+
self._ProcessName = None
|
3042
|
+
self._ProcessSubName = None
|
2977
3043
|
self._RequestId = None
|
2978
3044
|
|
2979
3045
|
@property
|
@@ -2990,7 +3056,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
2990
3056
|
@property
|
2991
3057
|
def FlowCreateTime(self):
|
2992
3058
|
"""集群操作创建时间
|
2993
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2994
3059
|
:rtype: str
|
2995
3060
|
"""
|
2996
3061
|
return self._FlowCreateTime
|
@@ -3002,7 +3067,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3002
3067
|
@property
|
3003
3068
|
def FlowName(self):
|
3004
3069
|
"""集群操作名称
|
3005
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3006
3070
|
:rtype: str
|
3007
3071
|
"""
|
3008
3072
|
return self._FlowName
|
@@ -3014,7 +3078,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3014
3078
|
@property
|
3015
3079
|
def FlowProgress(self):
|
3016
3080
|
"""集群操作进度
|
3017
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3018
3081
|
:rtype: float
|
3019
3082
|
"""
|
3020
3083
|
return self._FlowProgress
|
@@ -3026,7 +3089,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3026
3089
|
@property
|
3027
3090
|
def InstanceStateDesc(self):
|
3028
3091
|
"""集群状态描述,例如:运行中
|
3029
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3030
3092
|
:rtype: str
|
3031
3093
|
"""
|
3032
3094
|
return self._InstanceStateDesc
|
@@ -3038,7 +3100,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3038
3100
|
@property
|
3039
3101
|
def FlowMsg(self):
|
3040
3102
|
"""集群流程错误信息,例如:“创建失败,资源不足”
|
3041
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3042
3103
|
:rtype: str
|
3043
3104
|
"""
|
3044
3105
|
return self._FlowMsg
|
@@ -3047,6 +3108,28 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3047
3108
|
def FlowMsg(self, FlowMsg):
|
3048
3109
|
self._FlowMsg = FlowMsg
|
3049
3110
|
|
3111
|
+
@property
|
3112
|
+
def ProcessName(self):
|
3113
|
+
"""当前步骤的名称,例如:”购买资源中“
|
3114
|
+
:rtype: str
|
3115
|
+
"""
|
3116
|
+
return self._ProcessName
|
3117
|
+
|
3118
|
+
@ProcessName.setter
|
3119
|
+
def ProcessName(self, ProcessName):
|
3120
|
+
self._ProcessName = ProcessName
|
3121
|
+
|
3122
|
+
@property
|
3123
|
+
def ProcessSubName(self):
|
3124
|
+
"""当前步骤的名称,例如:”购买资源中“
|
3125
|
+
:rtype: str
|
3126
|
+
"""
|
3127
|
+
return self._ProcessSubName
|
3128
|
+
|
3129
|
+
@ProcessSubName.setter
|
3130
|
+
def ProcessSubName(self, ProcessSubName):
|
3131
|
+
self._ProcessSubName = ProcessSubName
|
3132
|
+
|
3050
3133
|
@property
|
3051
3134
|
def RequestId(self):
|
3052
3135
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -3066,6 +3149,8 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3066
3149
|
self._FlowProgress = params.get("FlowProgress")
|
3067
3150
|
self._InstanceStateDesc = params.get("InstanceStateDesc")
|
3068
3151
|
self._FlowMsg = params.get("FlowMsg")
|
3152
|
+
self._ProcessName = params.get("ProcessName")
|
3153
|
+
self._ProcessSubName = params.get("ProcessSubName")
|
3069
3154
|
self._RequestId = params.get("RequestId")
|
3070
3155
|
|
3071
3156
|
|
@@ -3356,7 +3441,6 @@ class DescribeSpecResponse(AbstractModel):
|
|
3356
3441
|
:param _DataSpec: 数据节点规格描述
|
3357
3442
|
:type DataSpec: list of ResourceSpec
|
3358
3443
|
:param _AttachCBSSpec: 云盘列表
|
3359
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3360
3444
|
:type AttachCBSSpec: list of DiskSpec
|
3361
3445
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3362
3446
|
:type RequestId: str
|
@@ -3391,7 +3475,6 @@ class DescribeSpecResponse(AbstractModel):
|
|
3391
3475
|
@property
|
3392
3476
|
def AttachCBSSpec(self):
|
3393
3477
|
"""云盘列表
|
3394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3395
3478
|
:rtype: list of DiskSpec
|
3396
3479
|
"""
|
3397
3480
|
return self._AttachCBSSpec
|
@@ -3986,163 +4069,111 @@ class InstanceInfo(AbstractModel):
|
|
3986
4069
|
def __init__(self):
|
3987
4070
|
r"""
|
3988
4071
|
:param _InstanceId: 集群实例ID, "cdw-xxxx" 字符串类型
|
3989
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3990
4072
|
:type InstanceId: str
|
3991
4073
|
:param _InstanceName: 集群实例名称
|
3992
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3993
4074
|
:type InstanceName: str
|
3994
4075
|
:param _Status: 状态,
|
3995
4076
|
Init 创建中; Serving 运行中;
|
3996
4077
|
Deleted已销毁;Deleting 销毁中;
|
3997
4078
|
Modify 集群变更中;
|
3998
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3999
4079
|
:type Status: str
|
4000
4080
|
:param _Version: 版本
|
4001
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4002
4081
|
:type Version: str
|
4003
4082
|
:param _Region: 地域, ap-guangzhou
|
4004
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4005
4083
|
:type Region: str
|
4006
4084
|
:param _Zone: 可用区, ap-guangzhou-3
|
4007
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4008
4085
|
:type Zone: str
|
4009
4086
|
:param _VpcId: 私有网络名称
|
4010
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4011
4087
|
:type VpcId: str
|
4012
4088
|
:param _SubnetId: 子网名称
|
4013
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4014
4089
|
:type SubnetId: str
|
4015
4090
|
:param _PayMode: 付费类型,"hour", "prepay"
|
4016
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4017
4091
|
:type PayMode: str
|
4018
4092
|
:param _CreateTime: 创建时间
|
4019
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4020
4093
|
:type CreateTime: str
|
4021
4094
|
:param _ExpireTime: 过期时间
|
4022
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4023
4095
|
:type ExpireTime: str
|
4024
4096
|
:param _MasterSummary: 数据节点描述信息
|
4025
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4026
4097
|
:type MasterSummary: :class:`tencentcloud.cdwch.v20200915.models.NodesSummary`
|
4027
4098
|
:param _CommonSummary: zookeeper节点描述信息
|
4028
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4029
4099
|
:type CommonSummary: :class:`tencentcloud.cdwch.v20200915.models.NodesSummary`
|
4030
4100
|
:param _HA: 高可用,“true" "false"
|
4031
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4032
4101
|
:type HA: str
|
4033
4102
|
:param _AccessInfo: 访问地址,例如 "10.0.0.1:9000"
|
4034
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4035
4103
|
:type AccessInfo: str
|
4036
4104
|
:param _Id: 记录ID,数值型
|
4037
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4038
4105
|
:type Id: int
|
4039
4106
|
:param _RegionId: regionId, 表示地域
|
4040
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4041
4107
|
:type RegionId: int
|
4042
4108
|
:param _ZoneDesc: 可用区说明,例如 "广州二区"
|
4043
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4044
4109
|
:type ZoneDesc: str
|
4045
4110
|
:param _FlowMsg: 错误流程说明信息
|
4046
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4047
4111
|
:type FlowMsg: str
|
4048
4112
|
:param _StatusDesc: 状态描述,例如“运行中”等
|
4049
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4050
4113
|
:type StatusDesc: str
|
4051
4114
|
:param _RenewFlag: 自动续费标记
|
4052
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4053
4115
|
:type RenewFlag: bool
|
4054
4116
|
:param _Tags: 标签列表
|
4055
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4056
4117
|
:type Tags: list of Tag
|
4057
4118
|
:param _Monitor: 监控信息
|
4058
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4059
4119
|
:type Monitor: str
|
4060
4120
|
:param _HasClsTopic: 是否开通日志
|
4061
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4062
4121
|
:type HasClsTopic: bool
|
4063
4122
|
:param _ClsTopicId: 日志主题ID
|
4064
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4065
4123
|
:type ClsTopicId: str
|
4066
4124
|
:param _ClsLogSetId: 日志集ID
|
4067
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4068
4125
|
:type ClsLogSetId: str
|
4069
4126
|
:param _EnableXMLConfig: 是否支持xml配置管理
|
4070
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4071
4127
|
:type EnableXMLConfig: int
|
4072
4128
|
:param _RegionDesc: 区域
|
4073
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4074
4129
|
:type RegionDesc: str
|
4075
4130
|
:param _Eip: 弹性网卡地址
|
4076
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4077
4131
|
:type Eip: str
|
4078
4132
|
:param _CosMoveFactor: 冷热分层系数
|
4079
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4080
4133
|
:type CosMoveFactor: int
|
4081
4134
|
:param _Kind: external/local/yunti
|
4082
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4083
4135
|
:type Kind: str
|
4084
4136
|
:param _IsElastic: 是否弹性ck
|
4085
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4086
4137
|
:type IsElastic: bool
|
4087
4138
|
:param _InstanceStateInfo: 集群详细状态
|
4088
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4089
4139
|
:type InstanceStateInfo: :class:`tencentcloud.cdwch.v20200915.models.InstanceStateInfo`
|
4090
4140
|
:param _HAZk: ZK高可用
|
4091
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4092
4141
|
:type HAZk: bool
|
4093
4142
|
:param _MountDiskType: 挂载盘,默认0:没有类型;1:裸盘;2:lvm
|
4094
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4095
4143
|
:type MountDiskType: int
|
4096
|
-
:param _CHProxyVip:
|
4097
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4144
|
+
:param _CHProxyVip: chproxy连接ip
|
4098
4145
|
:type CHProxyVip: str
|
4099
4146
|
:param _CosBucketName: cos buket的名字
|
4100
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4101
4147
|
:type CosBucketName: str
|
4102
4148
|
:param _CanAttachCbs: 是否可以挂载云盘
|
4103
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4104
4149
|
:type CanAttachCbs: bool
|
4105
4150
|
:param _CanAttachCbsLvm: 是否可以挂载云盘阵列
|
4106
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4107
4151
|
:type CanAttachCbsLvm: bool
|
4108
4152
|
:param _CanAttachCos: 是否可以挂载cos
|
4109
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4110
4153
|
:type CanAttachCos: bool
|
4111
4154
|
:param _Components: 服务信息
|
4112
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4113
4155
|
:type Components: list of ServiceInfo
|
4114
4156
|
:param _UpgradeVersions: 可升级的内核版本
|
4115
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4116
4157
|
:type UpgradeVersions: str
|
4117
4158
|
:param _EsIndexId: ex-index
|
4118
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4119
4159
|
:type EsIndexId: str
|
4120
4160
|
:param _EsIndexUsername: username
|
4121
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4122
4161
|
:type EsIndexUsername: str
|
4123
4162
|
:param _EsIndexPassword: password
|
4124
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4125
4163
|
:type EsIndexPassword: str
|
4126
4164
|
:param _HasEsIndex: true
|
4127
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4128
4165
|
:type HasEsIndex: bool
|
4129
4166
|
:param _IsSecondaryZone: true
|
4130
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4131
4167
|
:type IsSecondaryZone: bool
|
4132
4168
|
:param _SecondaryZoneInfo: desc
|
4133
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4134
4169
|
:type SecondaryZoneInfo: str
|
4135
4170
|
:param _ClickHouseKeeper: 是否clickhouse-keeper
|
4136
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4137
4171
|
:type ClickHouseKeeper: bool
|
4138
4172
|
:param _Details: 实例扩展信息
|
4139
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4140
4173
|
:type Details: :class:`tencentcloud.cdwch.v20200915.models.InstanceDetail`
|
4141
4174
|
:param _IsWhiteSGs: 安全组白名单
|
4142
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4143
4175
|
:type IsWhiteSGs: bool
|
4144
4176
|
:param _BindSGs: 绑定的安全组
|
4145
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4146
4177
|
:type BindSGs: list of str
|
4147
4178
|
:param _HasPublicCloudClb: 是否开启公网clb
|
4148
4179
|
:type HasPublicCloudClb: bool
|
@@ -4204,7 +4235,6 @@ Modify 集群变更中;
|
|
4204
4235
|
@property
|
4205
4236
|
def InstanceId(self):
|
4206
4237
|
"""集群实例ID, "cdw-xxxx" 字符串类型
|
4207
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4208
4238
|
:rtype: str
|
4209
4239
|
"""
|
4210
4240
|
return self._InstanceId
|
@@ -4216,7 +4246,6 @@ Modify 集群变更中;
|
|
4216
4246
|
@property
|
4217
4247
|
def InstanceName(self):
|
4218
4248
|
"""集群实例名称
|
4219
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4220
4249
|
:rtype: str
|
4221
4250
|
"""
|
4222
4251
|
return self._InstanceName
|
@@ -4231,7 +4260,6 @@ Modify 集群变更中;
|
|
4231
4260
|
Init 创建中; Serving 运行中;
|
4232
4261
|
Deleted已销毁;Deleting 销毁中;
|
4233
4262
|
Modify 集群变更中;
|
4234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4235
4263
|
:rtype: str
|
4236
4264
|
"""
|
4237
4265
|
return self._Status
|
@@ -4243,7 +4271,6 @@ Modify 集群变更中;
|
|
4243
4271
|
@property
|
4244
4272
|
def Version(self):
|
4245
4273
|
"""版本
|
4246
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4247
4274
|
:rtype: str
|
4248
4275
|
"""
|
4249
4276
|
return self._Version
|
@@ -4255,7 +4282,6 @@ Modify 集群变更中;
|
|
4255
4282
|
@property
|
4256
4283
|
def Region(self):
|
4257
4284
|
"""地域, ap-guangzhou
|
4258
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4259
4285
|
:rtype: str
|
4260
4286
|
"""
|
4261
4287
|
return self._Region
|
@@ -4267,7 +4293,6 @@ Modify 集群变更中;
|
|
4267
4293
|
@property
|
4268
4294
|
def Zone(self):
|
4269
4295
|
"""可用区, ap-guangzhou-3
|
4270
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4271
4296
|
:rtype: str
|
4272
4297
|
"""
|
4273
4298
|
return self._Zone
|
@@ -4279,7 +4304,6 @@ Modify 集群变更中;
|
|
4279
4304
|
@property
|
4280
4305
|
def VpcId(self):
|
4281
4306
|
"""私有网络名称
|
4282
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4283
4307
|
:rtype: str
|
4284
4308
|
"""
|
4285
4309
|
return self._VpcId
|
@@ -4291,7 +4315,6 @@ Modify 集群变更中;
|
|
4291
4315
|
@property
|
4292
4316
|
def SubnetId(self):
|
4293
4317
|
"""子网名称
|
4294
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4295
4318
|
:rtype: str
|
4296
4319
|
"""
|
4297
4320
|
return self._SubnetId
|
@@ -4303,7 +4326,6 @@ Modify 集群变更中;
|
|
4303
4326
|
@property
|
4304
4327
|
def PayMode(self):
|
4305
4328
|
"""付费类型,"hour", "prepay"
|
4306
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4307
4329
|
:rtype: str
|
4308
4330
|
"""
|
4309
4331
|
return self._PayMode
|
@@ -4315,7 +4337,6 @@ Modify 集群变更中;
|
|
4315
4337
|
@property
|
4316
4338
|
def CreateTime(self):
|
4317
4339
|
"""创建时间
|
4318
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4319
4340
|
:rtype: str
|
4320
4341
|
"""
|
4321
4342
|
return self._CreateTime
|
@@ -4327,7 +4348,6 @@ Modify 集群变更中;
|
|
4327
4348
|
@property
|
4328
4349
|
def ExpireTime(self):
|
4329
4350
|
"""过期时间
|
4330
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4331
4351
|
:rtype: str
|
4332
4352
|
"""
|
4333
4353
|
return self._ExpireTime
|
@@ -4339,7 +4359,6 @@ Modify 集群变更中;
|
|
4339
4359
|
@property
|
4340
4360
|
def MasterSummary(self):
|
4341
4361
|
"""数据节点描述信息
|
4342
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4343
4362
|
:rtype: :class:`tencentcloud.cdwch.v20200915.models.NodesSummary`
|
4344
4363
|
"""
|
4345
4364
|
return self._MasterSummary
|
@@ -4351,7 +4370,6 @@ Modify 集群变更中;
|
|
4351
4370
|
@property
|
4352
4371
|
def CommonSummary(self):
|
4353
4372
|
"""zookeeper节点描述信息
|
4354
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4355
4373
|
:rtype: :class:`tencentcloud.cdwch.v20200915.models.NodesSummary`
|
4356
4374
|
"""
|
4357
4375
|
return self._CommonSummary
|
@@ -4363,7 +4381,6 @@ Modify 集群变更中;
|
|
4363
4381
|
@property
|
4364
4382
|
def HA(self):
|
4365
4383
|
"""高可用,“true" "false"
|
4366
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4367
4384
|
:rtype: str
|
4368
4385
|
"""
|
4369
4386
|
return self._HA
|
@@ -4375,7 +4392,6 @@ Modify 集群变更中;
|
|
4375
4392
|
@property
|
4376
4393
|
def AccessInfo(self):
|
4377
4394
|
"""访问地址,例如 "10.0.0.1:9000"
|
4378
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4379
4395
|
:rtype: str
|
4380
4396
|
"""
|
4381
4397
|
return self._AccessInfo
|
@@ -4387,7 +4403,6 @@ Modify 集群变更中;
|
|
4387
4403
|
@property
|
4388
4404
|
def Id(self):
|
4389
4405
|
"""记录ID,数值型
|
4390
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4391
4406
|
:rtype: int
|
4392
4407
|
"""
|
4393
4408
|
return self._Id
|
@@ -4399,7 +4414,6 @@ Modify 集群变更中;
|
|
4399
4414
|
@property
|
4400
4415
|
def RegionId(self):
|
4401
4416
|
"""regionId, 表示地域
|
4402
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4403
4417
|
:rtype: int
|
4404
4418
|
"""
|
4405
4419
|
return self._RegionId
|
@@ -4411,7 +4425,6 @@ Modify 集群变更中;
|
|
4411
4425
|
@property
|
4412
4426
|
def ZoneDesc(self):
|
4413
4427
|
"""可用区说明,例如 "广州二区"
|
4414
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4415
4428
|
:rtype: str
|
4416
4429
|
"""
|
4417
4430
|
return self._ZoneDesc
|
@@ -4423,7 +4436,6 @@ Modify 集群变更中;
|
|
4423
4436
|
@property
|
4424
4437
|
def FlowMsg(self):
|
4425
4438
|
"""错误流程说明信息
|
4426
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4427
4439
|
:rtype: str
|
4428
4440
|
"""
|
4429
4441
|
return self._FlowMsg
|
@@ -4435,7 +4447,6 @@ Modify 集群变更中;
|
|
4435
4447
|
@property
|
4436
4448
|
def StatusDesc(self):
|
4437
4449
|
"""状态描述,例如“运行中”等
|
4438
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4439
4450
|
:rtype: str
|
4440
4451
|
"""
|
4441
4452
|
return self._StatusDesc
|
@@ -4447,7 +4458,6 @@ Modify 集群变更中;
|
|
4447
4458
|
@property
|
4448
4459
|
def RenewFlag(self):
|
4449
4460
|
"""自动续费标记
|
4450
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4451
4461
|
:rtype: bool
|
4452
4462
|
"""
|
4453
4463
|
return self._RenewFlag
|
@@ -4459,7 +4469,6 @@ Modify 集群变更中;
|
|
4459
4469
|
@property
|
4460
4470
|
def Tags(self):
|
4461
4471
|
"""标签列表
|
4462
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4463
4472
|
:rtype: list of Tag
|
4464
4473
|
"""
|
4465
4474
|
return self._Tags
|
@@ -4471,7 +4480,6 @@ Modify 集群变更中;
|
|
4471
4480
|
@property
|
4472
4481
|
def Monitor(self):
|
4473
4482
|
"""监控信息
|
4474
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4475
4483
|
:rtype: str
|
4476
4484
|
"""
|
4477
4485
|
return self._Monitor
|
@@ -4483,7 +4491,6 @@ Modify 集群变更中;
|
|
4483
4491
|
@property
|
4484
4492
|
def HasClsTopic(self):
|
4485
4493
|
"""是否开通日志
|
4486
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4487
4494
|
:rtype: bool
|
4488
4495
|
"""
|
4489
4496
|
return self._HasClsTopic
|
@@ -4495,7 +4502,6 @@ Modify 集群变更中;
|
|
4495
4502
|
@property
|
4496
4503
|
def ClsTopicId(self):
|
4497
4504
|
"""日志主题ID
|
4498
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4499
4505
|
:rtype: str
|
4500
4506
|
"""
|
4501
4507
|
return self._ClsTopicId
|
@@ -4507,7 +4513,6 @@ Modify 集群变更中;
|
|
4507
4513
|
@property
|
4508
4514
|
def ClsLogSetId(self):
|
4509
4515
|
"""日志集ID
|
4510
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4511
4516
|
:rtype: str
|
4512
4517
|
"""
|
4513
4518
|
return self._ClsLogSetId
|
@@ -4519,7 +4524,6 @@ Modify 集群变更中;
|
|
4519
4524
|
@property
|
4520
4525
|
def EnableXMLConfig(self):
|
4521
4526
|
"""是否支持xml配置管理
|
4522
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4523
4527
|
:rtype: int
|
4524
4528
|
"""
|
4525
4529
|
return self._EnableXMLConfig
|
@@ -4531,7 +4535,6 @@ Modify 集群变更中;
|
|
4531
4535
|
@property
|
4532
4536
|
def RegionDesc(self):
|
4533
4537
|
"""区域
|
4534
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4535
4538
|
:rtype: str
|
4536
4539
|
"""
|
4537
4540
|
return self._RegionDesc
|
@@ -4543,7 +4546,6 @@ Modify 集群变更中;
|
|
4543
4546
|
@property
|
4544
4547
|
def Eip(self):
|
4545
4548
|
"""弹性网卡地址
|
4546
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4547
4549
|
:rtype: str
|
4548
4550
|
"""
|
4549
4551
|
return self._Eip
|
@@ -4555,7 +4557,6 @@ Modify 集群变更中;
|
|
4555
4557
|
@property
|
4556
4558
|
def CosMoveFactor(self):
|
4557
4559
|
"""冷热分层系数
|
4558
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4559
4560
|
:rtype: int
|
4560
4561
|
"""
|
4561
4562
|
return self._CosMoveFactor
|
@@ -4567,7 +4568,6 @@ Modify 集群变更中;
|
|
4567
4568
|
@property
|
4568
4569
|
def Kind(self):
|
4569
4570
|
"""external/local/yunti
|
4570
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4571
4571
|
:rtype: str
|
4572
4572
|
"""
|
4573
4573
|
return self._Kind
|
@@ -4579,7 +4579,6 @@ Modify 集群变更中;
|
|
4579
4579
|
@property
|
4580
4580
|
def IsElastic(self):
|
4581
4581
|
"""是否弹性ck
|
4582
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4583
4582
|
:rtype: bool
|
4584
4583
|
"""
|
4585
4584
|
return self._IsElastic
|
@@ -4591,7 +4590,6 @@ Modify 集群变更中;
|
|
4591
4590
|
@property
|
4592
4591
|
def InstanceStateInfo(self):
|
4593
4592
|
"""集群详细状态
|
4594
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4595
4593
|
:rtype: :class:`tencentcloud.cdwch.v20200915.models.InstanceStateInfo`
|
4596
4594
|
"""
|
4597
4595
|
return self._InstanceStateInfo
|
@@ -4603,7 +4601,6 @@ Modify 集群变更中;
|
|
4603
4601
|
@property
|
4604
4602
|
def HAZk(self):
|
4605
4603
|
"""ZK高可用
|
4606
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4607
4604
|
:rtype: bool
|
4608
4605
|
"""
|
4609
4606
|
return self._HAZk
|
@@ -4615,7 +4612,6 @@ Modify 集群变更中;
|
|
4615
4612
|
@property
|
4616
4613
|
def MountDiskType(self):
|
4617
4614
|
"""挂载盘,默认0:没有类型;1:裸盘;2:lvm
|
4618
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4619
4615
|
:rtype: int
|
4620
4616
|
"""
|
4621
4617
|
return self._MountDiskType
|
@@ -4626,8 +4622,7 @@ Modify 集群变更中;
|
|
4626
4622
|
|
4627
4623
|
@property
|
4628
4624
|
def CHProxyVip(self):
|
4629
|
-
"""
|
4630
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4625
|
+
"""chproxy连接ip
|
4631
4626
|
:rtype: str
|
4632
4627
|
"""
|
4633
4628
|
return self._CHProxyVip
|
@@ -4639,7 +4634,6 @@ Modify 集群变更中;
|
|
4639
4634
|
@property
|
4640
4635
|
def CosBucketName(self):
|
4641
4636
|
"""cos buket的名字
|
4642
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4643
4637
|
:rtype: str
|
4644
4638
|
"""
|
4645
4639
|
return self._CosBucketName
|
@@ -4651,7 +4645,6 @@ Modify 集群变更中;
|
|
4651
4645
|
@property
|
4652
4646
|
def CanAttachCbs(self):
|
4653
4647
|
"""是否可以挂载云盘
|
4654
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4655
4648
|
:rtype: bool
|
4656
4649
|
"""
|
4657
4650
|
return self._CanAttachCbs
|
@@ -4663,7 +4656,6 @@ Modify 集群变更中;
|
|
4663
4656
|
@property
|
4664
4657
|
def CanAttachCbsLvm(self):
|
4665
4658
|
"""是否可以挂载云盘阵列
|
4666
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4667
4659
|
:rtype: bool
|
4668
4660
|
"""
|
4669
4661
|
return self._CanAttachCbsLvm
|
@@ -4675,7 +4667,6 @@ Modify 集群变更中;
|
|
4675
4667
|
@property
|
4676
4668
|
def CanAttachCos(self):
|
4677
4669
|
"""是否可以挂载cos
|
4678
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4679
4670
|
:rtype: bool
|
4680
4671
|
"""
|
4681
4672
|
return self._CanAttachCos
|
@@ -4687,7 +4678,6 @@ Modify 集群变更中;
|
|
4687
4678
|
@property
|
4688
4679
|
def Components(self):
|
4689
4680
|
"""服务信息
|
4690
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4691
4681
|
:rtype: list of ServiceInfo
|
4692
4682
|
"""
|
4693
4683
|
return self._Components
|
@@ -4699,7 +4689,6 @@ Modify 集群变更中;
|
|
4699
4689
|
@property
|
4700
4690
|
def UpgradeVersions(self):
|
4701
4691
|
"""可升级的内核版本
|
4702
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4703
4692
|
:rtype: str
|
4704
4693
|
"""
|
4705
4694
|
return self._UpgradeVersions
|
@@ -4711,7 +4700,6 @@ Modify 集群变更中;
|
|
4711
4700
|
@property
|
4712
4701
|
def EsIndexId(self):
|
4713
4702
|
"""ex-index
|
4714
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4715
4703
|
:rtype: str
|
4716
4704
|
"""
|
4717
4705
|
return self._EsIndexId
|
@@ -4723,7 +4711,6 @@ Modify 集群变更中;
|
|
4723
4711
|
@property
|
4724
4712
|
def EsIndexUsername(self):
|
4725
4713
|
"""username
|
4726
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4727
4714
|
:rtype: str
|
4728
4715
|
"""
|
4729
4716
|
return self._EsIndexUsername
|
@@ -4735,7 +4722,6 @@ Modify 集群变更中;
|
|
4735
4722
|
@property
|
4736
4723
|
def EsIndexPassword(self):
|
4737
4724
|
"""password
|
4738
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4739
4725
|
:rtype: str
|
4740
4726
|
"""
|
4741
4727
|
return self._EsIndexPassword
|
@@ -4747,7 +4733,6 @@ Modify 集群变更中;
|
|
4747
4733
|
@property
|
4748
4734
|
def HasEsIndex(self):
|
4749
4735
|
"""true
|
4750
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4751
4736
|
:rtype: bool
|
4752
4737
|
"""
|
4753
4738
|
return self._HasEsIndex
|
@@ -4759,7 +4744,6 @@ Modify 集群变更中;
|
|
4759
4744
|
@property
|
4760
4745
|
def IsSecondaryZone(self):
|
4761
4746
|
"""true
|
4762
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4763
4747
|
:rtype: bool
|
4764
4748
|
"""
|
4765
4749
|
return self._IsSecondaryZone
|
@@ -4771,7 +4755,6 @@ Modify 集群变更中;
|
|
4771
4755
|
@property
|
4772
4756
|
def SecondaryZoneInfo(self):
|
4773
4757
|
"""desc
|
4774
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4775
4758
|
:rtype: str
|
4776
4759
|
"""
|
4777
4760
|
return self._SecondaryZoneInfo
|
@@ -4783,7 +4766,6 @@ Modify 集群变更中;
|
|
4783
4766
|
@property
|
4784
4767
|
def ClickHouseKeeper(self):
|
4785
4768
|
"""是否clickhouse-keeper
|
4786
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4787
4769
|
:rtype: bool
|
4788
4770
|
"""
|
4789
4771
|
return self._ClickHouseKeeper
|
@@ -4795,7 +4777,6 @@ Modify 集群变更中;
|
|
4795
4777
|
@property
|
4796
4778
|
def Details(self):
|
4797
4779
|
"""实例扩展信息
|
4798
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4799
4780
|
:rtype: :class:`tencentcloud.cdwch.v20200915.models.InstanceDetail`
|
4800
4781
|
"""
|
4801
4782
|
return self._Details
|
@@ -4807,7 +4788,6 @@ Modify 集群变更中;
|
|
4807
4788
|
@property
|
4808
4789
|
def IsWhiteSGs(self):
|
4809
4790
|
"""安全组白名单
|
4810
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4811
4791
|
:rtype: bool
|
4812
4792
|
"""
|
4813
4793
|
return self._IsWhiteSGs
|
@@ -4819,7 +4799,6 @@ Modify 集群变更中;
|
|
4819
4799
|
@property
|
4820
4800
|
def BindSGs(self):
|
4821
4801
|
"""绑定的安全组
|
4822
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4823
4802
|
:rtype: list of str
|
4824
4803
|
"""
|
4825
4804
|
return self._BindSGs
|
@@ -5932,25 +5911,18 @@ class NodesSummary(AbstractModel):
|
|
5932
5911
|
:param _DiskDesc: 磁盘描述
|
5933
5912
|
:type DiskDesc: str
|
5934
5913
|
:param _AttachCBSSpec: 挂载云盘信息
|
5935
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5936
5914
|
:type AttachCBSSpec: :class:`tencentcloud.cdwch.v20200915.models.AttachCBSSpec`
|
5937
5915
|
:param _SubProductType: 子产品类型
|
5938
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5939
5916
|
:type SubProductType: str
|
5940
5917
|
:param _SpecCore: 规格对应的核数
|
5941
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5942
5918
|
:type SpecCore: int
|
5943
5919
|
:param _SpecMemory: 规格对应的内存大小
|
5944
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5945
5920
|
:type SpecMemory: int
|
5946
5921
|
:param _DiskCount: 磁盘的数量
|
5947
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5948
5922
|
:type DiskCount: int
|
5949
5923
|
:param _MaxDiskSize: 磁盘的最大大小
|
5950
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5951
5924
|
:type MaxDiskSize: int
|
5952
5925
|
:param _Encrypt: 是否为加密云盘
|
5953
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5954
5926
|
:type Encrypt: int
|
5955
5927
|
"""
|
5956
5928
|
self._Spec = None
|
@@ -6048,7 +6020,6 @@ class NodesSummary(AbstractModel):
|
|
6048
6020
|
@property
|
6049
6021
|
def AttachCBSSpec(self):
|
6050
6022
|
"""挂载云盘信息
|
6051
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6052
6023
|
:rtype: :class:`tencentcloud.cdwch.v20200915.models.AttachCBSSpec`
|
6053
6024
|
"""
|
6054
6025
|
return self._AttachCBSSpec
|
@@ -6060,7 +6031,6 @@ class NodesSummary(AbstractModel):
|
|
6060
6031
|
@property
|
6061
6032
|
def SubProductType(self):
|
6062
6033
|
"""子产品类型
|
6063
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6064
6034
|
:rtype: str
|
6065
6035
|
"""
|
6066
6036
|
return self._SubProductType
|
@@ -6072,7 +6042,6 @@ class NodesSummary(AbstractModel):
|
|
6072
6042
|
@property
|
6073
6043
|
def SpecCore(self):
|
6074
6044
|
"""规格对应的核数
|
6075
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6076
6045
|
:rtype: int
|
6077
6046
|
"""
|
6078
6047
|
return self._SpecCore
|
@@ -6084,7 +6053,6 @@ class NodesSummary(AbstractModel):
|
|
6084
6053
|
@property
|
6085
6054
|
def SpecMemory(self):
|
6086
6055
|
"""规格对应的内存大小
|
6087
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6088
6056
|
:rtype: int
|
6089
6057
|
"""
|
6090
6058
|
return self._SpecMemory
|
@@ -6096,7 +6064,6 @@ class NodesSummary(AbstractModel):
|
|
6096
6064
|
@property
|
6097
6065
|
def DiskCount(self):
|
6098
6066
|
"""磁盘的数量
|
6099
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6100
6067
|
:rtype: int
|
6101
6068
|
"""
|
6102
6069
|
return self._DiskCount
|
@@ -6108,7 +6075,6 @@ class NodesSummary(AbstractModel):
|
|
6108
6075
|
@property
|
6109
6076
|
def MaxDiskSize(self):
|
6110
6077
|
"""磁盘的最大大小
|
6111
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6112
6078
|
:rtype: int
|
6113
6079
|
"""
|
6114
6080
|
return self._MaxDiskSize
|
@@ -6120,7 +6086,6 @@ class NodesSummary(AbstractModel):
|
|
6120
6086
|
@property
|
6121
6087
|
def Encrypt(self):
|
6122
6088
|
"""是否为加密云盘
|
6123
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6124
6089
|
:rtype: int
|
6125
6090
|
"""
|
6126
6091
|
return self._Encrypt
|