tencentcloud-sdk-python 3.0.1344__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 +14 -689
- tencentcloud/apm/v20210622/models.py +60 -60
- tencentcloud/batch/v20170312/models.py +0 -150
- tencentcloud/bi/v20220105/models.py +6 -2
- tencentcloud/cbs/v20170312/models.py +0 -20
- tencentcloud/cdwch/v20200915/models.py +111 -256
- tencentcloud/ckafka/v20190819/models.py +2 -1204
- tencentcloud/clb/v20180317/models.py +10 -10
- tencentcloud/cls/v20201016/cls_client.py +0 -92
- tencentcloud/cls/v20201016/models.py +18 -1032
- tencentcloud/cvm/v20170312/models.py +15 -0
- tencentcloud/cynosdb/v20190107/models.py +0 -84
- tencentcloud/dbbrain/v20191016/models.py +2 -22
- tencentcloud/dbbrain/v20210527/models.py +17 -96
- tencentcloud/dcdb/v20180411/models.py +0 -48
- tencentcloud/dnspod/v20210323/dnspod_client.py +69 -0
- tencentcloud/dnspod/v20210323/errorcodes.py +9 -0
- tencentcloud/dnspod/v20210323/models.py +724 -0
- tencentcloud/dsgc/v20190723/dsgc_client.py +0 -23
- tencentcloud/dsgc/v20190723/models.py +0 -34
- 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/iotvideoindustry_client.py +1 -1
- tencentcloud/iotvideoindustry/v20201201/models.py +15 -456
- tencentcloud/lke/v20231130/lke_client.py +0 -23
- tencentcloud/lke/v20231130/models.py +0 -79
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/mariadb/v20170312/models.py +0 -38
- tencentcloud/memcached/v20190318/models.py +2 -2
- tencentcloud/mmps/v20200710/models.py +0 -56
- tencentcloud/monitor/v20180724/models.py +446 -0
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/postgres/v20170312/models.py +0 -222
- tencentcloud/postgres/v20170312/postgres_client.py +5 -5
- tencentcloud/redis/v20180412/models.py +2 -4
- tencentcloud/svp/v20240125/models.py +0 -44
- tencentcloud/tcb/v20180608/models.py +0 -195
- tencentcloud/tcb/v20180608/tcb_client.py +0 -23
- tencentcloud/tcss/v20201101/models.py +1813 -2547
- tencentcloud/tcss/v20201101/tcss_client.py +92 -125
- tencentcloud/tdmq/v20200217/models.py +266 -154
- tencentcloud/tdmq/v20200217/tdmq_client.py +0 -23
- tencentcloud/teo/v20220901/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +239 -38
- tencentcloud/teo/v20220901/teo_client.py +46 -0
- tencentcloud/thpc/v20211109/models.py +0 -6
- tencentcloud/thpc/v20220401/models.py +0 -12
- tencentcloud/thpc/v20230321/models.py +0 -20
- tencentcloud/tke/v20180525/models.py +0 -54
- tencentcloud/tke/v20220501/models.py +0 -34
- tencentcloud/vpc/v20170312/models.py +0 -34
- tencentcloud/waf/v20180125/models.py +15 -0
- tencentcloud/wedata/v20210820/models.py +254 -0
- {tencentcloud_sdk_python-3.0.1344.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1344.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/RECORD +63 -63
- {tencentcloud_sdk_python-3.0.1344.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1344.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1344.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:]
|
@@ -333,25 +363,18 @@ class BackupTableContent(AbstractModel):
|
|
333
363
|
def __init__(self):
|
334
364
|
r"""
|
335
365
|
:param _Database: 数据库
|
336
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
337
366
|
:type Database: str
|
338
367
|
:param _Table: 表
|
339
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
340
368
|
:type Table: str
|
341
369
|
:param _TotalBytes: 表总字节数
|
342
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
343
370
|
:type TotalBytes: int
|
344
371
|
:param _VCluster: 虚拟cluster
|
345
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
346
372
|
:type VCluster: str
|
347
373
|
:param _Ips: 表ip
|
348
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
349
374
|
:type Ips: str
|
350
375
|
:param _ZooPath: zk路径
|
351
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
352
376
|
:type ZooPath: str
|
353
377
|
:param _Rip: cvm的ip地址
|
354
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
355
378
|
:type Rip: str
|
356
379
|
"""
|
357
380
|
self._Database = None
|
@@ -365,7 +388,6 @@ class BackupTableContent(AbstractModel):
|
|
365
388
|
@property
|
366
389
|
def Database(self):
|
367
390
|
"""数据库
|
368
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
369
391
|
:rtype: str
|
370
392
|
"""
|
371
393
|
return self._Database
|
@@ -377,7 +399,6 @@ class BackupTableContent(AbstractModel):
|
|
377
399
|
@property
|
378
400
|
def Table(self):
|
379
401
|
"""表
|
380
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
381
402
|
:rtype: str
|
382
403
|
"""
|
383
404
|
return self._Table
|
@@ -389,7 +410,6 @@ class BackupTableContent(AbstractModel):
|
|
389
410
|
@property
|
390
411
|
def TotalBytes(self):
|
391
412
|
"""表总字节数
|
392
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
393
413
|
:rtype: int
|
394
414
|
"""
|
395
415
|
return self._TotalBytes
|
@@ -401,7 +421,6 @@ class BackupTableContent(AbstractModel):
|
|
401
421
|
@property
|
402
422
|
def VCluster(self):
|
403
423
|
"""虚拟cluster
|
404
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
405
424
|
:rtype: str
|
406
425
|
"""
|
407
426
|
return self._VCluster
|
@@ -413,7 +432,6 @@ class BackupTableContent(AbstractModel):
|
|
413
432
|
@property
|
414
433
|
def Ips(self):
|
415
434
|
"""表ip
|
416
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
417
435
|
:rtype: str
|
418
436
|
"""
|
419
437
|
return self._Ips
|
@@ -425,7 +443,6 @@ class BackupTableContent(AbstractModel):
|
|
425
443
|
@property
|
426
444
|
def ZooPath(self):
|
427
445
|
"""zk路径
|
428
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
429
446
|
:rtype: str
|
430
447
|
"""
|
431
448
|
return self._ZooPath
|
@@ -437,7 +454,6 @@ class BackupTableContent(AbstractModel):
|
|
437
454
|
@property
|
438
455
|
def Rip(self):
|
439
456
|
"""cvm的ip地址
|
440
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
441
457
|
:rtype: str
|
442
458
|
"""
|
443
459
|
return self._Rip
|
@@ -630,7 +646,6 @@ class ClusterConfigsInfoFromEMR(AbstractModel):
|
|
630
646
|
:param _NeedRestart: 用于表示当前配置文件是不是有过修改后没有重启,提醒用户需要重启
|
631
647
|
:type NeedRestart: int
|
632
648
|
:param _FilePath: 保存配置文件的路径
|
633
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
634
649
|
:type FilePath: str
|
635
650
|
"""
|
636
651
|
self._FileName = None
|
@@ -698,7 +713,6 @@ class ClusterConfigsInfoFromEMR(AbstractModel):
|
|
698
713
|
@property
|
699
714
|
def FilePath(self):
|
700
715
|
"""保存配置文件的路径
|
701
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
702
716
|
:rtype: str
|
703
717
|
"""
|
704
718
|
return self._FilePath
|
@@ -733,10 +747,8 @@ class ClusterInfo(AbstractModel):
|
|
733
747
|
def __init__(self):
|
734
748
|
r"""
|
735
749
|
:param _ClusterName: vcluster名字
|
736
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
737
750
|
:type ClusterName: str
|
738
751
|
:param _NodeIps: 当前cluster的IP列表
|
739
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
740
752
|
:type NodeIps: list of str
|
741
753
|
"""
|
742
754
|
self._ClusterName = None
|
@@ -745,7 +757,6 @@ class ClusterInfo(AbstractModel):
|
|
745
757
|
@property
|
746
758
|
def ClusterName(self):
|
747
759
|
"""vcluster名字
|
748
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
749
760
|
:rtype: str
|
750
761
|
"""
|
751
762
|
return self._ClusterName
|
@@ -757,7 +768,6 @@ class ClusterInfo(AbstractModel):
|
|
757
768
|
@property
|
758
769
|
def NodeIps(self):
|
759
770
|
"""当前cluster的IP列表
|
760
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
761
771
|
:rtype: list of str
|
762
772
|
"""
|
763
773
|
return self._NodeIps
|
@@ -1345,10 +1355,8 @@ class CreateInstanceNewResponse(AbstractModel):
|
|
1345
1355
|
def __init__(self):
|
1346
1356
|
r"""
|
1347
1357
|
:param _FlowId: 流程ID
|
1348
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1349
1358
|
:type FlowId: str
|
1350
1359
|
:param _InstanceId: 实例ID
|
1351
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1352
1360
|
:type InstanceId: str
|
1353
1361
|
:param _ErrorMsg: 错误信息
|
1354
1362
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -1364,7 +1372,6 @@ class CreateInstanceNewResponse(AbstractModel):
|
|
1364
1372
|
@property
|
1365
1373
|
def FlowId(self):
|
1366
1374
|
"""流程ID
|
1367
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1368
1375
|
:rtype: str
|
1369
1376
|
"""
|
1370
1377
|
return self._FlowId
|
@@ -1376,7 +1383,6 @@ class CreateInstanceNewResponse(AbstractModel):
|
|
1376
1383
|
@property
|
1377
1384
|
def InstanceId(self):
|
1378
1385
|
"""实例ID
|
1379
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1380
1386
|
:rtype: str
|
1381
1387
|
"""
|
1382
1388
|
return self._InstanceId
|
@@ -1425,11 +1431,9 @@ class DatabasePrivilegeInfo(AbstractModel):
|
|
1425
1431
|
r"""
|
1426
1432
|
:param _DatabaseName: 数据库名称
|
1427
1433
|
:type DatabaseName: str
|
1428
|
-
:param _DatabasePrivileges:
|
1429
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1434
|
+
:param _DatabasePrivileges: 库表权限,SELECT、INSERT_ALL、ALTER、TRUNCATE、DROP_TABLE、CREATE_TABLE、DROP_DATABASE
|
1430
1435
|
:type DatabasePrivileges: list of str
|
1431
|
-
:param _TablePrivilegeList:
|
1432
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1436
|
+
:param _TablePrivilegeList: 库下面的表权限
|
1433
1437
|
:type TablePrivilegeList: list of TablePrivilegeInfo
|
1434
1438
|
"""
|
1435
1439
|
self._DatabaseName = None
|
@@ -1449,8 +1453,7 @@ class DatabasePrivilegeInfo(AbstractModel):
|
|
1449
1453
|
|
1450
1454
|
@property
|
1451
1455
|
def DatabasePrivileges(self):
|
1452
|
-
"""
|
1453
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1456
|
+
"""库表权限,SELECT、INSERT_ALL、ALTER、TRUNCATE、DROP_TABLE、CREATE_TABLE、DROP_DATABASE
|
1454
1457
|
:rtype: list of str
|
1455
1458
|
"""
|
1456
1459
|
return self._DatabasePrivileges
|
@@ -1461,8 +1464,7 @@ class DatabasePrivilegeInfo(AbstractModel):
|
|
1461
1464
|
|
1462
1465
|
@property
|
1463
1466
|
def TablePrivilegeList(self):
|
1464
|
-
"""
|
1465
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1467
|
+
"""库下面的表权限
|
1466
1468
|
:rtype: list of TablePrivilegeInfo
|
1467
1469
|
"""
|
1468
1470
|
return self._TablePrivilegeList
|
@@ -1644,7 +1646,6 @@ class DescribeBackUpJobDetailResponse(AbstractModel):
|
|
1644
1646
|
def __init__(self):
|
1645
1647
|
r"""
|
1646
1648
|
:param _TableContents: 备份表详情
|
1647
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1648
1649
|
:type TableContents: list of BackupTableContent
|
1649
1650
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1650
1651
|
:type RequestId: str
|
@@ -1655,7 +1656,6 @@ class DescribeBackUpJobDetailResponse(AbstractModel):
|
|
1655
1656
|
@property
|
1656
1657
|
def TableContents(self):
|
1657
1658
|
"""备份表详情
|
1658
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1659
1659
|
:rtype: list of BackupTableContent
|
1660
1660
|
"""
|
1661
1661
|
return self._TableContents
|
@@ -1790,18 +1790,22 @@ class DescribeBackUpJobResponse(AbstractModel):
|
|
1790
1790
|
def __init__(self):
|
1791
1791
|
r"""
|
1792
1792
|
:param _BackUpJobs: 任务列表
|
1793
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1794
1793
|
:type BackUpJobs: list of BackUpJobDisplay
|
1794
|
+
:param _ErrorMsg: 错误描述
|
1795
|
+
:type ErrorMsg: str
|
1796
|
+
:param _TotalCount: 数量
|
1797
|
+
:type TotalCount: int
|
1795
1798
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1796
1799
|
:type RequestId: str
|
1797
1800
|
"""
|
1798
1801
|
self._BackUpJobs = None
|
1802
|
+
self._ErrorMsg = None
|
1803
|
+
self._TotalCount = None
|
1799
1804
|
self._RequestId = None
|
1800
1805
|
|
1801
1806
|
@property
|
1802
1807
|
def BackUpJobs(self):
|
1803
1808
|
"""任务列表
|
1804
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1805
1809
|
:rtype: list of BackUpJobDisplay
|
1806
1810
|
"""
|
1807
1811
|
return self._BackUpJobs
|
@@ -1810,6 +1814,28 @@ class DescribeBackUpJobResponse(AbstractModel):
|
|
1810
1814
|
def BackUpJobs(self, BackUpJobs):
|
1811
1815
|
self._BackUpJobs = BackUpJobs
|
1812
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
|
+
|
1813
1839
|
@property
|
1814
1840
|
def RequestId(self):
|
1815
1841
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -1829,6 +1855,8 @@ class DescribeBackUpJobResponse(AbstractModel):
|
|
1829
1855
|
obj = BackUpJobDisplay()
|
1830
1856
|
obj._deserialize(item)
|
1831
1857
|
self._BackUpJobs.append(obj)
|
1858
|
+
self._ErrorMsg = params.get("ErrorMsg")
|
1859
|
+
self._TotalCount = params.get("TotalCount")
|
1832
1860
|
self._RequestId = params.get("RequestId")
|
1833
1861
|
|
1834
1862
|
|
@@ -2048,10 +2076,13 @@ class DescribeBackUpTablesResponse(AbstractModel):
|
|
2048
2076
|
r"""
|
2049
2077
|
:param _AvailableTables: 可备份表列表
|
2050
2078
|
:type AvailableTables: list of BackupTableContent
|
2079
|
+
:param _ErrorMsg: 错误描述
|
2080
|
+
:type ErrorMsg: str
|
2051
2081
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2052
2082
|
:type RequestId: str
|
2053
2083
|
"""
|
2054
2084
|
self._AvailableTables = None
|
2085
|
+
self._ErrorMsg = None
|
2055
2086
|
self._RequestId = None
|
2056
2087
|
|
2057
2088
|
@property
|
@@ -2065,6 +2096,17 @@ class DescribeBackUpTablesResponse(AbstractModel):
|
|
2065
2096
|
def AvailableTables(self, AvailableTables):
|
2066
2097
|
self._AvailableTables = AvailableTables
|
2067
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
|
+
|
2068
2110
|
@property
|
2069
2111
|
def RequestId(self):
|
2070
2112
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -2084,6 +2126,7 @@ class DescribeBackUpTablesResponse(AbstractModel):
|
|
2084
2126
|
obj = BackupTableContent()
|
2085
2127
|
obj._deserialize(item)
|
2086
2128
|
self._AvailableTables.append(obj)
|
2129
|
+
self._ErrorMsg = params.get("ErrorMsg")
|
2087
2130
|
self._RequestId = params.get("RequestId")
|
2088
2131
|
|
2089
2132
|
|
@@ -2213,7 +2256,6 @@ class DescribeCkSqlApisResponse(AbstractModel):
|
|
2213
2256
|
def __init__(self):
|
2214
2257
|
r"""
|
2215
2258
|
:param _ReturnData: 返回的查询数据,大部分情况是list,也可能是bool
|
2216
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2217
2259
|
:type ReturnData: str
|
2218
2260
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2219
2261
|
:type RequestId: str
|
@@ -2224,7 +2266,6 @@ class DescribeCkSqlApisResponse(AbstractModel):
|
|
2224
2266
|
@property
|
2225
2267
|
def ReturnData(self):
|
2226
2268
|
"""返回的查询数据,大部分情况是list,也可能是bool
|
2227
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2228
2269
|
:rtype: str
|
2229
2270
|
"""
|
2230
2271
|
return self._ReturnData
|
@@ -2894,7 +2935,6 @@ class DescribeInstanceShardsResponse(AbstractModel):
|
|
2894
2935
|
def __init__(self):
|
2895
2936
|
r"""
|
2896
2937
|
:param _InstanceShardsList: 实例shard信息
|
2897
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2898
2938
|
:type InstanceShardsList: str
|
2899
2939
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2900
2940
|
:type RequestId: str
|
@@ -2905,7 +2945,6 @@ class DescribeInstanceShardsResponse(AbstractModel):
|
|
2905
2945
|
@property
|
2906
2946
|
def InstanceShardsList(self):
|
2907
2947
|
"""实例shard信息
|
2908
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2909
2948
|
:rtype: str
|
2910
2949
|
"""
|
2911
2950
|
return self._InstanceShardsList
|
@@ -2977,20 +3016,19 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
2977
3016
|
:param _InstanceState: 集群状态,例如:Serving
|
2978
3017
|
:type InstanceState: str
|
2979
3018
|
:param _FlowCreateTime: 集群操作创建时间
|
2980
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2981
3019
|
:type FlowCreateTime: str
|
2982
3020
|
:param _FlowName: 集群操作名称
|
2983
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2984
3021
|
:type FlowName: str
|
2985
3022
|
:param _FlowProgress: 集群操作进度
|
2986
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2987
3023
|
:type FlowProgress: float
|
2988
3024
|
:param _InstanceStateDesc: 集群状态描述,例如:运行中
|
2989
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2990
3025
|
:type InstanceStateDesc: str
|
2991
3026
|
:param _FlowMsg: 集群流程错误信息,例如:“创建失败,资源不足”
|
2992
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2993
3027
|
:type FlowMsg: str
|
3028
|
+
:param _ProcessName: 当前步骤的名称,例如:”购买资源中“
|
3029
|
+
:type ProcessName: str
|
3030
|
+
:param _ProcessSubName: 当前步骤的名称,例如:”购买资源中“
|
3031
|
+
:type ProcessSubName: str
|
2994
3032
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2995
3033
|
:type RequestId: str
|
2996
3034
|
"""
|
@@ -3000,6 +3038,8 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3000
3038
|
self._FlowProgress = None
|
3001
3039
|
self._InstanceStateDesc = None
|
3002
3040
|
self._FlowMsg = None
|
3041
|
+
self._ProcessName = None
|
3042
|
+
self._ProcessSubName = None
|
3003
3043
|
self._RequestId = None
|
3004
3044
|
|
3005
3045
|
@property
|
@@ -3016,7 +3056,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3016
3056
|
@property
|
3017
3057
|
def FlowCreateTime(self):
|
3018
3058
|
"""集群操作创建时间
|
3019
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3020
3059
|
:rtype: str
|
3021
3060
|
"""
|
3022
3061
|
return self._FlowCreateTime
|
@@ -3028,7 +3067,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3028
3067
|
@property
|
3029
3068
|
def FlowName(self):
|
3030
3069
|
"""集群操作名称
|
3031
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3032
3070
|
:rtype: str
|
3033
3071
|
"""
|
3034
3072
|
return self._FlowName
|
@@ -3040,7 +3078,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3040
3078
|
@property
|
3041
3079
|
def FlowProgress(self):
|
3042
3080
|
"""集群操作进度
|
3043
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3044
3081
|
:rtype: float
|
3045
3082
|
"""
|
3046
3083
|
return self._FlowProgress
|
@@ -3052,7 +3089,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3052
3089
|
@property
|
3053
3090
|
def InstanceStateDesc(self):
|
3054
3091
|
"""集群状态描述,例如:运行中
|
3055
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3056
3092
|
:rtype: str
|
3057
3093
|
"""
|
3058
3094
|
return self._InstanceStateDesc
|
@@ -3064,7 +3100,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3064
3100
|
@property
|
3065
3101
|
def FlowMsg(self):
|
3066
3102
|
"""集群流程错误信息,例如:“创建失败,资源不足”
|
3067
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3068
3103
|
:rtype: str
|
3069
3104
|
"""
|
3070
3105
|
return self._FlowMsg
|
@@ -3073,6 +3108,28 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3073
3108
|
def FlowMsg(self, FlowMsg):
|
3074
3109
|
self._FlowMsg = FlowMsg
|
3075
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
|
+
|
3076
3133
|
@property
|
3077
3134
|
def RequestId(self):
|
3078
3135
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -3092,6 +3149,8 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
3092
3149
|
self._FlowProgress = params.get("FlowProgress")
|
3093
3150
|
self._InstanceStateDesc = params.get("InstanceStateDesc")
|
3094
3151
|
self._FlowMsg = params.get("FlowMsg")
|
3152
|
+
self._ProcessName = params.get("ProcessName")
|
3153
|
+
self._ProcessSubName = params.get("ProcessSubName")
|
3095
3154
|
self._RequestId = params.get("RequestId")
|
3096
3155
|
|
3097
3156
|
|
@@ -3382,7 +3441,6 @@ class DescribeSpecResponse(AbstractModel):
|
|
3382
3441
|
:param _DataSpec: 数据节点规格描述
|
3383
3442
|
:type DataSpec: list of ResourceSpec
|
3384
3443
|
:param _AttachCBSSpec: 云盘列表
|
3385
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3386
3444
|
:type AttachCBSSpec: list of DiskSpec
|
3387
3445
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3388
3446
|
:type RequestId: str
|
@@ -3417,7 +3475,6 @@ class DescribeSpecResponse(AbstractModel):
|
|
3417
3475
|
@property
|
3418
3476
|
def AttachCBSSpec(self):
|
3419
3477
|
"""云盘列表
|
3420
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3421
3478
|
:rtype: list of DiskSpec
|
3422
3479
|
"""
|
3423
3480
|
return self._AttachCBSSpec
|
@@ -3504,7 +3561,6 @@ class DestroyInstanceResponse(AbstractModel):
|
|
3504
3561
|
def __init__(self):
|
3505
3562
|
r"""
|
3506
3563
|
:param _FlowID: 作业id
|
3507
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3508
3564
|
:type FlowID: str
|
3509
3565
|
:param _InstanceID: 集群id
|
3510
3566
|
:type InstanceID: str
|
@@ -3521,7 +3577,6 @@ class DestroyInstanceResponse(AbstractModel):
|
|
3521
3577
|
@property
|
3522
3578
|
def FlowID(self):
|
3523
3579
|
"""作业id
|
3524
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3525
3580
|
:rtype: str
|
3526
3581
|
"""
|
3527
3582
|
return self._FlowID
|
@@ -3978,7 +4033,6 @@ class InstanceDetail(AbstractModel):
|
|
3978
4033
|
def __init__(self):
|
3979
4034
|
r"""
|
3980
4035
|
:param _EnableAlarmStrategy: 告警策略是否可用
|
3981
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3982
4036
|
:type EnableAlarmStrategy: bool
|
3983
4037
|
"""
|
3984
4038
|
self._EnableAlarmStrategy = None
|
@@ -3986,7 +4040,6 @@ class InstanceDetail(AbstractModel):
|
|
3986
4040
|
@property
|
3987
4041
|
def EnableAlarmStrategy(self):
|
3988
4042
|
"""告警策略是否可用
|
3989
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3990
4043
|
:rtype: bool
|
3991
4044
|
"""
|
3992
4045
|
return self._EnableAlarmStrategy
|
@@ -4016,163 +4069,111 @@ class InstanceInfo(AbstractModel):
|
|
4016
4069
|
def __init__(self):
|
4017
4070
|
r"""
|
4018
4071
|
:param _InstanceId: 集群实例ID, "cdw-xxxx" 字符串类型
|
4019
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4020
4072
|
:type InstanceId: str
|
4021
4073
|
:param _InstanceName: 集群实例名称
|
4022
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4023
4074
|
:type InstanceName: str
|
4024
4075
|
:param _Status: 状态,
|
4025
4076
|
Init 创建中; Serving 运行中;
|
4026
4077
|
Deleted已销毁;Deleting 销毁中;
|
4027
4078
|
Modify 集群变更中;
|
4028
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4029
4079
|
:type Status: str
|
4030
4080
|
:param _Version: 版本
|
4031
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4032
4081
|
:type Version: str
|
4033
4082
|
:param _Region: 地域, ap-guangzhou
|
4034
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4035
4083
|
:type Region: str
|
4036
4084
|
:param _Zone: 可用区, ap-guangzhou-3
|
4037
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4038
4085
|
:type Zone: str
|
4039
4086
|
:param _VpcId: 私有网络名称
|
4040
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4041
4087
|
:type VpcId: str
|
4042
4088
|
:param _SubnetId: 子网名称
|
4043
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4044
4089
|
:type SubnetId: str
|
4045
4090
|
:param _PayMode: 付费类型,"hour", "prepay"
|
4046
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4047
4091
|
:type PayMode: str
|
4048
4092
|
:param _CreateTime: 创建时间
|
4049
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4050
4093
|
:type CreateTime: str
|
4051
4094
|
:param _ExpireTime: 过期时间
|
4052
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4053
4095
|
:type ExpireTime: str
|
4054
4096
|
:param _MasterSummary: 数据节点描述信息
|
4055
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4056
4097
|
:type MasterSummary: :class:`tencentcloud.cdwch.v20200915.models.NodesSummary`
|
4057
4098
|
:param _CommonSummary: zookeeper节点描述信息
|
4058
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4059
4099
|
:type CommonSummary: :class:`tencentcloud.cdwch.v20200915.models.NodesSummary`
|
4060
4100
|
:param _HA: 高可用,“true" "false"
|
4061
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4062
4101
|
:type HA: str
|
4063
4102
|
:param _AccessInfo: 访问地址,例如 "10.0.0.1:9000"
|
4064
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4065
4103
|
:type AccessInfo: str
|
4066
4104
|
:param _Id: 记录ID,数值型
|
4067
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4068
4105
|
:type Id: int
|
4069
4106
|
:param _RegionId: regionId, 表示地域
|
4070
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4071
4107
|
:type RegionId: int
|
4072
4108
|
:param _ZoneDesc: 可用区说明,例如 "广州二区"
|
4073
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4074
4109
|
:type ZoneDesc: str
|
4075
4110
|
:param _FlowMsg: 错误流程说明信息
|
4076
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4077
4111
|
:type FlowMsg: str
|
4078
4112
|
:param _StatusDesc: 状态描述,例如“运行中”等
|
4079
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4080
4113
|
:type StatusDesc: str
|
4081
4114
|
:param _RenewFlag: 自动续费标记
|
4082
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4083
4115
|
:type RenewFlag: bool
|
4084
4116
|
:param _Tags: 标签列表
|
4085
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4086
4117
|
:type Tags: list of Tag
|
4087
4118
|
:param _Monitor: 监控信息
|
4088
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4089
4119
|
:type Monitor: str
|
4090
4120
|
:param _HasClsTopic: 是否开通日志
|
4091
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4092
4121
|
:type HasClsTopic: bool
|
4093
4122
|
:param _ClsTopicId: 日志主题ID
|
4094
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4095
4123
|
:type ClsTopicId: str
|
4096
4124
|
:param _ClsLogSetId: 日志集ID
|
4097
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4098
4125
|
:type ClsLogSetId: str
|
4099
4126
|
:param _EnableXMLConfig: 是否支持xml配置管理
|
4100
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4101
4127
|
:type EnableXMLConfig: int
|
4102
4128
|
:param _RegionDesc: 区域
|
4103
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4104
4129
|
:type RegionDesc: str
|
4105
4130
|
:param _Eip: 弹性网卡地址
|
4106
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4107
4131
|
:type Eip: str
|
4108
4132
|
:param _CosMoveFactor: 冷热分层系数
|
4109
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4110
4133
|
:type CosMoveFactor: int
|
4111
4134
|
:param _Kind: external/local/yunti
|
4112
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4113
4135
|
:type Kind: str
|
4114
4136
|
:param _IsElastic: 是否弹性ck
|
4115
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4116
4137
|
:type IsElastic: bool
|
4117
4138
|
:param _InstanceStateInfo: 集群详细状态
|
4118
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4119
4139
|
:type InstanceStateInfo: :class:`tencentcloud.cdwch.v20200915.models.InstanceStateInfo`
|
4120
4140
|
:param _HAZk: ZK高可用
|
4121
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4122
4141
|
:type HAZk: bool
|
4123
4142
|
:param _MountDiskType: 挂载盘,默认0:没有类型;1:裸盘;2:lvm
|
4124
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4125
4143
|
:type MountDiskType: int
|
4126
|
-
:param _CHProxyVip:
|
4127
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4144
|
+
:param _CHProxyVip: chproxy连接ip
|
4128
4145
|
:type CHProxyVip: str
|
4129
4146
|
:param _CosBucketName: cos buket的名字
|
4130
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4131
4147
|
:type CosBucketName: str
|
4132
4148
|
:param _CanAttachCbs: 是否可以挂载云盘
|
4133
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4134
4149
|
:type CanAttachCbs: bool
|
4135
4150
|
:param _CanAttachCbsLvm: 是否可以挂载云盘阵列
|
4136
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4137
4151
|
:type CanAttachCbsLvm: bool
|
4138
4152
|
:param _CanAttachCos: 是否可以挂载cos
|
4139
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4140
4153
|
:type CanAttachCos: bool
|
4141
4154
|
:param _Components: 服务信息
|
4142
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4143
4155
|
:type Components: list of ServiceInfo
|
4144
4156
|
:param _UpgradeVersions: 可升级的内核版本
|
4145
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4146
4157
|
:type UpgradeVersions: str
|
4147
4158
|
:param _EsIndexId: ex-index
|
4148
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4149
4159
|
:type EsIndexId: str
|
4150
4160
|
:param _EsIndexUsername: username
|
4151
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4152
4161
|
:type EsIndexUsername: str
|
4153
4162
|
:param _EsIndexPassword: password
|
4154
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4155
4163
|
:type EsIndexPassword: str
|
4156
4164
|
:param _HasEsIndex: true
|
4157
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4158
4165
|
:type HasEsIndex: bool
|
4159
4166
|
:param _IsSecondaryZone: true
|
4160
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4161
4167
|
:type IsSecondaryZone: bool
|
4162
4168
|
:param _SecondaryZoneInfo: desc
|
4163
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4164
4169
|
:type SecondaryZoneInfo: str
|
4165
4170
|
:param _ClickHouseKeeper: 是否clickhouse-keeper
|
4166
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4167
4171
|
:type ClickHouseKeeper: bool
|
4168
4172
|
:param _Details: 实例扩展信息
|
4169
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4170
4173
|
:type Details: :class:`tencentcloud.cdwch.v20200915.models.InstanceDetail`
|
4171
4174
|
:param _IsWhiteSGs: 安全组白名单
|
4172
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4173
4175
|
:type IsWhiteSGs: bool
|
4174
4176
|
:param _BindSGs: 绑定的安全组
|
4175
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4176
4177
|
:type BindSGs: list of str
|
4177
4178
|
:param _HasPublicCloudClb: 是否开启公网clb
|
4178
4179
|
:type HasPublicCloudClb: bool
|
@@ -4234,7 +4235,6 @@ Modify 集群变更中;
|
|
4234
4235
|
@property
|
4235
4236
|
def InstanceId(self):
|
4236
4237
|
"""集群实例ID, "cdw-xxxx" 字符串类型
|
4237
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4238
4238
|
:rtype: str
|
4239
4239
|
"""
|
4240
4240
|
return self._InstanceId
|
@@ -4246,7 +4246,6 @@ Modify 集群变更中;
|
|
4246
4246
|
@property
|
4247
4247
|
def InstanceName(self):
|
4248
4248
|
"""集群实例名称
|
4249
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4250
4249
|
:rtype: str
|
4251
4250
|
"""
|
4252
4251
|
return self._InstanceName
|
@@ -4261,7 +4260,6 @@ Modify 集群变更中;
|
|
4261
4260
|
Init 创建中; Serving 运行中;
|
4262
4261
|
Deleted已销毁;Deleting 销毁中;
|
4263
4262
|
Modify 集群变更中;
|
4264
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4265
4263
|
:rtype: str
|
4266
4264
|
"""
|
4267
4265
|
return self._Status
|
@@ -4273,7 +4271,6 @@ Modify 集群变更中;
|
|
4273
4271
|
@property
|
4274
4272
|
def Version(self):
|
4275
4273
|
"""版本
|
4276
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4277
4274
|
:rtype: str
|
4278
4275
|
"""
|
4279
4276
|
return self._Version
|
@@ -4285,7 +4282,6 @@ Modify 集群变更中;
|
|
4285
4282
|
@property
|
4286
4283
|
def Region(self):
|
4287
4284
|
"""地域, ap-guangzhou
|
4288
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4289
4285
|
:rtype: str
|
4290
4286
|
"""
|
4291
4287
|
return self._Region
|
@@ -4297,7 +4293,6 @@ Modify 集群变更中;
|
|
4297
4293
|
@property
|
4298
4294
|
def Zone(self):
|
4299
4295
|
"""可用区, ap-guangzhou-3
|
4300
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4301
4296
|
:rtype: str
|
4302
4297
|
"""
|
4303
4298
|
return self._Zone
|
@@ -4309,7 +4304,6 @@ Modify 集群变更中;
|
|
4309
4304
|
@property
|
4310
4305
|
def VpcId(self):
|
4311
4306
|
"""私有网络名称
|
4312
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4313
4307
|
:rtype: str
|
4314
4308
|
"""
|
4315
4309
|
return self._VpcId
|
@@ -4321,7 +4315,6 @@ Modify 集群变更中;
|
|
4321
4315
|
@property
|
4322
4316
|
def SubnetId(self):
|
4323
4317
|
"""子网名称
|
4324
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4325
4318
|
:rtype: str
|
4326
4319
|
"""
|
4327
4320
|
return self._SubnetId
|
@@ -4333,7 +4326,6 @@ Modify 集群变更中;
|
|
4333
4326
|
@property
|
4334
4327
|
def PayMode(self):
|
4335
4328
|
"""付费类型,"hour", "prepay"
|
4336
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4337
4329
|
:rtype: str
|
4338
4330
|
"""
|
4339
4331
|
return self._PayMode
|
@@ -4345,7 +4337,6 @@ Modify 集群变更中;
|
|
4345
4337
|
@property
|
4346
4338
|
def CreateTime(self):
|
4347
4339
|
"""创建时间
|
4348
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4349
4340
|
:rtype: str
|
4350
4341
|
"""
|
4351
4342
|
return self._CreateTime
|
@@ -4357,7 +4348,6 @@ Modify 集群变更中;
|
|
4357
4348
|
@property
|
4358
4349
|
def ExpireTime(self):
|
4359
4350
|
"""过期时间
|
4360
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4361
4351
|
:rtype: str
|
4362
4352
|
"""
|
4363
4353
|
return self._ExpireTime
|
@@ -4369,7 +4359,6 @@ Modify 集群变更中;
|
|
4369
4359
|
@property
|
4370
4360
|
def MasterSummary(self):
|
4371
4361
|
"""数据节点描述信息
|
4372
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4373
4362
|
:rtype: :class:`tencentcloud.cdwch.v20200915.models.NodesSummary`
|
4374
4363
|
"""
|
4375
4364
|
return self._MasterSummary
|
@@ -4381,7 +4370,6 @@ Modify 集群变更中;
|
|
4381
4370
|
@property
|
4382
4371
|
def CommonSummary(self):
|
4383
4372
|
"""zookeeper节点描述信息
|
4384
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4385
4373
|
:rtype: :class:`tencentcloud.cdwch.v20200915.models.NodesSummary`
|
4386
4374
|
"""
|
4387
4375
|
return self._CommonSummary
|
@@ -4393,7 +4381,6 @@ Modify 集群变更中;
|
|
4393
4381
|
@property
|
4394
4382
|
def HA(self):
|
4395
4383
|
"""高可用,“true" "false"
|
4396
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4397
4384
|
:rtype: str
|
4398
4385
|
"""
|
4399
4386
|
return self._HA
|
@@ -4405,7 +4392,6 @@ Modify 集群变更中;
|
|
4405
4392
|
@property
|
4406
4393
|
def AccessInfo(self):
|
4407
4394
|
"""访问地址,例如 "10.0.0.1:9000"
|
4408
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4409
4395
|
:rtype: str
|
4410
4396
|
"""
|
4411
4397
|
return self._AccessInfo
|
@@ -4417,7 +4403,6 @@ Modify 集群变更中;
|
|
4417
4403
|
@property
|
4418
4404
|
def Id(self):
|
4419
4405
|
"""记录ID,数值型
|
4420
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4421
4406
|
:rtype: int
|
4422
4407
|
"""
|
4423
4408
|
return self._Id
|
@@ -4429,7 +4414,6 @@ Modify 集群变更中;
|
|
4429
4414
|
@property
|
4430
4415
|
def RegionId(self):
|
4431
4416
|
"""regionId, 表示地域
|
4432
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4433
4417
|
:rtype: int
|
4434
4418
|
"""
|
4435
4419
|
return self._RegionId
|
@@ -4441,7 +4425,6 @@ Modify 集群变更中;
|
|
4441
4425
|
@property
|
4442
4426
|
def ZoneDesc(self):
|
4443
4427
|
"""可用区说明,例如 "广州二区"
|
4444
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4445
4428
|
:rtype: str
|
4446
4429
|
"""
|
4447
4430
|
return self._ZoneDesc
|
@@ -4453,7 +4436,6 @@ Modify 集群变更中;
|
|
4453
4436
|
@property
|
4454
4437
|
def FlowMsg(self):
|
4455
4438
|
"""错误流程说明信息
|
4456
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4457
4439
|
:rtype: str
|
4458
4440
|
"""
|
4459
4441
|
return self._FlowMsg
|
@@ -4465,7 +4447,6 @@ Modify 集群变更中;
|
|
4465
4447
|
@property
|
4466
4448
|
def StatusDesc(self):
|
4467
4449
|
"""状态描述,例如“运行中”等
|
4468
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4469
4450
|
:rtype: str
|
4470
4451
|
"""
|
4471
4452
|
return self._StatusDesc
|
@@ -4477,7 +4458,6 @@ Modify 集群变更中;
|
|
4477
4458
|
@property
|
4478
4459
|
def RenewFlag(self):
|
4479
4460
|
"""自动续费标记
|
4480
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4481
4461
|
:rtype: bool
|
4482
4462
|
"""
|
4483
4463
|
return self._RenewFlag
|
@@ -4489,7 +4469,6 @@ Modify 集群变更中;
|
|
4489
4469
|
@property
|
4490
4470
|
def Tags(self):
|
4491
4471
|
"""标签列表
|
4492
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4493
4472
|
:rtype: list of Tag
|
4494
4473
|
"""
|
4495
4474
|
return self._Tags
|
@@ -4501,7 +4480,6 @@ Modify 集群变更中;
|
|
4501
4480
|
@property
|
4502
4481
|
def Monitor(self):
|
4503
4482
|
"""监控信息
|
4504
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4505
4483
|
:rtype: str
|
4506
4484
|
"""
|
4507
4485
|
return self._Monitor
|
@@ -4513,7 +4491,6 @@ Modify 集群变更中;
|
|
4513
4491
|
@property
|
4514
4492
|
def HasClsTopic(self):
|
4515
4493
|
"""是否开通日志
|
4516
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4517
4494
|
:rtype: bool
|
4518
4495
|
"""
|
4519
4496
|
return self._HasClsTopic
|
@@ -4525,7 +4502,6 @@ Modify 集群变更中;
|
|
4525
4502
|
@property
|
4526
4503
|
def ClsTopicId(self):
|
4527
4504
|
"""日志主题ID
|
4528
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4529
4505
|
:rtype: str
|
4530
4506
|
"""
|
4531
4507
|
return self._ClsTopicId
|
@@ -4537,7 +4513,6 @@ Modify 集群变更中;
|
|
4537
4513
|
@property
|
4538
4514
|
def ClsLogSetId(self):
|
4539
4515
|
"""日志集ID
|
4540
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4541
4516
|
:rtype: str
|
4542
4517
|
"""
|
4543
4518
|
return self._ClsLogSetId
|
@@ -4549,7 +4524,6 @@ Modify 集群变更中;
|
|
4549
4524
|
@property
|
4550
4525
|
def EnableXMLConfig(self):
|
4551
4526
|
"""是否支持xml配置管理
|
4552
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4553
4527
|
:rtype: int
|
4554
4528
|
"""
|
4555
4529
|
return self._EnableXMLConfig
|
@@ -4561,7 +4535,6 @@ Modify 集群变更中;
|
|
4561
4535
|
@property
|
4562
4536
|
def RegionDesc(self):
|
4563
4537
|
"""区域
|
4564
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4565
4538
|
:rtype: str
|
4566
4539
|
"""
|
4567
4540
|
return self._RegionDesc
|
@@ -4573,7 +4546,6 @@ Modify 集群变更中;
|
|
4573
4546
|
@property
|
4574
4547
|
def Eip(self):
|
4575
4548
|
"""弹性网卡地址
|
4576
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4577
4549
|
:rtype: str
|
4578
4550
|
"""
|
4579
4551
|
return self._Eip
|
@@ -4585,7 +4557,6 @@ Modify 集群变更中;
|
|
4585
4557
|
@property
|
4586
4558
|
def CosMoveFactor(self):
|
4587
4559
|
"""冷热分层系数
|
4588
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4589
4560
|
:rtype: int
|
4590
4561
|
"""
|
4591
4562
|
return self._CosMoveFactor
|
@@ -4597,7 +4568,6 @@ Modify 集群变更中;
|
|
4597
4568
|
@property
|
4598
4569
|
def Kind(self):
|
4599
4570
|
"""external/local/yunti
|
4600
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4601
4571
|
:rtype: str
|
4602
4572
|
"""
|
4603
4573
|
return self._Kind
|
@@ -4609,7 +4579,6 @@ Modify 集群变更中;
|
|
4609
4579
|
@property
|
4610
4580
|
def IsElastic(self):
|
4611
4581
|
"""是否弹性ck
|
4612
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4613
4582
|
:rtype: bool
|
4614
4583
|
"""
|
4615
4584
|
return self._IsElastic
|
@@ -4621,7 +4590,6 @@ Modify 集群变更中;
|
|
4621
4590
|
@property
|
4622
4591
|
def InstanceStateInfo(self):
|
4623
4592
|
"""集群详细状态
|
4624
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4625
4593
|
:rtype: :class:`tencentcloud.cdwch.v20200915.models.InstanceStateInfo`
|
4626
4594
|
"""
|
4627
4595
|
return self._InstanceStateInfo
|
@@ -4633,7 +4601,6 @@ Modify 集群变更中;
|
|
4633
4601
|
@property
|
4634
4602
|
def HAZk(self):
|
4635
4603
|
"""ZK高可用
|
4636
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4637
4604
|
:rtype: bool
|
4638
4605
|
"""
|
4639
4606
|
return self._HAZk
|
@@ -4645,7 +4612,6 @@ Modify 集群变更中;
|
|
4645
4612
|
@property
|
4646
4613
|
def MountDiskType(self):
|
4647
4614
|
"""挂载盘,默认0:没有类型;1:裸盘;2:lvm
|
4648
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4649
4615
|
:rtype: int
|
4650
4616
|
"""
|
4651
4617
|
return self._MountDiskType
|
@@ -4656,8 +4622,7 @@ Modify 集群变更中;
|
|
4656
4622
|
|
4657
4623
|
@property
|
4658
4624
|
def CHProxyVip(self):
|
4659
|
-
"""
|
4660
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4625
|
+
"""chproxy连接ip
|
4661
4626
|
:rtype: str
|
4662
4627
|
"""
|
4663
4628
|
return self._CHProxyVip
|
@@ -4669,7 +4634,6 @@ Modify 集群变更中;
|
|
4669
4634
|
@property
|
4670
4635
|
def CosBucketName(self):
|
4671
4636
|
"""cos buket的名字
|
4672
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4673
4637
|
:rtype: str
|
4674
4638
|
"""
|
4675
4639
|
return self._CosBucketName
|
@@ -4681,7 +4645,6 @@ Modify 集群变更中;
|
|
4681
4645
|
@property
|
4682
4646
|
def CanAttachCbs(self):
|
4683
4647
|
"""是否可以挂载云盘
|
4684
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4685
4648
|
:rtype: bool
|
4686
4649
|
"""
|
4687
4650
|
return self._CanAttachCbs
|
@@ -4693,7 +4656,6 @@ Modify 集群变更中;
|
|
4693
4656
|
@property
|
4694
4657
|
def CanAttachCbsLvm(self):
|
4695
4658
|
"""是否可以挂载云盘阵列
|
4696
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4697
4659
|
:rtype: bool
|
4698
4660
|
"""
|
4699
4661
|
return self._CanAttachCbsLvm
|
@@ -4705,7 +4667,6 @@ Modify 集群变更中;
|
|
4705
4667
|
@property
|
4706
4668
|
def CanAttachCos(self):
|
4707
4669
|
"""是否可以挂载cos
|
4708
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4709
4670
|
:rtype: bool
|
4710
4671
|
"""
|
4711
4672
|
return self._CanAttachCos
|
@@ -4717,7 +4678,6 @@ Modify 集群变更中;
|
|
4717
4678
|
@property
|
4718
4679
|
def Components(self):
|
4719
4680
|
"""服务信息
|
4720
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4721
4681
|
:rtype: list of ServiceInfo
|
4722
4682
|
"""
|
4723
4683
|
return self._Components
|
@@ -4729,7 +4689,6 @@ Modify 集群变更中;
|
|
4729
4689
|
@property
|
4730
4690
|
def UpgradeVersions(self):
|
4731
4691
|
"""可升级的内核版本
|
4732
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4733
4692
|
:rtype: str
|
4734
4693
|
"""
|
4735
4694
|
return self._UpgradeVersions
|
@@ -4741,7 +4700,6 @@ Modify 集群变更中;
|
|
4741
4700
|
@property
|
4742
4701
|
def EsIndexId(self):
|
4743
4702
|
"""ex-index
|
4744
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4745
4703
|
:rtype: str
|
4746
4704
|
"""
|
4747
4705
|
return self._EsIndexId
|
@@ -4753,7 +4711,6 @@ Modify 集群变更中;
|
|
4753
4711
|
@property
|
4754
4712
|
def EsIndexUsername(self):
|
4755
4713
|
"""username
|
4756
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4757
4714
|
:rtype: str
|
4758
4715
|
"""
|
4759
4716
|
return self._EsIndexUsername
|
@@ -4765,7 +4722,6 @@ Modify 集群变更中;
|
|
4765
4722
|
@property
|
4766
4723
|
def EsIndexPassword(self):
|
4767
4724
|
"""password
|
4768
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4769
4725
|
:rtype: str
|
4770
4726
|
"""
|
4771
4727
|
return self._EsIndexPassword
|
@@ -4777,7 +4733,6 @@ Modify 集群变更中;
|
|
4777
4733
|
@property
|
4778
4734
|
def HasEsIndex(self):
|
4779
4735
|
"""true
|
4780
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4781
4736
|
:rtype: bool
|
4782
4737
|
"""
|
4783
4738
|
return self._HasEsIndex
|
@@ -4789,7 +4744,6 @@ Modify 集群变更中;
|
|
4789
4744
|
@property
|
4790
4745
|
def IsSecondaryZone(self):
|
4791
4746
|
"""true
|
4792
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4793
4747
|
:rtype: bool
|
4794
4748
|
"""
|
4795
4749
|
return self._IsSecondaryZone
|
@@ -4801,7 +4755,6 @@ Modify 集群变更中;
|
|
4801
4755
|
@property
|
4802
4756
|
def SecondaryZoneInfo(self):
|
4803
4757
|
"""desc
|
4804
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4805
4758
|
:rtype: str
|
4806
4759
|
"""
|
4807
4760
|
return self._SecondaryZoneInfo
|
@@ -4813,7 +4766,6 @@ Modify 集群变更中;
|
|
4813
4766
|
@property
|
4814
4767
|
def ClickHouseKeeper(self):
|
4815
4768
|
"""是否clickhouse-keeper
|
4816
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4817
4769
|
:rtype: bool
|
4818
4770
|
"""
|
4819
4771
|
return self._ClickHouseKeeper
|
@@ -4825,7 +4777,6 @@ Modify 集群变更中;
|
|
4825
4777
|
@property
|
4826
4778
|
def Details(self):
|
4827
4779
|
"""实例扩展信息
|
4828
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4829
4780
|
:rtype: :class:`tencentcloud.cdwch.v20200915.models.InstanceDetail`
|
4830
4781
|
"""
|
4831
4782
|
return self._Details
|
@@ -4837,7 +4788,6 @@ Modify 集群变更中;
|
|
4837
4788
|
@property
|
4838
4789
|
def IsWhiteSGs(self):
|
4839
4790
|
"""安全组白名单
|
4840
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4841
4791
|
:rtype: bool
|
4842
4792
|
"""
|
4843
4793
|
return self._IsWhiteSGs
|
@@ -4849,7 +4799,6 @@ Modify 集群变更中;
|
|
4849
4799
|
@property
|
4850
4800
|
def BindSGs(self):
|
4851
4801
|
"""绑定的安全组
|
4852
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4853
4802
|
:rtype: list of str
|
4854
4803
|
"""
|
4855
4804
|
return self._BindSGs
|
@@ -4976,22 +4925,16 @@ class InstanceNode(AbstractModel):
|
|
4976
4925
|
:param _NodeGroups: 节点所属的分组信息
|
4977
4926
|
:type NodeGroups: list of GroupInfo
|
4978
4927
|
:param _Rip: VPC IP
|
4979
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4980
4928
|
:type Rip: str
|
4981
4929
|
:param _IsCHProxy: ture的时候表示该节点上部署了chproxy进程
|
4982
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4983
4930
|
:type IsCHProxy: bool
|
4984
4931
|
:param _Status: 节点状态
|
4985
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4986
4932
|
:type Status: str
|
4987
4933
|
:param _UUID: 节点uuid
|
4988
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4989
4934
|
:type UUID: str
|
4990
4935
|
:param _Zone: 区
|
4991
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4992
4936
|
:type Zone: str
|
4993
4937
|
:param _ZoneDesc: 区描述
|
4994
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4995
4938
|
:type ZoneDesc: str
|
4996
4939
|
:param _RealResourceId: 真实资源id
|
4997
4940
|
:type RealResourceId: str
|
@@ -5103,7 +5046,6 @@ class InstanceNode(AbstractModel):
|
|
5103
5046
|
@property
|
5104
5047
|
def Rip(self):
|
5105
5048
|
"""VPC IP
|
5106
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5107
5049
|
:rtype: str
|
5108
5050
|
"""
|
5109
5051
|
return self._Rip
|
@@ -5115,7 +5057,6 @@ class InstanceNode(AbstractModel):
|
|
5115
5057
|
@property
|
5116
5058
|
def IsCHProxy(self):
|
5117
5059
|
"""ture的时候表示该节点上部署了chproxy进程
|
5118
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5119
5060
|
:rtype: bool
|
5120
5061
|
"""
|
5121
5062
|
return self._IsCHProxy
|
@@ -5127,7 +5068,6 @@ class InstanceNode(AbstractModel):
|
|
5127
5068
|
@property
|
5128
5069
|
def Status(self):
|
5129
5070
|
"""节点状态
|
5130
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5131
5071
|
:rtype: str
|
5132
5072
|
"""
|
5133
5073
|
return self._Status
|
@@ -5139,7 +5079,6 @@ class InstanceNode(AbstractModel):
|
|
5139
5079
|
@property
|
5140
5080
|
def UUID(self):
|
5141
5081
|
"""节点uuid
|
5142
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5143
5082
|
:rtype: str
|
5144
5083
|
"""
|
5145
5084
|
return self._UUID
|
@@ -5151,7 +5090,6 @@ class InstanceNode(AbstractModel):
|
|
5151
5090
|
@property
|
5152
5091
|
def Zone(self):
|
5153
5092
|
"""区
|
5154
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5155
5093
|
:rtype: str
|
5156
5094
|
"""
|
5157
5095
|
return self._Zone
|
@@ -5163,7 +5101,6 @@ class InstanceNode(AbstractModel):
|
|
5163
5101
|
@property
|
5164
5102
|
def ZoneDesc(self):
|
5165
5103
|
"""区描述
|
5166
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5167
5104
|
:rtype: str
|
5168
5105
|
"""
|
5169
5106
|
return self._ZoneDesc
|
@@ -5223,31 +5160,22 @@ class InstanceStateInfo(AbstractModel):
|
|
5223
5160
|
def __init__(self):
|
5224
5161
|
r"""
|
5225
5162
|
:param _InstanceState: 集群状态,例如:Serving
|
5226
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5227
5163
|
:type InstanceState: str
|
5228
5164
|
:param _FlowCreateTime: 集群操作创建时间
|
5229
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5230
5165
|
:type FlowCreateTime: str
|
5231
5166
|
:param _FlowName: 集群操作名称
|
5232
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5233
5167
|
:type FlowName: str
|
5234
5168
|
:param _FlowProgress: 集群操作进度
|
5235
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5236
5169
|
:type FlowProgress: int
|
5237
5170
|
:param _InstanceStateDesc: 集群状态描述,例如:运行中
|
5238
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5239
5171
|
:type InstanceStateDesc: str
|
5240
5172
|
:param _FlowMsg: 集群流程错误信息,例如:“创建失败,资源不足”
|
5241
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5242
5173
|
:type FlowMsg: str
|
5243
5174
|
:param _ProcessName: 当前步骤的名称,例如:”购买资源中“
|
5244
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5245
5175
|
:type ProcessName: str
|
5246
5176
|
:param _RequestId: 请求id
|
5247
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5248
5177
|
:type RequestId: str
|
5249
5178
|
:param _ProcessSubName: 流程的二级名称
|
5250
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5251
5179
|
:type ProcessSubName: str
|
5252
5180
|
"""
|
5253
5181
|
self._InstanceState = None
|
@@ -5263,7 +5191,6 @@ class InstanceStateInfo(AbstractModel):
|
|
5263
5191
|
@property
|
5264
5192
|
def InstanceState(self):
|
5265
5193
|
"""集群状态,例如:Serving
|
5266
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5267
5194
|
:rtype: str
|
5268
5195
|
"""
|
5269
5196
|
return self._InstanceState
|
@@ -5275,7 +5202,6 @@ class InstanceStateInfo(AbstractModel):
|
|
5275
5202
|
@property
|
5276
5203
|
def FlowCreateTime(self):
|
5277
5204
|
"""集群操作创建时间
|
5278
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5279
5205
|
:rtype: str
|
5280
5206
|
"""
|
5281
5207
|
return self._FlowCreateTime
|
@@ -5287,7 +5213,6 @@ class InstanceStateInfo(AbstractModel):
|
|
5287
5213
|
@property
|
5288
5214
|
def FlowName(self):
|
5289
5215
|
"""集群操作名称
|
5290
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5291
5216
|
:rtype: str
|
5292
5217
|
"""
|
5293
5218
|
return self._FlowName
|
@@ -5299,7 +5224,6 @@ class InstanceStateInfo(AbstractModel):
|
|
5299
5224
|
@property
|
5300
5225
|
def FlowProgress(self):
|
5301
5226
|
"""集群操作进度
|
5302
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5303
5227
|
:rtype: int
|
5304
5228
|
"""
|
5305
5229
|
return self._FlowProgress
|
@@ -5311,7 +5235,6 @@ class InstanceStateInfo(AbstractModel):
|
|
5311
5235
|
@property
|
5312
5236
|
def InstanceStateDesc(self):
|
5313
5237
|
"""集群状态描述,例如:运行中
|
5314
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5315
5238
|
:rtype: str
|
5316
5239
|
"""
|
5317
5240
|
return self._InstanceStateDesc
|
@@ -5323,7 +5246,6 @@ class InstanceStateInfo(AbstractModel):
|
|
5323
5246
|
@property
|
5324
5247
|
def FlowMsg(self):
|
5325
5248
|
"""集群流程错误信息,例如:“创建失败,资源不足”
|
5326
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5327
5249
|
:rtype: str
|
5328
5250
|
"""
|
5329
5251
|
return self._FlowMsg
|
@@ -5335,7 +5257,6 @@ class InstanceStateInfo(AbstractModel):
|
|
5335
5257
|
@property
|
5336
5258
|
def ProcessName(self):
|
5337
5259
|
"""当前步骤的名称,例如:”购买资源中“
|
5338
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5339
5260
|
:rtype: str
|
5340
5261
|
"""
|
5341
5262
|
return self._ProcessName
|
@@ -5347,7 +5268,6 @@ class InstanceStateInfo(AbstractModel):
|
|
5347
5268
|
@property
|
5348
5269
|
def RequestId(self):
|
5349
5270
|
"""请求id
|
5350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5351
5271
|
:rtype: str
|
5352
5272
|
"""
|
5353
5273
|
return self._RequestId
|
@@ -5359,7 +5279,6 @@ class InstanceStateInfo(AbstractModel):
|
|
5359
5279
|
@property
|
5360
5280
|
def ProcessSubName(self):
|
5361
5281
|
"""流程的二级名称
|
5362
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5363
5282
|
:rtype: str
|
5364
5283
|
"""
|
5365
5284
|
return self._ProcessSubName
|
@@ -5710,7 +5629,6 @@ class ModifyInstanceKeyValConfigsResponse(AbstractModel):
|
|
5710
5629
|
def __init__(self):
|
5711
5630
|
r"""
|
5712
5631
|
:param _ErrorMsg: 错误信息
|
5713
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5714
5632
|
:type ErrorMsg: str
|
5715
5633
|
:param _FlowId: ID
|
5716
5634
|
:type FlowId: int
|
@@ -5724,7 +5642,6 @@ class ModifyInstanceKeyValConfigsResponse(AbstractModel):
|
|
5724
5642
|
@property
|
5725
5643
|
def ErrorMsg(self):
|
5726
5644
|
"""错误信息
|
5727
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5728
5645
|
:rtype: str
|
5729
5646
|
"""
|
5730
5647
|
return self._ErrorMsg
|
@@ -5994,25 +5911,18 @@ class NodesSummary(AbstractModel):
|
|
5994
5911
|
:param _DiskDesc: 磁盘描述
|
5995
5912
|
:type DiskDesc: str
|
5996
5913
|
:param _AttachCBSSpec: 挂载云盘信息
|
5997
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5998
5914
|
:type AttachCBSSpec: :class:`tencentcloud.cdwch.v20200915.models.AttachCBSSpec`
|
5999
5915
|
:param _SubProductType: 子产品类型
|
6000
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6001
5916
|
:type SubProductType: str
|
6002
5917
|
:param _SpecCore: 规格对应的核数
|
6003
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6004
5918
|
:type SpecCore: int
|
6005
5919
|
:param _SpecMemory: 规格对应的内存大小
|
6006
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6007
5920
|
:type SpecMemory: int
|
6008
5921
|
:param _DiskCount: 磁盘的数量
|
6009
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6010
5922
|
:type DiskCount: int
|
6011
5923
|
:param _MaxDiskSize: 磁盘的最大大小
|
6012
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6013
5924
|
:type MaxDiskSize: int
|
6014
5925
|
:param _Encrypt: 是否为加密云盘
|
6015
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6016
5926
|
:type Encrypt: int
|
6017
5927
|
"""
|
6018
5928
|
self._Spec = None
|
@@ -6110,7 +6020,6 @@ class NodesSummary(AbstractModel):
|
|
6110
6020
|
@property
|
6111
6021
|
def AttachCBSSpec(self):
|
6112
6022
|
"""挂载云盘信息
|
6113
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6114
6023
|
:rtype: :class:`tencentcloud.cdwch.v20200915.models.AttachCBSSpec`
|
6115
6024
|
"""
|
6116
6025
|
return self._AttachCBSSpec
|
@@ -6122,7 +6031,6 @@ class NodesSummary(AbstractModel):
|
|
6122
6031
|
@property
|
6123
6032
|
def SubProductType(self):
|
6124
6033
|
"""子产品类型
|
6125
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6126
6034
|
:rtype: str
|
6127
6035
|
"""
|
6128
6036
|
return self._SubProductType
|
@@ -6134,7 +6042,6 @@ class NodesSummary(AbstractModel):
|
|
6134
6042
|
@property
|
6135
6043
|
def SpecCore(self):
|
6136
6044
|
"""规格对应的核数
|
6137
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6138
6045
|
:rtype: int
|
6139
6046
|
"""
|
6140
6047
|
return self._SpecCore
|
@@ -6146,7 +6053,6 @@ class NodesSummary(AbstractModel):
|
|
6146
6053
|
@property
|
6147
6054
|
def SpecMemory(self):
|
6148
6055
|
"""规格对应的内存大小
|
6149
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6150
6056
|
:rtype: int
|
6151
6057
|
"""
|
6152
6058
|
return self._SpecMemory
|
@@ -6158,7 +6064,6 @@ class NodesSummary(AbstractModel):
|
|
6158
6064
|
@property
|
6159
6065
|
def DiskCount(self):
|
6160
6066
|
"""磁盘的数量
|
6161
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6162
6067
|
:rtype: int
|
6163
6068
|
"""
|
6164
6069
|
return self._DiskCount
|
@@ -6170,7 +6075,6 @@ class NodesSummary(AbstractModel):
|
|
6170
6075
|
@property
|
6171
6076
|
def MaxDiskSize(self):
|
6172
6077
|
"""磁盘的最大大小
|
6173
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6174
6078
|
:rtype: int
|
6175
6079
|
"""
|
6176
6080
|
return self._MaxDiskSize
|
@@ -6182,7 +6086,6 @@ class NodesSummary(AbstractModel):
|
|
6182
6086
|
@property
|
6183
6087
|
def Encrypt(self):
|
6184
6088
|
"""是否为加密云盘
|
6185
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6186
6089
|
:rtype: int
|
6187
6090
|
"""
|
6188
6091
|
return self._Encrypt
|
@@ -6466,13 +6369,10 @@ class ResizeDiskResponse(AbstractModel):
|
|
6466
6369
|
def __init__(self):
|
6467
6370
|
r"""
|
6468
6371
|
:param _FlowId: 流程ID
|
6469
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6470
6372
|
:type FlowId: str
|
6471
6373
|
:param _InstanceId: 实例ID
|
6472
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6473
6374
|
:type InstanceId: str
|
6474
6375
|
:param _ErrorMsg: 错误信息
|
6475
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6476
6376
|
:type ErrorMsg: str
|
6477
6377
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6478
6378
|
:type RequestId: str
|
@@ -6485,7 +6385,6 @@ class ResizeDiskResponse(AbstractModel):
|
|
6485
6385
|
@property
|
6486
6386
|
def FlowId(self):
|
6487
6387
|
"""流程ID
|
6488
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6489
6388
|
:rtype: str
|
6490
6389
|
"""
|
6491
6390
|
return self._FlowId
|
@@ -6497,7 +6396,6 @@ class ResizeDiskResponse(AbstractModel):
|
|
6497
6396
|
@property
|
6498
6397
|
def InstanceId(self):
|
6499
6398
|
"""实例ID
|
6500
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6501
6399
|
:rtype: str
|
6502
6400
|
"""
|
6503
6401
|
return self._InstanceId
|
@@ -6509,7 +6407,6 @@ class ResizeDiskResponse(AbstractModel):
|
|
6509
6407
|
@property
|
6510
6408
|
def ErrorMsg(self):
|
6511
6409
|
"""错误信息
|
6512
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6513
6410
|
:rtype: str
|
6514
6411
|
"""
|
6515
6412
|
return self._ErrorMsg
|
@@ -6559,16 +6456,12 @@ class ResourceSpec(AbstractModel):
|
|
6559
6456
|
:param _MaxNodeSize: 最大节点数目限制
|
6560
6457
|
:type MaxNodeSize: int
|
6561
6458
|
:param _Available: 是否可用,false代表售罄
|
6562
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6563
6459
|
:type Available: bool
|
6564
6460
|
:param _ComputeSpecDesc: 规格描述信息
|
6565
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6566
6461
|
:type ComputeSpecDesc: str
|
6567
6462
|
:param _DisplayName: 规格名
|
6568
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6569
6463
|
:type DisplayName: str
|
6570
6464
|
:param _InstanceQuota: 库存数
|
6571
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6572
6465
|
:type InstanceQuota: int
|
6573
6466
|
"""
|
6574
6467
|
self._Name = None
|
@@ -6663,7 +6556,6 @@ class ResourceSpec(AbstractModel):
|
|
6663
6556
|
@property
|
6664
6557
|
def Available(self):
|
6665
6558
|
"""是否可用,false代表售罄
|
6666
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6667
6559
|
:rtype: bool
|
6668
6560
|
"""
|
6669
6561
|
return self._Available
|
@@ -6675,7 +6567,6 @@ class ResourceSpec(AbstractModel):
|
|
6675
6567
|
@property
|
6676
6568
|
def ComputeSpecDesc(self):
|
6677
6569
|
"""规格描述信息
|
6678
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6679
6570
|
:rtype: str
|
6680
6571
|
"""
|
6681
6572
|
return self._ComputeSpecDesc
|
@@ -6687,7 +6578,6 @@ class ResourceSpec(AbstractModel):
|
|
6687
6578
|
@property
|
6688
6579
|
def DisplayName(self):
|
6689
6580
|
"""规格名
|
6690
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6691
6581
|
:rtype: str
|
6692
6582
|
"""
|
6693
6583
|
return self._DisplayName
|
@@ -6699,7 +6589,6 @@ class ResourceSpec(AbstractModel):
|
|
6699
6589
|
@property
|
6700
6590
|
def InstanceQuota(self):
|
6701
6591
|
"""库存数
|
6702
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6703
6592
|
:rtype: int
|
6704
6593
|
"""
|
6705
6594
|
return self._InstanceQuota
|
@@ -6839,13 +6728,10 @@ class ScaleCNOutUpInstanceResponse(AbstractModel):
|
|
6839
6728
|
def __init__(self):
|
6840
6729
|
r"""
|
6841
6730
|
:param _FlowId: 流程ID
|
6842
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6843
6731
|
:type FlowId: str
|
6844
6732
|
:param _InstanceId: 实例ID
|
6845
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6846
6733
|
:type InstanceId: str
|
6847
6734
|
:param _ErrorMsg: 错误信息
|
6848
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6849
6735
|
:type ErrorMsg: str
|
6850
6736
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6851
6737
|
:type RequestId: str
|
@@ -6858,7 +6744,6 @@ class ScaleCNOutUpInstanceResponse(AbstractModel):
|
|
6858
6744
|
@property
|
6859
6745
|
def FlowId(self):
|
6860
6746
|
"""流程ID
|
6861
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6862
6747
|
:rtype: str
|
6863
6748
|
"""
|
6864
6749
|
return self._FlowId
|
@@ -6870,7 +6755,6 @@ class ScaleCNOutUpInstanceResponse(AbstractModel):
|
|
6870
6755
|
@property
|
6871
6756
|
def InstanceId(self):
|
6872
6757
|
"""实例ID
|
6873
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6874
6758
|
:rtype: str
|
6875
6759
|
"""
|
6876
6760
|
return self._InstanceId
|
@@ -6882,7 +6766,6 @@ class ScaleCNOutUpInstanceResponse(AbstractModel):
|
|
6882
6766
|
@property
|
6883
6767
|
def ErrorMsg(self):
|
6884
6768
|
"""错误信息
|
6885
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6886
6769
|
:rtype: str
|
6887
6770
|
"""
|
6888
6771
|
return self._ErrorMsg
|
@@ -7046,13 +6929,10 @@ class ScaleOutInstanceResponse(AbstractModel):
|
|
7046
6929
|
def __init__(self):
|
7047
6930
|
r"""
|
7048
6931
|
:param _FlowId: 流程ID
|
7049
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7050
6932
|
:type FlowId: str
|
7051
6933
|
:param _InstanceId: 实例ID
|
7052
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7053
6934
|
:type InstanceId: str
|
7054
6935
|
:param _ErrorMsg: 错误信息
|
7055
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7056
6936
|
:type ErrorMsg: str
|
7057
6937
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7058
6938
|
:type RequestId: str
|
@@ -7065,7 +6945,6 @@ class ScaleOutInstanceResponse(AbstractModel):
|
|
7065
6945
|
@property
|
7066
6946
|
def FlowId(self):
|
7067
6947
|
"""流程ID
|
7068
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7069
6948
|
:rtype: str
|
7070
6949
|
"""
|
7071
6950
|
return self._FlowId
|
@@ -7077,7 +6956,6 @@ class ScaleOutInstanceResponse(AbstractModel):
|
|
7077
6956
|
@property
|
7078
6957
|
def InstanceId(self):
|
7079
6958
|
"""实例ID
|
7080
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7081
6959
|
:rtype: str
|
7082
6960
|
"""
|
7083
6961
|
return self._InstanceId
|
@@ -7089,7 +6967,6 @@ class ScaleOutInstanceResponse(AbstractModel):
|
|
7089
6967
|
@property
|
7090
6968
|
def ErrorMsg(self):
|
7091
6969
|
"""错误信息
|
7092
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7093
6970
|
:rtype: str
|
7094
6971
|
"""
|
7095
6972
|
return self._ErrorMsg
|
@@ -7206,13 +7083,10 @@ class ScaleUpInstanceResponse(AbstractModel):
|
|
7206
7083
|
def __init__(self):
|
7207
7084
|
r"""
|
7208
7085
|
:param _FlowId: 流程ID
|
7209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7210
7086
|
:type FlowId: str
|
7211
7087
|
:param _InstanceId: 实例ID
|
7212
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7213
7088
|
:type InstanceId: str
|
7214
7089
|
:param _ErrorMsg: 错误信息
|
7215
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7216
7090
|
:type ErrorMsg: str
|
7217
7091
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7218
7092
|
:type RequestId: str
|
@@ -7225,7 +7099,6 @@ class ScaleUpInstanceResponse(AbstractModel):
|
|
7225
7099
|
@property
|
7226
7100
|
def FlowId(self):
|
7227
7101
|
"""流程ID
|
7228
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7229
7102
|
:rtype: str
|
7230
7103
|
"""
|
7231
7104
|
return self._FlowId
|
@@ -7237,7 +7110,6 @@ class ScaleUpInstanceResponse(AbstractModel):
|
|
7237
7110
|
@property
|
7238
7111
|
def InstanceId(self):
|
7239
7112
|
"""实例ID
|
7240
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7241
7113
|
:rtype: str
|
7242
7114
|
"""
|
7243
7115
|
return self._InstanceId
|
@@ -7249,7 +7121,6 @@ class ScaleUpInstanceResponse(AbstractModel):
|
|
7249
7121
|
@property
|
7250
7122
|
def ErrorMsg(self):
|
7251
7123
|
"""错误信息
|
7252
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7253
7124
|
:rtype: str
|
7254
7125
|
"""
|
7255
7126
|
return self._ErrorMsg
|
@@ -7285,7 +7156,6 @@ class ScheduleStrategy(AbstractModel):
|
|
7285
7156
|
def __init__(self):
|
7286
7157
|
r"""
|
7287
7158
|
:param _CosBucketName: 备份桶名称
|
7288
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7289
7159
|
:type CosBucketName: str
|
7290
7160
|
:param _RetainDays: 备份保留天数
|
7291
7161
|
:type RetainDays: int
|
@@ -7296,7 +7166,6 @@ class ScheduleStrategy(AbstractModel):
|
|
7296
7166
|
:param _ScheduleId: 策略id
|
7297
7167
|
:type ScheduleId: int
|
7298
7168
|
:param _NextBackupTime: 下次备份时间
|
7299
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7300
7169
|
:type NextBackupTime: str
|
7301
7170
|
"""
|
7302
7171
|
self._CosBucketName = None
|
@@ -7309,7 +7178,6 @@ class ScheduleStrategy(AbstractModel):
|
|
7309
7178
|
@property
|
7310
7179
|
def CosBucketName(self):
|
7311
7180
|
"""备份桶名称
|
7312
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7313
7181
|
:rtype: str
|
7314
7182
|
"""
|
7315
7183
|
return self._CosBucketName
|
@@ -7365,7 +7233,6 @@ class ScheduleStrategy(AbstractModel):
|
|
7365
7233
|
@property
|
7366
7234
|
def NextBackupTime(self):
|
7367
7235
|
"""下次备份时间
|
7368
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7369
7236
|
:rtype: str
|
7370
7237
|
"""
|
7371
7238
|
return self._NextBackupTime
|
@@ -7466,16 +7333,12 @@ class SecondaryZoneInfo(AbstractModel):
|
|
7466
7333
|
def __init__(self):
|
7467
7334
|
r"""
|
7468
7335
|
:param _SecondaryZone: 副可用区
|
7469
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7470
7336
|
:type SecondaryZone: str
|
7471
7337
|
:param _SecondarySubnet: 可用区可用的子网id
|
7472
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7473
7338
|
:type SecondarySubnet: str
|
7474
7339
|
:param _UserIpNum: 可用区可用的子网可用ip的数量
|
7475
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7476
7340
|
:type UserIpNum: str
|
7477
7341
|
:param _SecondaryUserSubnetIPNum: 可用区可用的子网可用ip的数量
|
7478
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7479
7342
|
:type SecondaryUserSubnetIPNum: int
|
7480
7343
|
"""
|
7481
7344
|
self._SecondaryZone = None
|
@@ -7486,7 +7349,6 @@ class SecondaryZoneInfo(AbstractModel):
|
|
7486
7349
|
@property
|
7487
7350
|
def SecondaryZone(self):
|
7488
7351
|
"""副可用区
|
7489
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7490
7352
|
:rtype: str
|
7491
7353
|
"""
|
7492
7354
|
return self._SecondaryZone
|
@@ -7498,7 +7360,6 @@ class SecondaryZoneInfo(AbstractModel):
|
|
7498
7360
|
@property
|
7499
7361
|
def SecondarySubnet(self):
|
7500
7362
|
"""可用区可用的子网id
|
7501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7502
7363
|
:rtype: str
|
7503
7364
|
"""
|
7504
7365
|
return self._SecondarySubnet
|
@@ -7510,7 +7371,6 @@ class SecondaryZoneInfo(AbstractModel):
|
|
7510
7371
|
@property
|
7511
7372
|
def UserIpNum(self):
|
7512
7373
|
"""可用区可用的子网可用ip的数量
|
7513
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7514
7374
|
:rtype: str
|
7515
7375
|
"""
|
7516
7376
|
return self._UserIpNum
|
@@ -7522,7 +7382,6 @@ class SecondaryZoneInfo(AbstractModel):
|
|
7522
7382
|
@property
|
7523
7383
|
def SecondaryUserSubnetIPNum(self):
|
7524
7384
|
"""可用区可用的子网可用ip的数量
|
7525
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7526
7385
|
:rtype: int
|
7527
7386
|
"""
|
7528
7387
|
return self._SecondaryUserSubnetIPNum
|
@@ -7555,10 +7414,8 @@ class ServiceInfo(AbstractModel):
|
|
7555
7414
|
def __init__(self):
|
7556
7415
|
r"""
|
7557
7416
|
:param _Name: 服务名称
|
7558
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7559
7417
|
:type Name: str
|
7560
7418
|
:param _Version: 服务的版本
|
7561
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7562
7419
|
:type Version: str
|
7563
7420
|
"""
|
7564
7421
|
self._Name = None
|
@@ -7567,7 +7424,6 @@ class ServiceInfo(AbstractModel):
|
|
7567
7424
|
@property
|
7568
7425
|
def Name(self):
|
7569
7426
|
"""服务名称
|
7570
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7571
7427
|
:rtype: str
|
7572
7428
|
"""
|
7573
7429
|
return self._Name
|
@@ -7579,7 +7435,6 @@ class ServiceInfo(AbstractModel):
|
|
7579
7435
|
@property
|
7580
7436
|
def Version(self):
|
7581
7437
|
"""服务的版本
|
7582
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7583
7438
|
:rtype: str
|
7584
7439
|
"""
|
7585
7440
|
return self._Version
|