tencentcloud-sdk-python 3.0.1303__py2.py3-none-any.whl → 3.0.1307__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/apm/v20210622/apm_client.py +3 -3
- tencentcloud/apm/v20210622/models.py +586 -538
- tencentcloud/autoscaling/v20180419/models.py +141 -0
- tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +1 -1
- tencentcloud/cdwdoris/v20211228/models.py +120 -262
- tencentcloud/cfs/v20190719/cfs_client.py +23 -0
- tencentcloud/cfs/v20190719/models.py +79 -0
- tencentcloud/clb/v20180317/models.py +146 -20
- tencentcloud/cvm/v20170312/cvm_client.py +24 -0
- tencentcloud/cvm/v20170312/errorcodes.py +6 -0
- tencentcloud/cvm/v20170312/models.py +196 -12
- tencentcloud/dc/v20180410/models.py +30 -2
- tencentcloud/dlc/v20210125/models.py +89 -0
- tencentcloud/emr/v20190103/models.py +50 -116
- tencentcloud/ess/v20201111/models.py +30 -22
- tencentcloud/essbasic/v20210526/models.py +52 -40
- tencentcloud/faceid/v20180301/models.py +14 -14
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +3 -1
- tencentcloud/hunyuan/v20230901/models.py +54 -2
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
- tencentcloud/iotexplorer/v20190423/models.py +422 -0
- tencentcloud/lcic/v20220817/lcic_client.py +1 -1
- tencentcloud/lcic/v20220817/models.py +6 -8
- tencentcloud/lighthouse/v20200324/models.py +30 -0
- tencentcloud/lke/v20231130/models.py +23 -14
- tencentcloud/lkeap/v20240522/models.py +8 -4
- tencentcloud/mna/v20210119/models.py +0 -30
- tencentcloud/monitor/v20180724/models.py +2 -2
- tencentcloud/mps/v20190612/models.py +4 -10
- tencentcloud/ocr/v20181119/models.py +45 -0
- tencentcloud/postgres/v20170312/errorcodes.py +6 -0
- tencentcloud/postgres/v20170312/models.py +72 -30
- tencentcloud/rum/v20210622/models.py +0 -2
- tencentcloud/scf/v20180416/models.py +4 -4
- tencentcloud/ssl/v20191205/models.py +15 -0
- tencentcloud/tchd/v20230306/models.py +0 -2
- tencentcloud/teo/v20220901/models.py +2 -6
- tencentcloud/tiw/v20190919/models.py +6 -0
- tencentcloud/trtc/v20190722/models.py +15 -0
- tencentcloud/tse/v20201207/models.py +138 -0
- tencentcloud/tse/v20201207/tse_client.py +23 -0
- tencentcloud/vod/v20180717/models.py +6 -6
- tencentcloud/vpc/v20170312/models.py +504 -12
- tencentcloud/vpc/v20170312/vpc_client.py +23 -0
- tencentcloud/wedata/v20210820/models.py +767 -2
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/RECORD +52 -52
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/top_level.txt +0 -0
@@ -454,13 +454,10 @@ class BackupCosInfo(AbstractModel):
|
|
454
454
|
def __init__(self):
|
455
455
|
r"""
|
456
456
|
:param _CosBucket: 备份文件所在的cos桶
|
457
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
458
457
|
:type CosBucket: str
|
459
458
|
:param _CosPath: 备份文件所在的完整cos路径
|
460
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
461
459
|
:type CosPath: str
|
462
460
|
:param _SnapShotPath: 备份文件名称
|
463
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
464
461
|
:type SnapShotPath: str
|
465
462
|
"""
|
466
463
|
self._CosBucket = None
|
@@ -470,7 +467,6 @@ class BackupCosInfo(AbstractModel):
|
|
470
467
|
@property
|
471
468
|
def CosBucket(self):
|
472
469
|
"""备份文件所在的cos桶
|
473
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
474
470
|
:rtype: str
|
475
471
|
"""
|
476
472
|
return self._CosBucket
|
@@ -482,7 +478,6 @@ class BackupCosInfo(AbstractModel):
|
|
482
478
|
@property
|
483
479
|
def CosPath(self):
|
484
480
|
"""备份文件所在的完整cos路径
|
485
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
486
481
|
:rtype: str
|
487
482
|
"""
|
488
483
|
return self._CosPath
|
@@ -494,7 +489,6 @@ class BackupCosInfo(AbstractModel):
|
|
494
489
|
@property
|
495
490
|
def SnapShotPath(self):
|
496
491
|
"""备份文件名称
|
497
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
498
492
|
:rtype: str
|
499
493
|
"""
|
500
494
|
return self._SnapShotPath
|
@@ -554,10 +548,8 @@ class BackupStatus(AbstractModel):
|
|
554
548
|
:param _Timeout: 超时信息
|
555
549
|
:type Timeout: int
|
556
550
|
:param _BackupJobId: 备份实例id
|
557
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
558
551
|
:type BackupJobId: int
|
559
552
|
:param _TaskId: 实例对应snapshoit的id
|
560
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
561
553
|
:type TaskId: int
|
562
554
|
"""
|
563
555
|
self._JobId = None
|
@@ -734,7 +726,6 @@ class BackupStatus(AbstractModel):
|
|
734
726
|
@property
|
735
727
|
def BackupJobId(self):
|
736
728
|
"""备份实例id
|
737
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
738
729
|
:rtype: int
|
739
730
|
"""
|
740
731
|
return self._BackupJobId
|
@@ -746,7 +737,6 @@ class BackupStatus(AbstractModel):
|
|
746
737
|
@property
|
747
738
|
def TaskId(self):
|
748
739
|
"""实例对应snapshoit的id
|
749
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
750
740
|
:rtype: int
|
751
741
|
"""
|
752
742
|
return self._TaskId
|
@@ -917,10 +907,8 @@ class BindUser(AbstractModel):
|
|
917
907
|
def __init__(self):
|
918
908
|
r"""
|
919
909
|
:param _UserName: 用户名
|
920
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
921
910
|
:type UserName: str
|
922
911
|
:param _Host: 主机信息
|
923
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
924
912
|
:type Host: str
|
925
913
|
"""
|
926
914
|
self._UserName = None
|
@@ -929,7 +917,6 @@ class BindUser(AbstractModel):
|
|
929
917
|
@property
|
930
918
|
def UserName(self):
|
931
919
|
"""用户名
|
932
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
933
920
|
:rtype: str
|
934
921
|
"""
|
935
922
|
return self._UserName
|
@@ -941,7 +928,6 @@ class BindUser(AbstractModel):
|
|
941
928
|
@property
|
942
929
|
def Host(self):
|
943
930
|
"""主机信息
|
944
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
945
931
|
:rtype: str
|
946
932
|
"""
|
947
933
|
return self._Host
|
@@ -1023,7 +1009,6 @@ class CancelBackupJobResponse(AbstractModel):
|
|
1023
1009
|
def __init__(self):
|
1024
1010
|
r"""
|
1025
1011
|
:param _ErrorMsg: 错误信息
|
1026
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1027
1012
|
:type ErrorMsg: str
|
1028
1013
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1029
1014
|
:type RequestId: str
|
@@ -1034,7 +1019,6 @@ class CancelBackupJobResponse(AbstractModel):
|
|
1034
1019
|
@property
|
1035
1020
|
def ErrorMsg(self):
|
1036
1021
|
"""错误信息
|
1037
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1038
1022
|
:rtype: str
|
1039
1023
|
"""
|
1040
1024
|
return self._ErrorMsg
|
@@ -4883,6 +4867,8 @@ class DescribeDatabaseAuditDownloadRequest(AbstractModel):
|
|
4883
4867
|
:type SqlTypes: list of str
|
4884
4868
|
:param _Catalogs: catalog名称 (多选)
|
4885
4869
|
:type Catalogs: list of str
|
4870
|
+
:param _IsQuery: 是否是查询
|
4871
|
+
:type IsQuery: list of bool
|
4886
4872
|
"""
|
4887
4873
|
self._InstanceId = None
|
4888
4874
|
self._StartTime = None
|
@@ -4898,6 +4884,7 @@ class DescribeDatabaseAuditDownloadRequest(AbstractModel):
|
|
4898
4884
|
self._DbNames = None
|
4899
4885
|
self._SqlTypes = None
|
4900
4886
|
self._Catalogs = None
|
4887
|
+
self._IsQuery = None
|
4901
4888
|
|
4902
4889
|
@property
|
4903
4890
|
def InstanceId(self):
|
@@ -5053,6 +5040,17 @@ class DescribeDatabaseAuditDownloadRequest(AbstractModel):
|
|
5053
5040
|
def Catalogs(self, Catalogs):
|
5054
5041
|
self._Catalogs = Catalogs
|
5055
5042
|
|
5043
|
+
@property
|
5044
|
+
def IsQuery(self):
|
5045
|
+
"""是否是查询
|
5046
|
+
:rtype: list of bool
|
5047
|
+
"""
|
5048
|
+
return self._IsQuery
|
5049
|
+
|
5050
|
+
@IsQuery.setter
|
5051
|
+
def IsQuery(self, IsQuery):
|
5052
|
+
self._IsQuery = IsQuery
|
5053
|
+
|
5056
5054
|
|
5057
5055
|
def _deserialize(self, params):
|
5058
5056
|
self._InstanceId = params.get("InstanceId")
|
@@ -5069,6 +5067,7 @@ class DescribeDatabaseAuditDownloadRequest(AbstractModel):
|
|
5069
5067
|
self._DbNames = params.get("DbNames")
|
5070
5068
|
self._SqlTypes = params.get("SqlTypes")
|
5071
5069
|
self._Catalogs = params.get("Catalogs")
|
5070
|
+
self._IsQuery = params.get("IsQuery")
|
5072
5071
|
memeber_set = set(params.keys())
|
5073
5072
|
for name, value in vars(self).items():
|
5074
5073
|
property_name = name[1:]
|
@@ -6842,6 +6841,10 @@ class DescribeSlowQueryRecordsDownloadRequest(AbstractModel):
|
|
6842
6841
|
:type DbName: list of str
|
6843
6842
|
:param _CatalogName: catalog名称
|
6844
6843
|
:type CatalogName: list of str
|
6844
|
+
:param _SortField: 排序字段
|
6845
|
+
:type SortField: str
|
6846
|
+
:param _SortOrder: 排序方式
|
6847
|
+
:type SortOrder: str
|
6845
6848
|
"""
|
6846
6849
|
self._InstanceId = None
|
6847
6850
|
self._QueryDurationMs = None
|
@@ -6855,6 +6858,8 @@ class DescribeSlowQueryRecordsDownloadRequest(AbstractModel):
|
|
6855
6858
|
self._IsQuery = None
|
6856
6859
|
self._DbName = None
|
6857
6860
|
self._CatalogName = None
|
6861
|
+
self._SortField = None
|
6862
|
+
self._SortOrder = None
|
6858
6863
|
|
6859
6864
|
@property
|
6860
6865
|
def InstanceId(self):
|
@@ -6988,6 +6993,28 @@ class DescribeSlowQueryRecordsDownloadRequest(AbstractModel):
|
|
6988
6993
|
def CatalogName(self, CatalogName):
|
6989
6994
|
self._CatalogName = CatalogName
|
6990
6995
|
|
6996
|
+
@property
|
6997
|
+
def SortField(self):
|
6998
|
+
"""排序字段
|
6999
|
+
:rtype: str
|
7000
|
+
"""
|
7001
|
+
return self._SortField
|
7002
|
+
|
7003
|
+
@SortField.setter
|
7004
|
+
def SortField(self, SortField):
|
7005
|
+
self._SortField = SortField
|
7006
|
+
|
7007
|
+
@property
|
7008
|
+
def SortOrder(self):
|
7009
|
+
"""排序方式
|
7010
|
+
:rtype: str
|
7011
|
+
"""
|
7012
|
+
return self._SortOrder
|
7013
|
+
|
7014
|
+
@SortOrder.setter
|
7015
|
+
def SortOrder(self, SortOrder):
|
7016
|
+
self._SortOrder = SortOrder
|
7017
|
+
|
6991
7018
|
|
6992
7019
|
def _deserialize(self, params):
|
6993
7020
|
self._InstanceId = params.get("InstanceId")
|
@@ -7002,6 +7029,8 @@ class DescribeSlowQueryRecordsDownloadRequest(AbstractModel):
|
|
7002
7029
|
self._IsQuery = params.get("IsQuery")
|
7003
7030
|
self._DbName = params.get("DbName")
|
7004
7031
|
self._CatalogName = params.get("CatalogName")
|
7032
|
+
self._SortField = params.get("SortField")
|
7033
|
+
self._SortOrder = params.get("SortOrder")
|
7005
7034
|
memeber_set = set(params.keys())
|
7006
7035
|
for name, value in vars(self).items():
|
7007
7036
|
property_name = name[1:]
|
@@ -7090,6 +7119,10 @@ class DescribeSlowQueryRecordsRequest(AbstractModel):
|
|
7090
7119
|
:type ResultBytes: str
|
7091
7120
|
:param _MemoryUsage: MemoryUsage排序字段
|
7092
7121
|
:type MemoryUsage: str
|
7122
|
+
:param _SortField: 排序字段
|
7123
|
+
:type SortField: str
|
7124
|
+
:param _SortOrder: 排序方式
|
7125
|
+
:type SortOrder: str
|
7093
7126
|
"""
|
7094
7127
|
self._InstanceId = None
|
7095
7128
|
self._QueryDurationMs = None
|
@@ -7105,6 +7138,8 @@ class DescribeSlowQueryRecordsRequest(AbstractModel):
|
|
7105
7138
|
self._ReadRows = None
|
7106
7139
|
self._ResultBytes = None
|
7107
7140
|
self._MemoryUsage = None
|
7141
|
+
self._SortField = None
|
7142
|
+
self._SortOrder = None
|
7108
7143
|
|
7109
7144
|
@property
|
7110
7145
|
def InstanceId(self):
|
@@ -7260,6 +7295,28 @@ class DescribeSlowQueryRecordsRequest(AbstractModel):
|
|
7260
7295
|
def MemoryUsage(self, MemoryUsage):
|
7261
7296
|
self._MemoryUsage = MemoryUsage
|
7262
7297
|
|
7298
|
+
@property
|
7299
|
+
def SortField(self):
|
7300
|
+
"""排序字段
|
7301
|
+
:rtype: str
|
7302
|
+
"""
|
7303
|
+
return self._SortField
|
7304
|
+
|
7305
|
+
@SortField.setter
|
7306
|
+
def SortField(self, SortField):
|
7307
|
+
self._SortField = SortField
|
7308
|
+
|
7309
|
+
@property
|
7310
|
+
def SortOrder(self):
|
7311
|
+
"""排序方式
|
7312
|
+
:rtype: str
|
7313
|
+
"""
|
7314
|
+
return self._SortOrder
|
7315
|
+
|
7316
|
+
@SortOrder.setter
|
7317
|
+
def SortOrder(self, SortOrder):
|
7318
|
+
self._SortOrder = SortOrder
|
7319
|
+
|
7263
7320
|
|
7264
7321
|
def _deserialize(self, params):
|
7265
7322
|
self._InstanceId = params.get("InstanceId")
|
@@ -7276,6 +7333,8 @@ class DescribeSlowQueryRecordsRequest(AbstractModel):
|
|
7276
7333
|
self._ReadRows = params.get("ReadRows")
|
7277
7334
|
self._ResultBytes = params.get("ResultBytes")
|
7278
7335
|
self._MemoryUsage = params.get("MemoryUsage")
|
7336
|
+
self._SortField = params.get("SortField")
|
7337
|
+
self._SortOrder = params.get("SortOrder")
|
7279
7338
|
memeber_set = set(params.keys())
|
7280
7339
|
for name, value in vars(self).items():
|
7281
7340
|
property_name = name[1:]
|
@@ -7298,10 +7357,8 @@ class DescribeSlowQueryRecordsResponse(AbstractModel):
|
|
7298
7357
|
:param _SlowQueryRecords: 记录列表
|
7299
7358
|
:type SlowQueryRecords: list of SlowQueryRecord
|
7300
7359
|
:param _DBNameList: 所有数据库名
|
7301
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7302
7360
|
:type DBNameList: list of str
|
7303
7361
|
:param _CatalogNameList: 所有catalog名
|
7304
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7305
7362
|
:type CatalogNameList: list of str
|
7306
7363
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7307
7364
|
:type RequestId: str
|
@@ -7337,7 +7394,6 @@ class DescribeSlowQueryRecordsResponse(AbstractModel):
|
|
7337
7394
|
@property
|
7338
7395
|
def DBNameList(self):
|
7339
7396
|
"""所有数据库名
|
7340
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7341
7397
|
:rtype: list of str
|
7342
7398
|
"""
|
7343
7399
|
return self._DBNameList
|
@@ -7349,7 +7405,6 @@ class DescribeSlowQueryRecordsResponse(AbstractModel):
|
|
7349
7405
|
@property
|
7350
7406
|
def CatalogNameList(self):
|
7351
7407
|
"""所有catalog名
|
7352
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7353
7408
|
:rtype: list of str
|
7354
7409
|
"""
|
7355
7410
|
return self._CatalogNameList
|
@@ -7476,7 +7531,6 @@ class DescribeSpecResponse(AbstractModel):
|
|
7476
7531
|
:param _CoreSpec: be节点规格描述
|
7477
7532
|
:type CoreSpec: list of ResourceSpec
|
7478
7533
|
:param _AttachCBSSpec: 云盘列表
|
7479
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7480
7534
|
:type AttachCBSSpec: list of DiskSpec
|
7481
7535
|
:param _CNSpec: cn节点列表
|
7482
7536
|
:type CNSpec: list of ResourceSpec
|
@@ -7514,7 +7568,6 @@ class DescribeSpecResponse(AbstractModel):
|
|
7514
7568
|
@property
|
7515
7569
|
def AttachCBSSpec(self):
|
7516
7570
|
"""云盘列表
|
7517
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7518
7571
|
:rtype: list of DiskSpec
|
7519
7572
|
"""
|
7520
7573
|
return self._AttachCBSSpec
|
@@ -7733,10 +7786,8 @@ class DescribeSqlApisResponse(AbstractModel):
|
|
7733
7786
|
def __init__(self):
|
7734
7787
|
r"""
|
7735
7788
|
:param _ReturnData: 返回的查询数据,大部分情况是list,也可能是bool
|
7736
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7737
7789
|
:type ReturnData: str
|
7738
7790
|
:param _ErrorMsg: 错误消息
|
7739
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7740
7791
|
:type ErrorMsg: str
|
7741
7792
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7742
7793
|
:type RequestId: str
|
@@ -7748,7 +7799,6 @@ class DescribeSqlApisResponse(AbstractModel):
|
|
7748
7799
|
@property
|
7749
7800
|
def ReturnData(self):
|
7750
7801
|
"""返回的查询数据,大部分情况是list,也可能是bool
|
7751
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7752
7802
|
:rtype: str
|
7753
7803
|
"""
|
7754
7804
|
return self._ReturnData
|
@@ -7760,7 +7810,6 @@ class DescribeSqlApisResponse(AbstractModel):
|
|
7760
7810
|
@property
|
7761
7811
|
def ErrorMsg(self):
|
7762
7812
|
"""错误消息
|
7763
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7764
7813
|
:rtype: str
|
7765
7814
|
"""
|
7766
7815
|
return self._ErrorMsg
|
@@ -7891,10 +7940,8 @@ class DescribeTableListResponse(AbstractModel):
|
|
7891
7940
|
def __init__(self):
|
7892
7941
|
r"""
|
7893
7942
|
:param _TableNames: 表名列表
|
7894
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7895
7943
|
:type TableNames: list of str
|
7896
7944
|
:param _Message: 错误信息
|
7897
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7898
7945
|
:type Message: str
|
7899
7946
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7900
7947
|
:type RequestId: str
|
@@ -7906,7 +7953,6 @@ class DescribeTableListResponse(AbstractModel):
|
|
7906
7953
|
@property
|
7907
7954
|
def TableNames(self):
|
7908
7955
|
"""表名列表
|
7909
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7910
7956
|
:rtype: list of str
|
7911
7957
|
"""
|
7912
7958
|
return self._TableNames
|
@@ -7918,7 +7964,6 @@ class DescribeTableListResponse(AbstractModel):
|
|
7918
7964
|
@property
|
7919
7965
|
def Message(self):
|
7920
7966
|
"""错误信息
|
7921
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7922
7967
|
:rtype: str
|
7923
7968
|
"""
|
7924
7969
|
return self._Message
|
@@ -8371,16 +8416,12 @@ class DorisSourceInfo(AbstractModel):
|
|
8371
8416
|
def __init__(self):
|
8372
8417
|
r"""
|
8373
8418
|
:param _Host: doris集群的fe的ip
|
8374
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8375
8419
|
:type Host: str
|
8376
8420
|
:param _Port: doris集群的fe的端口号
|
8377
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8378
8421
|
:type Port: int
|
8379
8422
|
:param _User: doris集群的账号
|
8380
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8381
8423
|
:type User: str
|
8382
8424
|
:param _Password: base64编码的doris集群对应用户的密码
|
8383
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8384
8425
|
:type Password: str
|
8385
8426
|
"""
|
8386
8427
|
self._Host = None
|
@@ -8391,7 +8432,6 @@ class DorisSourceInfo(AbstractModel):
|
|
8391
8432
|
@property
|
8392
8433
|
def Host(self):
|
8393
8434
|
"""doris集群的fe的ip
|
8394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8395
8435
|
:rtype: str
|
8396
8436
|
"""
|
8397
8437
|
return self._Host
|
@@ -8403,7 +8443,6 @@ class DorisSourceInfo(AbstractModel):
|
|
8403
8443
|
@property
|
8404
8444
|
def Port(self):
|
8405
8445
|
"""doris集群的fe的端口号
|
8406
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8407
8446
|
:rtype: int
|
8408
8447
|
"""
|
8409
8448
|
return self._Port
|
@@ -8415,7 +8454,6 @@ class DorisSourceInfo(AbstractModel):
|
|
8415
8454
|
@property
|
8416
8455
|
def User(self):
|
8417
8456
|
"""doris集群的账号
|
8418
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8419
8457
|
:rtype: str
|
8420
8458
|
"""
|
8421
8459
|
return self._User
|
@@ -8427,7 +8465,6 @@ class DorisSourceInfo(AbstractModel):
|
|
8427
8465
|
@property
|
8428
8466
|
def Password(self):
|
8429
8467
|
"""base64编码的doris集群对应用户的密码
|
8430
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8431
8468
|
:rtype: str
|
8432
8469
|
"""
|
8433
8470
|
return self._Password
|
@@ -8460,13 +8497,10 @@ class FrontEndRule(AbstractModel):
|
|
8460
8497
|
def __init__(self):
|
8461
8498
|
r"""
|
8462
8499
|
:param _ID: id序列
|
8463
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8464
8500
|
:type ID: int
|
8465
8501
|
:param _Name: 规则名称
|
8466
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8467
8502
|
:type Name: str
|
8468
8503
|
:param _Rule: 详细规则
|
8469
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8470
8504
|
:type Rule: str
|
8471
8505
|
"""
|
8472
8506
|
self._ID = None
|
@@ -8476,7 +8510,6 @@ class FrontEndRule(AbstractModel):
|
|
8476
8510
|
@property
|
8477
8511
|
def ID(self):
|
8478
8512
|
"""id序列
|
8479
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8480
8513
|
:rtype: int
|
8481
8514
|
"""
|
8482
8515
|
return self._ID
|
@@ -8488,7 +8521,6 @@ class FrontEndRule(AbstractModel):
|
|
8488
8521
|
@property
|
8489
8522
|
def Name(self):
|
8490
8523
|
"""规则名称
|
8491
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8492
8524
|
:rtype: str
|
8493
8525
|
"""
|
8494
8526
|
return self._Name
|
@@ -8500,7 +8532,6 @@ class FrontEndRule(AbstractModel):
|
|
8500
8532
|
@property
|
8501
8533
|
def Rule(self):
|
8502
8534
|
"""详细规则
|
8503
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8504
8535
|
:rtype: str
|
8505
8536
|
"""
|
8506
8537
|
return self._Rule
|
@@ -8583,7 +8614,6 @@ class InstanceDetail(AbstractModel):
|
|
8583
8614
|
def __init__(self):
|
8584
8615
|
r"""
|
8585
8616
|
:param _EnableAlarmStrategy: 告警策略是否可用
|
8586
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8587
8617
|
:type EnableAlarmStrategy: bool
|
8588
8618
|
"""
|
8589
8619
|
self._EnableAlarmStrategy = None
|
@@ -8591,7 +8621,6 @@ class InstanceDetail(AbstractModel):
|
|
8591
8621
|
@property
|
8592
8622
|
def EnableAlarmStrategy(self):
|
8593
8623
|
"""告警策略是否可用
|
8594
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8595
8624
|
:rtype: bool
|
8596
8625
|
"""
|
8597
8626
|
return self._EnableAlarmStrategy
|
@@ -8621,164 +8650,114 @@ class InstanceInfo(AbstractModel):
|
|
8621
8650
|
def __init__(self):
|
8622
8651
|
r"""
|
8623
8652
|
:param _InstanceId: 集群实例ID, "cdw-xxxx" 字符串类型
|
8624
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8625
8653
|
:type InstanceId: str
|
8626
8654
|
:param _InstanceName: 集群实例名称
|
8627
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8628
8655
|
:type InstanceName: str
|
8629
8656
|
:param _Status: 状态,
|
8630
8657
|
Init 创建中; Serving 运行中;
|
8631
8658
|
Deleted已销毁;Deleting 销毁中;
|
8632
8659
|
Modify 集群变更中;
|
8633
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8634
8660
|
:type Status: str
|
8635
8661
|
:param _Version: 版本
|
8636
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8637
8662
|
:type Version: str
|
8638
8663
|
:param _Region: 地域, ap-guangzhou
|
8639
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8640
8664
|
:type Region: str
|
8641
8665
|
:param _Zone: 可用区, ap-guangzhou-3
|
8642
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8643
8666
|
:type Zone: str
|
8644
8667
|
:param _VpcId: 私有网络名称
|
8645
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8646
8668
|
:type VpcId: str
|
8647
8669
|
:param _SubnetId: 子网名称
|
8648
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8649
8670
|
:type SubnetId: str
|
8650
8671
|
:param _PayMode: 付费类型,"hour", "prepay"
|
8651
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8652
8672
|
:type PayMode: str
|
8653
8673
|
:param _CreateTime: 创建时间
|
8654
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8655
8674
|
:type CreateTime: str
|
8656
8675
|
:param _ExpireTime: 过期时间
|
8657
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8658
8676
|
:type ExpireTime: str
|
8659
8677
|
:param _MasterSummary: 数据节点描述信息
|
8660
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8661
8678
|
:type MasterSummary: :class:`tencentcloud.cdwdoris.v20211228.models.NodesSummary`
|
8662
8679
|
:param _CoreSummary: zookeeper节点描述信息
|
8663
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8664
8680
|
:type CoreSummary: :class:`tencentcloud.cdwdoris.v20211228.models.NodesSummary`
|
8665
8681
|
:param _HA: 高可用,“true" "false"
|
8666
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8667
8682
|
:type HA: str
|
8668
8683
|
:param _HaType: 高可用类型:
|
8669
8684
|
0:非高可用
|
8670
8685
|
1:读高可用
|
8671
8686
|
2:读写高可用。
|
8672
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8673
8687
|
:type HaType: int
|
8674
8688
|
:param _AccessInfo: 访问地址,例如 "10.0.0.1:9000"
|
8675
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8676
8689
|
:type AccessInfo: str
|
8677
8690
|
:param _Id: 记录ID,数值型
|
8678
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8679
8691
|
:type Id: int
|
8680
8692
|
:param _RegionId: regionId, 表示地域
|
8681
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8682
8693
|
:type RegionId: int
|
8683
8694
|
:param _ZoneDesc: 可用区说明,例如 "广州二区"
|
8684
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8685
8695
|
:type ZoneDesc: str
|
8686
8696
|
:param _FlowMsg: 错误流程说明信息
|
8687
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8688
8697
|
:type FlowMsg: str
|
8689
8698
|
:param _StatusDesc: 状态描述,例如“运行中”等
|
8690
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8691
8699
|
:type StatusDesc: str
|
8692
8700
|
:param _RenewFlag: 自动续费标记
|
8693
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8694
8701
|
:type RenewFlag: bool
|
8695
8702
|
:param _Tags: 标签列表
|
8696
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8697
8703
|
:type Tags: list of Tag
|
8698
8704
|
:param _Monitor: 监控信息
|
8699
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8700
8705
|
:type Monitor: str
|
8701
8706
|
:param _HasClsTopic: 是否开通日志
|
8702
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8703
8707
|
:type HasClsTopic: bool
|
8704
8708
|
:param _ClsTopicId: 日志主题ID
|
8705
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8706
8709
|
:type ClsTopicId: str
|
8707
8710
|
:param _ClsLogSetId: 日志集ID
|
8708
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8709
8711
|
:type ClsLogSetId: str
|
8710
8712
|
:param _EnableXMLConfig: 是否支持xml配置管理
|
8711
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8712
8713
|
:type EnableXMLConfig: int
|
8713
8714
|
:param _RegionDesc: 区域
|
8714
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8715
8715
|
:type RegionDesc: str
|
8716
8716
|
:param _Eip: 弹性网卡地址
|
8717
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8718
8717
|
:type Eip: str
|
8719
8718
|
:param _CosMoveFactor: 冷热分层系数
|
8720
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8721
8719
|
:type CosMoveFactor: int
|
8722
8720
|
:param _Kind: external/local/yunti
|
8723
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8724
8721
|
:type Kind: str
|
8725
8722
|
:param _CosBucketName: cos桶
|
8726
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8727
8723
|
:type CosBucketName: str
|
8728
8724
|
:param _CanAttachCbs: cbs
|
8729
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8730
8725
|
:type CanAttachCbs: bool
|
8731
8726
|
:param _BuildVersion: 小版本
|
8732
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8733
8727
|
:type BuildVersion: str
|
8734
8728
|
:param _Components: 组件信息
|
8735
8729
|
注:这里返回类型实际为map[string]struct类型,并非显示的string类型,可以参考“示例值”进行数据的解析。
|
8736
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8737
8730
|
:type Components: str
|
8738
8731
|
:param _IfExistCatalog: 判断审计日志表是否有catalog字段
|
8739
8732
|
注意:此字段可能返回 null,表示取不到有效值。
|
8740
8733
|
:type IfExistCatalog: int
|
8741
8734
|
:param _Characteristic: 页面特性,用于前端屏蔽一些页面入口
|
8742
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8743
8735
|
:type Characteristic: list of str
|
8744
8736
|
:param _RestartTimeout: 超时时间 单位s
|
8745
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8746
8737
|
:type RestartTimeout: str
|
8747
8738
|
:param _GraceShutdownWaitSeconds: 内核优雅重启超时时间,如果为-1说明未设置
|
8748
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8749
8739
|
:type GraceShutdownWaitSeconds: str
|
8750
8740
|
:param _CaseSensitive: 表名大小写是否敏感,0:敏感;1:不敏感,以小写进行比较;2:不敏感,表名改为以小写存储
|
8751
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8752
8741
|
:type CaseSensitive: int
|
8753
8742
|
:param _IsWhiteSGs: 用户是否可以绑定安全组
|
8754
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8755
8743
|
:type IsWhiteSGs: bool
|
8756
8744
|
:param _BindSGs: 已绑定的安全组信息
|
8757
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8758
8745
|
:type BindSGs: list of str
|
8759
8746
|
:param _EnableMultiZones: 是否为多可用区
|
8760
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8761
8747
|
:type EnableMultiZones: bool
|
8762
8748
|
:param _UserNetworkInfos: 用户可用区和子网信息
|
8763
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8764
8749
|
:type UserNetworkInfos: str
|
8765
8750
|
:param _EnableCoolDown: 是否启用冷热分层。0:未开启 1:已开启
|
8766
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8767
8751
|
:type EnableCoolDown: int
|
8768
8752
|
:param _CoolDownBucket: 冷热分层使用COS桶
|
8769
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8770
8753
|
:type CoolDownBucket: str
|
8771
8754
|
:param _Details: 实例扩展信息
|
8772
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8773
8755
|
:type Details: :class:`tencentcloud.cdwdoris.v20211228.models.InstanceDetail`
|
8774
8756
|
:param _EnableDlc: 是否启用DLC 0:关闭 1:开启
|
8775
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8776
8757
|
:type EnableDlc: int
|
8777
8758
|
:param _AccountType: 账户类型 0:普通用户 1:CAM用户
|
8778
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8779
8759
|
:type AccountType: int
|
8780
8760
|
:param _MonitorMode: 监控模式 0: 老监控 1:新监控
|
8781
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8782
8761
|
:type MonitorMode: int
|
8783
8762
|
:param _CNSummary: cn节点信息
|
8784
8763
|
:type CNSummary: :class:`tencentcloud.cdwdoris.v20211228.models.NodesSummary`
|
@@ -8839,7 +8818,6 @@ Modify 集群变更中;
|
|
8839
8818
|
@property
|
8840
8819
|
def InstanceId(self):
|
8841
8820
|
"""集群实例ID, "cdw-xxxx" 字符串类型
|
8842
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8843
8821
|
:rtype: str
|
8844
8822
|
"""
|
8845
8823
|
return self._InstanceId
|
@@ -8851,7 +8829,6 @@ Modify 集群变更中;
|
|
8851
8829
|
@property
|
8852
8830
|
def InstanceName(self):
|
8853
8831
|
"""集群实例名称
|
8854
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8855
8832
|
:rtype: str
|
8856
8833
|
"""
|
8857
8834
|
return self._InstanceName
|
@@ -8866,7 +8843,6 @@ Modify 集群变更中;
|
|
8866
8843
|
Init 创建中; Serving 运行中;
|
8867
8844
|
Deleted已销毁;Deleting 销毁中;
|
8868
8845
|
Modify 集群变更中;
|
8869
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8870
8846
|
:rtype: str
|
8871
8847
|
"""
|
8872
8848
|
return self._Status
|
@@ -8878,7 +8854,6 @@ Modify 集群变更中;
|
|
8878
8854
|
@property
|
8879
8855
|
def Version(self):
|
8880
8856
|
"""版本
|
8881
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8882
8857
|
:rtype: str
|
8883
8858
|
"""
|
8884
8859
|
return self._Version
|
@@ -8890,7 +8865,6 @@ Modify 集群变更中;
|
|
8890
8865
|
@property
|
8891
8866
|
def Region(self):
|
8892
8867
|
"""地域, ap-guangzhou
|
8893
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8894
8868
|
:rtype: str
|
8895
8869
|
"""
|
8896
8870
|
return self._Region
|
@@ -8902,7 +8876,6 @@ Modify 集群变更中;
|
|
8902
8876
|
@property
|
8903
8877
|
def Zone(self):
|
8904
8878
|
"""可用区, ap-guangzhou-3
|
8905
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8906
8879
|
:rtype: str
|
8907
8880
|
"""
|
8908
8881
|
return self._Zone
|
@@ -8914,7 +8887,6 @@ Modify 集群变更中;
|
|
8914
8887
|
@property
|
8915
8888
|
def VpcId(self):
|
8916
8889
|
"""私有网络名称
|
8917
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8918
8890
|
:rtype: str
|
8919
8891
|
"""
|
8920
8892
|
return self._VpcId
|
@@ -8926,7 +8898,6 @@ Modify 集群变更中;
|
|
8926
8898
|
@property
|
8927
8899
|
def SubnetId(self):
|
8928
8900
|
"""子网名称
|
8929
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8930
8901
|
:rtype: str
|
8931
8902
|
"""
|
8932
8903
|
return self._SubnetId
|
@@ -8938,7 +8909,6 @@ Modify 集群变更中;
|
|
8938
8909
|
@property
|
8939
8910
|
def PayMode(self):
|
8940
8911
|
"""付费类型,"hour", "prepay"
|
8941
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8942
8912
|
:rtype: str
|
8943
8913
|
"""
|
8944
8914
|
return self._PayMode
|
@@ -8950,7 +8920,6 @@ Modify 集群变更中;
|
|
8950
8920
|
@property
|
8951
8921
|
def CreateTime(self):
|
8952
8922
|
"""创建时间
|
8953
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8954
8923
|
:rtype: str
|
8955
8924
|
"""
|
8956
8925
|
return self._CreateTime
|
@@ -8962,7 +8931,6 @@ Modify 集群变更中;
|
|
8962
8931
|
@property
|
8963
8932
|
def ExpireTime(self):
|
8964
8933
|
"""过期时间
|
8965
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8966
8934
|
:rtype: str
|
8967
8935
|
"""
|
8968
8936
|
return self._ExpireTime
|
@@ -8974,7 +8942,6 @@ Modify 集群变更中;
|
|
8974
8942
|
@property
|
8975
8943
|
def MasterSummary(self):
|
8976
8944
|
"""数据节点描述信息
|
8977
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8978
8945
|
:rtype: :class:`tencentcloud.cdwdoris.v20211228.models.NodesSummary`
|
8979
8946
|
"""
|
8980
8947
|
return self._MasterSummary
|
@@ -8986,7 +8953,6 @@ Modify 集群变更中;
|
|
8986
8953
|
@property
|
8987
8954
|
def CoreSummary(self):
|
8988
8955
|
"""zookeeper节点描述信息
|
8989
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8990
8956
|
:rtype: :class:`tencentcloud.cdwdoris.v20211228.models.NodesSummary`
|
8991
8957
|
"""
|
8992
8958
|
return self._CoreSummary
|
@@ -8998,7 +8964,6 @@ Modify 集群变更中;
|
|
8998
8964
|
@property
|
8999
8965
|
def HA(self):
|
9000
8966
|
"""高可用,“true" "false"
|
9001
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9002
8967
|
:rtype: str
|
9003
8968
|
"""
|
9004
8969
|
return self._HA
|
@@ -9013,7 +8978,6 @@ Modify 集群变更中;
|
|
9013
8978
|
0:非高可用
|
9014
8979
|
1:读高可用
|
9015
8980
|
2:读写高可用。
|
9016
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9017
8981
|
:rtype: int
|
9018
8982
|
"""
|
9019
8983
|
return self._HaType
|
@@ -9025,7 +8989,6 @@ Modify 集群变更中;
|
|
9025
8989
|
@property
|
9026
8990
|
def AccessInfo(self):
|
9027
8991
|
"""访问地址,例如 "10.0.0.1:9000"
|
9028
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9029
8992
|
:rtype: str
|
9030
8993
|
"""
|
9031
8994
|
return self._AccessInfo
|
@@ -9037,7 +9000,6 @@ Modify 集群变更中;
|
|
9037
9000
|
@property
|
9038
9001
|
def Id(self):
|
9039
9002
|
"""记录ID,数值型
|
9040
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9041
9003
|
:rtype: int
|
9042
9004
|
"""
|
9043
9005
|
return self._Id
|
@@ -9049,7 +9011,6 @@ Modify 集群变更中;
|
|
9049
9011
|
@property
|
9050
9012
|
def RegionId(self):
|
9051
9013
|
"""regionId, 表示地域
|
9052
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9053
9014
|
:rtype: int
|
9054
9015
|
"""
|
9055
9016
|
return self._RegionId
|
@@ -9061,7 +9022,6 @@ Modify 集群变更中;
|
|
9061
9022
|
@property
|
9062
9023
|
def ZoneDesc(self):
|
9063
9024
|
"""可用区说明,例如 "广州二区"
|
9064
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9065
9025
|
:rtype: str
|
9066
9026
|
"""
|
9067
9027
|
return self._ZoneDesc
|
@@ -9073,7 +9033,6 @@ Modify 集群变更中;
|
|
9073
9033
|
@property
|
9074
9034
|
def FlowMsg(self):
|
9075
9035
|
"""错误流程说明信息
|
9076
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9077
9036
|
:rtype: str
|
9078
9037
|
"""
|
9079
9038
|
return self._FlowMsg
|
@@ -9085,7 +9044,6 @@ Modify 集群变更中;
|
|
9085
9044
|
@property
|
9086
9045
|
def StatusDesc(self):
|
9087
9046
|
"""状态描述,例如“运行中”等
|
9088
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9089
9047
|
:rtype: str
|
9090
9048
|
"""
|
9091
9049
|
return self._StatusDesc
|
@@ -9097,7 +9055,6 @@ Modify 集群变更中;
|
|
9097
9055
|
@property
|
9098
9056
|
def RenewFlag(self):
|
9099
9057
|
"""自动续费标记
|
9100
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9101
9058
|
:rtype: bool
|
9102
9059
|
"""
|
9103
9060
|
return self._RenewFlag
|
@@ -9109,7 +9066,6 @@ Modify 集群变更中;
|
|
9109
9066
|
@property
|
9110
9067
|
def Tags(self):
|
9111
9068
|
"""标签列表
|
9112
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9113
9069
|
:rtype: list of Tag
|
9114
9070
|
"""
|
9115
9071
|
return self._Tags
|
@@ -9121,7 +9077,6 @@ Modify 集群变更中;
|
|
9121
9077
|
@property
|
9122
9078
|
def Monitor(self):
|
9123
9079
|
"""监控信息
|
9124
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9125
9080
|
:rtype: str
|
9126
9081
|
"""
|
9127
9082
|
return self._Monitor
|
@@ -9133,7 +9088,6 @@ Modify 集群变更中;
|
|
9133
9088
|
@property
|
9134
9089
|
def HasClsTopic(self):
|
9135
9090
|
"""是否开通日志
|
9136
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9137
9091
|
:rtype: bool
|
9138
9092
|
"""
|
9139
9093
|
return self._HasClsTopic
|
@@ -9145,7 +9099,6 @@ Modify 集群变更中;
|
|
9145
9099
|
@property
|
9146
9100
|
def ClsTopicId(self):
|
9147
9101
|
"""日志主题ID
|
9148
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9149
9102
|
:rtype: str
|
9150
9103
|
"""
|
9151
9104
|
return self._ClsTopicId
|
@@ -9157,7 +9110,6 @@ Modify 集群变更中;
|
|
9157
9110
|
@property
|
9158
9111
|
def ClsLogSetId(self):
|
9159
9112
|
"""日志集ID
|
9160
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9161
9113
|
:rtype: str
|
9162
9114
|
"""
|
9163
9115
|
return self._ClsLogSetId
|
@@ -9169,7 +9121,6 @@ Modify 集群变更中;
|
|
9169
9121
|
@property
|
9170
9122
|
def EnableXMLConfig(self):
|
9171
9123
|
"""是否支持xml配置管理
|
9172
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9173
9124
|
:rtype: int
|
9174
9125
|
"""
|
9175
9126
|
return self._EnableXMLConfig
|
@@ -9181,7 +9132,6 @@ Modify 集群变更中;
|
|
9181
9132
|
@property
|
9182
9133
|
def RegionDesc(self):
|
9183
9134
|
"""区域
|
9184
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9185
9135
|
:rtype: str
|
9186
9136
|
"""
|
9187
9137
|
return self._RegionDesc
|
@@ -9193,7 +9143,6 @@ Modify 集群变更中;
|
|
9193
9143
|
@property
|
9194
9144
|
def Eip(self):
|
9195
9145
|
"""弹性网卡地址
|
9196
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9197
9146
|
:rtype: str
|
9198
9147
|
"""
|
9199
9148
|
return self._Eip
|
@@ -9205,7 +9154,6 @@ Modify 集群变更中;
|
|
9205
9154
|
@property
|
9206
9155
|
def CosMoveFactor(self):
|
9207
9156
|
"""冷热分层系数
|
9208
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9209
9157
|
:rtype: int
|
9210
9158
|
"""
|
9211
9159
|
return self._CosMoveFactor
|
@@ -9217,7 +9165,6 @@ Modify 集群变更中;
|
|
9217
9165
|
@property
|
9218
9166
|
def Kind(self):
|
9219
9167
|
"""external/local/yunti
|
9220
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9221
9168
|
:rtype: str
|
9222
9169
|
"""
|
9223
9170
|
return self._Kind
|
@@ -9229,7 +9176,6 @@ Modify 集群变更中;
|
|
9229
9176
|
@property
|
9230
9177
|
def CosBucketName(self):
|
9231
9178
|
"""cos桶
|
9232
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9233
9179
|
:rtype: str
|
9234
9180
|
"""
|
9235
9181
|
return self._CosBucketName
|
@@ -9241,7 +9187,6 @@ Modify 集群变更中;
|
|
9241
9187
|
@property
|
9242
9188
|
def CanAttachCbs(self):
|
9243
9189
|
"""cbs
|
9244
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9245
9190
|
:rtype: bool
|
9246
9191
|
"""
|
9247
9192
|
return self._CanAttachCbs
|
@@ -9253,7 +9198,6 @@ Modify 集群变更中;
|
|
9253
9198
|
@property
|
9254
9199
|
def BuildVersion(self):
|
9255
9200
|
"""小版本
|
9256
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9257
9201
|
:rtype: str
|
9258
9202
|
"""
|
9259
9203
|
return self._BuildVersion
|
@@ -9266,7 +9210,6 @@ Modify 集群变更中;
|
|
9266
9210
|
def Components(self):
|
9267
9211
|
"""组件信息
|
9268
9212
|
注:这里返回类型实际为map[string]struct类型,并非显示的string类型,可以参考“示例值”进行数据的解析。
|
9269
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9270
9213
|
:rtype: str
|
9271
9214
|
"""
|
9272
9215
|
return self._Components
|
@@ -9294,7 +9237,6 @@ Modify 集群变更中;
|
|
9294
9237
|
@property
|
9295
9238
|
def Characteristic(self):
|
9296
9239
|
"""页面特性,用于前端屏蔽一些页面入口
|
9297
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9298
9240
|
:rtype: list of str
|
9299
9241
|
"""
|
9300
9242
|
return self._Characteristic
|
@@ -9306,7 +9248,6 @@ Modify 集群变更中;
|
|
9306
9248
|
@property
|
9307
9249
|
def RestartTimeout(self):
|
9308
9250
|
"""超时时间 单位s
|
9309
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9310
9251
|
:rtype: str
|
9311
9252
|
"""
|
9312
9253
|
return self._RestartTimeout
|
@@ -9318,7 +9259,6 @@ Modify 集群变更中;
|
|
9318
9259
|
@property
|
9319
9260
|
def GraceShutdownWaitSeconds(self):
|
9320
9261
|
"""内核优雅重启超时时间,如果为-1说明未设置
|
9321
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9322
9262
|
:rtype: str
|
9323
9263
|
"""
|
9324
9264
|
return self._GraceShutdownWaitSeconds
|
@@ -9330,7 +9270,6 @@ Modify 集群变更中;
|
|
9330
9270
|
@property
|
9331
9271
|
def CaseSensitive(self):
|
9332
9272
|
"""表名大小写是否敏感,0:敏感;1:不敏感,以小写进行比较;2:不敏感,表名改为以小写存储
|
9333
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9334
9273
|
:rtype: int
|
9335
9274
|
"""
|
9336
9275
|
return self._CaseSensitive
|
@@ -9342,7 +9281,6 @@ Modify 集群变更中;
|
|
9342
9281
|
@property
|
9343
9282
|
def IsWhiteSGs(self):
|
9344
9283
|
"""用户是否可以绑定安全组
|
9345
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9346
9284
|
:rtype: bool
|
9347
9285
|
"""
|
9348
9286
|
return self._IsWhiteSGs
|
@@ -9354,7 +9292,6 @@ Modify 集群变更中;
|
|
9354
9292
|
@property
|
9355
9293
|
def BindSGs(self):
|
9356
9294
|
"""已绑定的安全组信息
|
9357
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9358
9295
|
:rtype: list of str
|
9359
9296
|
"""
|
9360
9297
|
return self._BindSGs
|
@@ -9366,7 +9303,6 @@ Modify 集群变更中;
|
|
9366
9303
|
@property
|
9367
9304
|
def EnableMultiZones(self):
|
9368
9305
|
"""是否为多可用区
|
9369
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9370
9306
|
:rtype: bool
|
9371
9307
|
"""
|
9372
9308
|
return self._EnableMultiZones
|
@@ -9378,7 +9314,6 @@ Modify 集群变更中;
|
|
9378
9314
|
@property
|
9379
9315
|
def UserNetworkInfos(self):
|
9380
9316
|
"""用户可用区和子网信息
|
9381
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9382
9317
|
:rtype: str
|
9383
9318
|
"""
|
9384
9319
|
return self._UserNetworkInfos
|
@@ -9390,7 +9325,6 @@ Modify 集群变更中;
|
|
9390
9325
|
@property
|
9391
9326
|
def EnableCoolDown(self):
|
9392
9327
|
"""是否启用冷热分层。0:未开启 1:已开启
|
9393
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9394
9328
|
:rtype: int
|
9395
9329
|
"""
|
9396
9330
|
return self._EnableCoolDown
|
@@ -9402,7 +9336,6 @@ Modify 集群变更中;
|
|
9402
9336
|
@property
|
9403
9337
|
def CoolDownBucket(self):
|
9404
9338
|
"""冷热分层使用COS桶
|
9405
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9406
9339
|
:rtype: str
|
9407
9340
|
"""
|
9408
9341
|
return self._CoolDownBucket
|
@@ -9414,7 +9347,6 @@ Modify 集群变更中;
|
|
9414
9347
|
@property
|
9415
9348
|
def Details(self):
|
9416
9349
|
"""实例扩展信息
|
9417
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9418
9350
|
:rtype: :class:`tencentcloud.cdwdoris.v20211228.models.InstanceDetail`
|
9419
9351
|
"""
|
9420
9352
|
return self._Details
|
@@ -9426,7 +9358,6 @@ Modify 集群变更中;
|
|
9426
9358
|
@property
|
9427
9359
|
def EnableDlc(self):
|
9428
9360
|
"""是否启用DLC 0:关闭 1:开启
|
9429
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9430
9361
|
:rtype: int
|
9431
9362
|
"""
|
9432
9363
|
return self._EnableDlc
|
@@ -9438,7 +9369,6 @@ Modify 集群变更中;
|
|
9438
9369
|
@property
|
9439
9370
|
def AccountType(self):
|
9440
9371
|
"""账户类型 0:普通用户 1:CAM用户
|
9441
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9442
9372
|
:rtype: int
|
9443
9373
|
"""
|
9444
9374
|
return self._AccountType
|
@@ -9450,7 +9380,6 @@ Modify 集群变更中;
|
|
9450
9380
|
@property
|
9451
9381
|
def MonitorMode(self):
|
9452
9382
|
"""监控模式 0: 老监控 1:新监控
|
9453
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9454
9383
|
:rtype: int
|
9455
9384
|
"""
|
9456
9385
|
return self._MonitorMode
|
@@ -9569,19 +9498,14 @@ class InstanceNode(AbstractModel):
|
|
9569
9498
|
:param _Role: 所属clickhouse cluster名称
|
9570
9499
|
:type Role: str
|
9571
9500
|
:param _Status: 状态
|
9572
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9573
9501
|
:type Status: str
|
9574
9502
|
:param _Rip: rip
|
9575
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9576
9503
|
:type Rip: str
|
9577
9504
|
:param _FeRole: FE节点角色
|
9578
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9579
9505
|
:type FeRole: str
|
9580
9506
|
:param _UUID: UUID
|
9581
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9582
9507
|
:type UUID: str
|
9583
9508
|
:param _Zone: 可用区
|
9584
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9585
9509
|
:type Zone: str
|
9586
9510
|
:param _CreateTime: 创建时间
|
9587
9511
|
:type CreateTime: str
|
@@ -9680,7 +9604,6 @@ class InstanceNode(AbstractModel):
|
|
9680
9604
|
@property
|
9681
9605
|
def Status(self):
|
9682
9606
|
"""状态
|
9683
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9684
9607
|
:rtype: str
|
9685
9608
|
"""
|
9686
9609
|
return self._Status
|
@@ -9692,7 +9615,6 @@ class InstanceNode(AbstractModel):
|
|
9692
9615
|
@property
|
9693
9616
|
def Rip(self):
|
9694
9617
|
"""rip
|
9695
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9696
9618
|
:rtype: str
|
9697
9619
|
"""
|
9698
9620
|
return self._Rip
|
@@ -9704,7 +9626,6 @@ class InstanceNode(AbstractModel):
|
|
9704
9626
|
@property
|
9705
9627
|
def FeRole(self):
|
9706
9628
|
"""FE节点角色
|
9707
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9708
9629
|
:rtype: str
|
9709
9630
|
"""
|
9710
9631
|
return self._FeRole
|
@@ -9716,7 +9637,6 @@ class InstanceNode(AbstractModel):
|
|
9716
9637
|
@property
|
9717
9638
|
def UUID(self):
|
9718
9639
|
"""UUID
|
9719
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9720
9640
|
:rtype: str
|
9721
9641
|
"""
|
9722
9642
|
return self._UUID
|
@@ -9728,7 +9648,6 @@ class InstanceNode(AbstractModel):
|
|
9728
9648
|
@property
|
9729
9649
|
def Zone(self):
|
9730
9650
|
"""可用区
|
9731
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9732
9651
|
:rtype: str
|
9733
9652
|
"""
|
9734
9653
|
return self._Zone
|
@@ -10177,7 +10096,6 @@ class ModifyCoolDownPolicyResponse(AbstractModel):
|
|
10177
10096
|
def __init__(self):
|
10178
10097
|
r"""
|
10179
10098
|
:param _ErrorMsg: 错误信息
|
10180
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10181
10099
|
:type ErrorMsg: str
|
10182
10100
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10183
10101
|
:type RequestId: str
|
@@ -10188,7 +10106,6 @@ class ModifyCoolDownPolicyResponse(AbstractModel):
|
|
10188
10106
|
@property
|
10189
10107
|
def ErrorMsg(self):
|
10190
10108
|
"""错误信息
|
10191
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10192
10109
|
:rtype: str
|
10193
10110
|
"""
|
10194
10111
|
return self._ErrorMsg
|
@@ -10400,7 +10317,6 @@ class ModifyInstanceKeyValConfigsResponse(AbstractModel):
|
|
10400
10317
|
def __init__(self):
|
10401
10318
|
r"""
|
10402
10319
|
:param _ErrorMsg: 错误信息
|
10403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10404
10320
|
:type ErrorMsg: str
|
10405
10321
|
:param _FlowId: ID
|
10406
10322
|
:type FlowId: int
|
@@ -10414,7 +10330,6 @@ class ModifyInstanceKeyValConfigsResponse(AbstractModel):
|
|
10414
10330
|
@property
|
10415
10331
|
def ErrorMsg(self):
|
10416
10332
|
"""错误信息
|
10417
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10418
10333
|
:rtype: str
|
10419
10334
|
"""
|
10420
10335
|
return self._ErrorMsg
|
@@ -10749,7 +10664,6 @@ class ModifySecurityGroupsResponse(AbstractModel):
|
|
10749
10664
|
def __init__(self):
|
10750
10665
|
r"""
|
10751
10666
|
:param _ErrorMsg: 错误信息
|
10752
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10753
10667
|
:type ErrorMsg: str
|
10754
10668
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10755
10669
|
:type RequestId: str
|
@@ -10760,7 +10674,6 @@ class ModifySecurityGroupsResponse(AbstractModel):
|
|
10760
10674
|
@property
|
10761
10675
|
def ErrorMsg(self):
|
10762
10676
|
"""错误信息
|
10763
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10764
10677
|
:rtype: str
|
10765
10678
|
"""
|
10766
10679
|
return self._ErrorMsg
|
@@ -11006,7 +10919,6 @@ class ModifyUserPrivilegesV3Response(AbstractModel):
|
|
11006
10919
|
def __init__(self):
|
11007
10920
|
r"""
|
11008
10921
|
:param _ErrorMsg: 错误信息,为空就是没有错误
|
11009
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11010
10922
|
:type ErrorMsg: str
|
11011
10923
|
:param _InstanceId: 集群id
|
11012
10924
|
:type InstanceId: str
|
@@ -11020,7 +10932,6 @@ class ModifyUserPrivilegesV3Response(AbstractModel):
|
|
11020
10932
|
@property
|
11021
10933
|
def ErrorMsg(self):
|
11022
10934
|
"""错误信息,为空就是没有错误
|
11023
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11024
10935
|
:rtype: str
|
11025
10936
|
"""
|
11026
10937
|
return self._ErrorMsg
|
@@ -11256,13 +11167,10 @@ class NetworkInfo(AbstractModel):
|
|
11256
11167
|
def __init__(self):
|
11257
11168
|
r"""
|
11258
11169
|
:param _Zone: 可用区
|
11259
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11260
11170
|
:type Zone: str
|
11261
11171
|
:param _SubnetId: 子网id
|
11262
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11263
11172
|
:type SubnetId: str
|
11264
11173
|
:param _SubnetIpNum: 当前子网可用ip数
|
11265
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11266
11174
|
:type SubnetIpNum: int
|
11267
11175
|
"""
|
11268
11176
|
self._Zone = None
|
@@ -11272,7 +11180,6 @@ class NetworkInfo(AbstractModel):
|
|
11272
11180
|
@property
|
11273
11181
|
def Zone(self):
|
11274
11182
|
"""可用区
|
11275
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11276
11183
|
:rtype: str
|
11277
11184
|
"""
|
11278
11185
|
return self._Zone
|
@@ -11284,7 +11191,6 @@ class NetworkInfo(AbstractModel):
|
|
11284
11191
|
@property
|
11285
11192
|
def SubnetId(self):
|
11286
11193
|
"""子网id
|
11287
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11288
11194
|
:rtype: str
|
11289
11195
|
"""
|
11290
11196
|
return self._SubnetId
|
@@ -11296,7 +11202,6 @@ class NetworkInfo(AbstractModel):
|
|
11296
11202
|
@property
|
11297
11203
|
def SubnetIpNum(self):
|
11298
11204
|
"""当前子网可用ip数
|
11299
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11300
11205
|
:rtype: int
|
11301
11206
|
"""
|
11302
11207
|
return self._SubnetIpNum
|
@@ -11328,28 +11233,20 @@ class NodeInfo(AbstractModel):
|
|
11328
11233
|
def __init__(self):
|
11329
11234
|
r"""
|
11330
11235
|
:param _Ip: 用户IP
|
11331
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11332
11236
|
:type Ip: str
|
11333
11237
|
:param _Status: 节点状态
|
11334
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11335
11238
|
:type Status: int
|
11336
11239
|
:param _NodeName: 节点角色名
|
11337
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11338
11240
|
:type NodeName: str
|
11339
11241
|
:param _ComponentName: 组件名
|
11340
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11341
11242
|
:type ComponentName: str
|
11342
11243
|
:param _NodeRole: 节点角色
|
11343
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11344
11244
|
:type NodeRole: str
|
11345
11245
|
:param _LastRestartTime: 节点上次重启的时间
|
11346
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11347
11246
|
:type LastRestartTime: str
|
11348
11247
|
:param _Zone: 节点所在可用区
|
11349
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11350
11248
|
:type Zone: str
|
11351
11249
|
:param _Id: Id
|
11352
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11353
11250
|
:type Id: str
|
11354
11251
|
"""
|
11355
11252
|
self._Ip = None
|
@@ -11364,7 +11261,6 @@ class NodeInfo(AbstractModel):
|
|
11364
11261
|
@property
|
11365
11262
|
def Ip(self):
|
11366
11263
|
"""用户IP
|
11367
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11368
11264
|
:rtype: str
|
11369
11265
|
"""
|
11370
11266
|
return self._Ip
|
@@ -11376,7 +11272,6 @@ class NodeInfo(AbstractModel):
|
|
11376
11272
|
@property
|
11377
11273
|
def Status(self):
|
11378
11274
|
"""节点状态
|
11379
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11380
11275
|
:rtype: int
|
11381
11276
|
"""
|
11382
11277
|
return self._Status
|
@@ -11388,7 +11283,6 @@ class NodeInfo(AbstractModel):
|
|
11388
11283
|
@property
|
11389
11284
|
def NodeName(self):
|
11390
11285
|
"""节点角色名
|
11391
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11392
11286
|
:rtype: str
|
11393
11287
|
"""
|
11394
11288
|
return self._NodeName
|
@@ -11400,7 +11294,6 @@ class NodeInfo(AbstractModel):
|
|
11400
11294
|
@property
|
11401
11295
|
def ComponentName(self):
|
11402
11296
|
"""组件名
|
11403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11404
11297
|
:rtype: str
|
11405
11298
|
"""
|
11406
11299
|
return self._ComponentName
|
@@ -11412,7 +11305,6 @@ class NodeInfo(AbstractModel):
|
|
11412
11305
|
@property
|
11413
11306
|
def NodeRole(self):
|
11414
11307
|
"""节点角色
|
11415
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11416
11308
|
:rtype: str
|
11417
11309
|
"""
|
11418
11310
|
return self._NodeRole
|
@@ -11424,7 +11316,6 @@ class NodeInfo(AbstractModel):
|
|
11424
11316
|
@property
|
11425
11317
|
def LastRestartTime(self):
|
11426
11318
|
"""节点上次重启的时间
|
11427
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11428
11319
|
:rtype: str
|
11429
11320
|
"""
|
11430
11321
|
return self._LastRestartTime
|
@@ -11436,7 +11327,6 @@ class NodeInfo(AbstractModel):
|
|
11436
11327
|
@property
|
11437
11328
|
def Zone(self):
|
11438
11329
|
"""节点所在可用区
|
11439
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11440
11330
|
:rtype: str
|
11441
11331
|
"""
|
11442
11332
|
return self._Zone
|
@@ -11448,7 +11338,6 @@ class NodeInfo(AbstractModel):
|
|
11448
11338
|
@property
|
11449
11339
|
def Id(self):
|
11450
11340
|
"""Id
|
11451
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11452
11341
|
:rtype: str
|
11453
11342
|
"""
|
11454
11343
|
return self._Id
|
@@ -11497,10 +11386,8 @@ class NodeInfos(AbstractModel):
|
|
11497
11386
|
:param _LastRestartTime: 上一次重启时间
|
11498
11387
|
:type LastRestartTime: str
|
11499
11388
|
:param _Id: id
|
11500
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11501
11389
|
:type Id: str
|
11502
11390
|
:param _Zone: 可用区
|
11503
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11504
11391
|
:type Zone: str
|
11505
11392
|
:param _CreateTime: 创建时间
|
11506
11393
|
:type CreateTime: str
|
@@ -11584,7 +11471,6 @@ class NodeInfos(AbstractModel):
|
|
11584
11471
|
@property
|
11585
11472
|
def Id(self):
|
11586
11473
|
"""id
|
11587
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11588
11474
|
:rtype: str
|
11589
11475
|
"""
|
11590
11476
|
return self._Id
|
@@ -11596,7 +11482,6 @@ class NodeInfos(AbstractModel):
|
|
11596
11482
|
@property
|
11597
11483
|
def Zone(self):
|
11598
11484
|
"""可用区
|
11599
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11600
11485
|
:rtype: str
|
11601
11486
|
"""
|
11602
11487
|
return self._Zone
|
@@ -11659,25 +11544,18 @@ class NodesSummary(AbstractModel):
|
|
11659
11544
|
:param _DiskDesc: 磁盘描述
|
11660
11545
|
:type DiskDesc: str
|
11661
11546
|
:param _AttachCBSSpec: 挂载云盘信息
|
11662
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11663
11547
|
:type AttachCBSSpec: :class:`tencentcloud.cdwdoris.v20211228.models.AttachCBSSpec`
|
11664
11548
|
:param _SubProductType: 子产品名称
|
11665
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11666
11549
|
:type SubProductType: str
|
11667
11550
|
:param _SpecCore: 规格核数
|
11668
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11669
11551
|
:type SpecCore: int
|
11670
11552
|
:param _SpecMemory: 规格内存
|
11671
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11672
11553
|
:type SpecMemory: int
|
11673
11554
|
:param _DiskCount: 磁盘大小
|
11674
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11675
11555
|
:type DiskCount: int
|
11676
11556
|
:param _Encrypt: 是否加密
|
11677
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11678
11557
|
:type Encrypt: int
|
11679
11558
|
:param _MaxDiskSize: 最大磁盘
|
11680
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11681
11559
|
:type MaxDiskSize: int
|
11682
11560
|
"""
|
11683
11561
|
self._Spec = None
|
@@ -11775,7 +11653,6 @@ class NodesSummary(AbstractModel):
|
|
11775
11653
|
@property
|
11776
11654
|
def AttachCBSSpec(self):
|
11777
11655
|
"""挂载云盘信息
|
11778
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11779
11656
|
:rtype: :class:`tencentcloud.cdwdoris.v20211228.models.AttachCBSSpec`
|
11780
11657
|
"""
|
11781
11658
|
return self._AttachCBSSpec
|
@@ -11787,7 +11664,6 @@ class NodesSummary(AbstractModel):
|
|
11787
11664
|
@property
|
11788
11665
|
def SubProductType(self):
|
11789
11666
|
"""子产品名称
|
11790
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11791
11667
|
:rtype: str
|
11792
11668
|
"""
|
11793
11669
|
return self._SubProductType
|
@@ -11799,7 +11675,6 @@ class NodesSummary(AbstractModel):
|
|
11799
11675
|
@property
|
11800
11676
|
def SpecCore(self):
|
11801
11677
|
"""规格核数
|
11802
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11803
11678
|
:rtype: int
|
11804
11679
|
"""
|
11805
11680
|
return self._SpecCore
|
@@ -11811,7 +11686,6 @@ class NodesSummary(AbstractModel):
|
|
11811
11686
|
@property
|
11812
11687
|
def SpecMemory(self):
|
11813
11688
|
"""规格内存
|
11814
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11815
11689
|
:rtype: int
|
11816
11690
|
"""
|
11817
11691
|
return self._SpecMemory
|
@@ -11823,7 +11697,6 @@ class NodesSummary(AbstractModel):
|
|
11823
11697
|
@property
|
11824
11698
|
def DiskCount(self):
|
11825
11699
|
"""磁盘大小
|
11826
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11827
11700
|
:rtype: int
|
11828
11701
|
"""
|
11829
11702
|
return self._DiskCount
|
@@ -11835,7 +11708,6 @@ class NodesSummary(AbstractModel):
|
|
11835
11708
|
@property
|
11836
11709
|
def Encrypt(self):
|
11837
11710
|
"""是否加密
|
11838
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11839
11711
|
:rtype: int
|
11840
11712
|
"""
|
11841
11713
|
return self._Encrypt
|
@@ -11847,7 +11719,6 @@ class NodesSummary(AbstractModel):
|
|
11847
11719
|
@property
|
11848
11720
|
def MaxDiskSize(self):
|
11849
11721
|
"""最大磁盘
|
11850
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11851
11722
|
:rtype: int
|
11852
11723
|
"""
|
11853
11724
|
return self._MaxDiskSize
|
@@ -12112,7 +11983,6 @@ class OpenCoolDownResponse(AbstractModel):
|
|
12112
11983
|
def __init__(self):
|
12113
11984
|
r"""
|
12114
11985
|
:param _ErrorMsg: 错误信息
|
12115
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12116
11986
|
:type ErrorMsg: str
|
12117
11987
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12118
11988
|
:type RequestId: str
|
@@ -12123,7 +11993,6 @@ class OpenCoolDownResponse(AbstractModel):
|
|
12123
11993
|
@property
|
12124
11994
|
def ErrorMsg(self):
|
12125
11995
|
"""错误信息
|
12126
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12127
11996
|
:rtype: str
|
12128
11997
|
"""
|
12129
11998
|
return self._ErrorMsg
|
@@ -12402,11 +12271,53 @@ class RecoverBackUpJobResponse(AbstractModel):
|
|
12402
12271
|
|
12403
12272
|
def __init__(self):
|
12404
12273
|
r"""
|
12274
|
+
:param _TotalCount: 恢复任务总数量
|
12275
|
+
:type TotalCount: int
|
12276
|
+
:param _DuplicateTables: 重复的表名
|
12277
|
+
:type DuplicateTables: list of str
|
12278
|
+
:param _ErrorMsg: 错误信息
|
12279
|
+
:type ErrorMsg: str
|
12405
12280
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12406
12281
|
:type RequestId: str
|
12407
12282
|
"""
|
12283
|
+
self._TotalCount = None
|
12284
|
+
self._DuplicateTables = None
|
12285
|
+
self._ErrorMsg = None
|
12408
12286
|
self._RequestId = None
|
12409
12287
|
|
12288
|
+
@property
|
12289
|
+
def TotalCount(self):
|
12290
|
+
"""恢复任务总数量
|
12291
|
+
:rtype: int
|
12292
|
+
"""
|
12293
|
+
return self._TotalCount
|
12294
|
+
|
12295
|
+
@TotalCount.setter
|
12296
|
+
def TotalCount(self, TotalCount):
|
12297
|
+
self._TotalCount = TotalCount
|
12298
|
+
|
12299
|
+
@property
|
12300
|
+
def DuplicateTables(self):
|
12301
|
+
"""重复的表名
|
12302
|
+
:rtype: list of str
|
12303
|
+
"""
|
12304
|
+
return self._DuplicateTables
|
12305
|
+
|
12306
|
+
@DuplicateTables.setter
|
12307
|
+
def DuplicateTables(self, DuplicateTables):
|
12308
|
+
self._DuplicateTables = DuplicateTables
|
12309
|
+
|
12310
|
+
@property
|
12311
|
+
def ErrorMsg(self):
|
12312
|
+
"""错误信息
|
12313
|
+
:rtype: str
|
12314
|
+
"""
|
12315
|
+
return self._ErrorMsg
|
12316
|
+
|
12317
|
+
@ErrorMsg.setter
|
12318
|
+
def ErrorMsg(self, ErrorMsg):
|
12319
|
+
self._ErrorMsg = ErrorMsg
|
12320
|
+
|
12410
12321
|
@property
|
12411
12322
|
def RequestId(self):
|
12412
12323
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -12420,6 +12331,9 @@ class RecoverBackUpJobResponse(AbstractModel):
|
|
12420
12331
|
|
12421
12332
|
|
12422
12333
|
def _deserialize(self, params):
|
12334
|
+
self._TotalCount = params.get("TotalCount")
|
12335
|
+
self._DuplicateTables = params.get("DuplicateTables")
|
12336
|
+
self._ErrorMsg = params.get("ErrorMsg")
|
12423
12337
|
self._RequestId = params.get("RequestId")
|
12424
12338
|
|
12425
12339
|
|
@@ -12662,15 +12576,12 @@ class RegionInfo(AbstractModel):
|
|
12662
12576
|
:param _RegionId: 地域唯一标记
|
12663
12577
|
:type RegionId: int
|
12664
12578
|
:param _Zones: 地域下所有可用区列表
|
12665
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12666
12579
|
:type Zones: list of ZoneInfo
|
12667
12580
|
:param _Count: 该地域下集群数目
|
12668
12581
|
:type Count: int
|
12669
12582
|
:param _IsInternationalSite: 0代表是国际站 1代表不是
|
12670
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12671
12583
|
:type IsInternationalSite: int
|
12672
12584
|
:param _Bucket: 桶
|
12673
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12674
12585
|
:type Bucket: str
|
12675
12586
|
"""
|
12676
12587
|
self._Name = None
|
@@ -12717,7 +12628,6 @@ class RegionInfo(AbstractModel):
|
|
12717
12628
|
@property
|
12718
12629
|
def Zones(self):
|
12719
12630
|
"""地域下所有可用区列表
|
12720
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12721
12631
|
:rtype: list of ZoneInfo
|
12722
12632
|
"""
|
12723
12633
|
return self._Zones
|
@@ -12740,7 +12650,6 @@ class RegionInfo(AbstractModel):
|
|
12740
12650
|
@property
|
12741
12651
|
def IsInternationalSite(self):
|
12742
12652
|
"""0代表是国际站 1代表不是
|
12743
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12744
12653
|
:rtype: int
|
12745
12654
|
"""
|
12746
12655
|
return self._IsInternationalSite
|
@@ -12752,7 +12661,6 @@ class RegionInfo(AbstractModel):
|
|
12752
12661
|
@property
|
12753
12662
|
def Bucket(self):
|
12754
12663
|
"""桶
|
12755
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12756
12664
|
:rtype: str
|
12757
12665
|
"""
|
12758
12666
|
return self._Bucket
|
@@ -12940,22 +12848,16 @@ class ResourceSpec(AbstractModel):
|
|
12940
12848
|
:param _Type: 分类标记,STANDARD/BIGDATA/HIGHIO分别表示标准型/大数据型/高IO
|
12941
12849
|
:type Type: str
|
12942
12850
|
:param _SystemDisk: 系统盘描述信息
|
12943
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12944
12851
|
:type SystemDisk: :class:`tencentcloud.cdwdoris.v20211228.models.DiskSpec`
|
12945
12852
|
:param _DataDisk: 数据盘描述信息
|
12946
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12947
12853
|
:type DataDisk: :class:`tencentcloud.cdwdoris.v20211228.models.DiskSpec`
|
12948
12854
|
:param _MaxNodeSize: 最大节点数目限制
|
12949
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12950
12855
|
:type MaxNodeSize: int
|
12951
12856
|
:param _Available: 是否可用,false代表售罄
|
12952
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12953
12857
|
:type Available: bool
|
12954
12858
|
:param _ComputeSpecDesc: 规格描述信息
|
12955
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12956
12859
|
:type ComputeSpecDesc: str
|
12957
12860
|
:param _InstanceQuota: cvm库存
|
12958
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12959
12861
|
:type InstanceQuota: int
|
12960
12862
|
"""
|
12961
12863
|
self._Name = None
|
@@ -13016,7 +12918,6 @@ class ResourceSpec(AbstractModel):
|
|
13016
12918
|
@property
|
13017
12919
|
def SystemDisk(self):
|
13018
12920
|
"""系统盘描述信息
|
13019
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13020
12921
|
:rtype: :class:`tencentcloud.cdwdoris.v20211228.models.DiskSpec`
|
13021
12922
|
"""
|
13022
12923
|
return self._SystemDisk
|
@@ -13028,7 +12929,6 @@ class ResourceSpec(AbstractModel):
|
|
13028
12929
|
@property
|
13029
12930
|
def DataDisk(self):
|
13030
12931
|
"""数据盘描述信息
|
13031
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13032
12932
|
:rtype: :class:`tencentcloud.cdwdoris.v20211228.models.DiskSpec`
|
13033
12933
|
"""
|
13034
12934
|
return self._DataDisk
|
@@ -13040,7 +12940,6 @@ class ResourceSpec(AbstractModel):
|
|
13040
12940
|
@property
|
13041
12941
|
def MaxNodeSize(self):
|
13042
12942
|
"""最大节点数目限制
|
13043
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13044
12943
|
:rtype: int
|
13045
12944
|
"""
|
13046
12945
|
return self._MaxNodeSize
|
@@ -13052,7 +12951,6 @@ class ResourceSpec(AbstractModel):
|
|
13052
12951
|
@property
|
13053
12952
|
def Available(self):
|
13054
12953
|
"""是否可用,false代表售罄
|
13055
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13056
12954
|
:rtype: bool
|
13057
12955
|
"""
|
13058
12956
|
return self._Available
|
@@ -13064,7 +12962,6 @@ class ResourceSpec(AbstractModel):
|
|
13064
12962
|
@property
|
13065
12963
|
def ComputeSpecDesc(self):
|
13066
12964
|
"""规格描述信息
|
13067
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13068
12965
|
:rtype: str
|
13069
12966
|
"""
|
13070
12967
|
return self._ComputeSpecDesc
|
@@ -13076,7 +12973,6 @@ class ResourceSpec(AbstractModel):
|
|
13076
12973
|
@property
|
13077
12974
|
def InstanceQuota(self):
|
13078
12975
|
"""cvm库存
|
13079
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13080
12976
|
:rtype: int
|
13081
12977
|
"""
|
13082
12978
|
return self._InstanceQuota
|
@@ -13439,10 +13335,8 @@ class RestoreStatus(AbstractModel):
|
|
13439
13335
|
:param _ReserveDynamicPartitionEnable: 是否保持源表中的动态分区
|
13440
13336
|
:type ReserveDynamicPartitionEnable: bool
|
13441
13337
|
:param _BackupJobId: 备份实例id
|
13442
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13443
13338
|
:type BackupJobId: int
|
13444
13339
|
:param _TaskId: 实例对应snapshot的id
|
13445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13446
13340
|
:type TaskId: int
|
13447
13341
|
"""
|
13448
13342
|
self._JobId = None
|
@@ -13703,7 +13597,6 @@ class RestoreStatus(AbstractModel):
|
|
13703
13597
|
@property
|
13704
13598
|
def BackupJobId(self):
|
13705
13599
|
"""备份实例id
|
13706
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13707
13600
|
:rtype: int
|
13708
13601
|
"""
|
13709
13602
|
return self._BackupJobId
|
@@ -13715,7 +13608,6 @@ class RestoreStatus(AbstractModel):
|
|
13715
13608
|
@property
|
13716
13609
|
def TaskId(self):
|
13717
13610
|
"""实例对应snapshot的id
|
13718
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13719
13611
|
:rtype: int
|
13720
13612
|
"""
|
13721
13613
|
return self._TaskId
|
@@ -14060,7 +13952,6 @@ class ScheduleInfo(AbstractModel):
|
|
14060
13952
|
def __init__(self):
|
14061
13953
|
r"""
|
14062
13954
|
:param _EffectivePeriod: 生效周期
|
14063
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14064
13955
|
:type EffectivePeriod: str
|
14065
13956
|
:param _ScheduleType: 调度类型,不传该参数时为立即执行:
|
14066
13957
|
Day-天
|
@@ -14068,26 +13959,20 @@ Week-周
|
|
14068
13959
|
Month-月
|
14069
13960
|
Once-单次
|
14070
13961
|
|
14071
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14072
13962
|
:type ScheduleType: str
|
14073
13963
|
:param _ScheduleData: 执行调度的日期。调度类型为周和月时以英文逗号分隔;
|
14074
13964
|
调度类型为单次时,该值是个日期
|
14075
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14076
13965
|
:type ScheduleData: str
|
14077
13966
|
:param _ScheduleHour: 执行时间:时
|
14078
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14079
13967
|
:type ScheduleHour: int
|
14080
13968
|
:param _ScheduleMin: 执行时间:分
|
14081
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14082
13969
|
:type ScheduleMin: int
|
14083
13970
|
:param _BackupScope: 备份粒度:
|
14084
13971
|
All-全量
|
14085
13972
|
Database-按库
|
14086
13973
|
Table-按表
|
14087
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14088
13974
|
:type BackupScope: str
|
14089
13975
|
:param _BackupDatabase: 备份库:如果是按库备份,则需要该字段,库之间用英文逗号分割
|
14090
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14091
13976
|
:type BackupDatabase: str
|
14092
13977
|
"""
|
14093
13978
|
self._EffectivePeriod = None
|
@@ -14101,7 +13986,6 @@ Table-按表
|
|
14101
13986
|
@property
|
14102
13987
|
def EffectivePeriod(self):
|
14103
13988
|
"""生效周期
|
14104
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14105
13989
|
:rtype: str
|
14106
13990
|
"""
|
14107
13991
|
return self._EffectivePeriod
|
@@ -14118,7 +14002,6 @@ Week-周
|
|
14118
14002
|
Month-月
|
14119
14003
|
Once-单次
|
14120
14004
|
|
14121
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14122
14005
|
:rtype: str
|
14123
14006
|
"""
|
14124
14007
|
return self._ScheduleType
|
@@ -14131,7 +14014,6 @@ Once-单次
|
|
14131
14014
|
def ScheduleData(self):
|
14132
14015
|
"""执行调度的日期。调度类型为周和月时以英文逗号分隔;
|
14133
14016
|
调度类型为单次时,该值是个日期
|
14134
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14135
14017
|
:rtype: str
|
14136
14018
|
"""
|
14137
14019
|
return self._ScheduleData
|
@@ -14143,7 +14025,6 @@ Once-单次
|
|
14143
14025
|
@property
|
14144
14026
|
def ScheduleHour(self):
|
14145
14027
|
"""执行时间:时
|
14146
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14147
14028
|
:rtype: int
|
14148
14029
|
"""
|
14149
14030
|
return self._ScheduleHour
|
@@ -14155,7 +14036,6 @@ Once-单次
|
|
14155
14036
|
@property
|
14156
14037
|
def ScheduleMin(self):
|
14157
14038
|
"""执行时间:分
|
14158
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14159
14039
|
:rtype: int
|
14160
14040
|
"""
|
14161
14041
|
return self._ScheduleMin
|
@@ -14170,7 +14050,6 @@ Once-单次
|
|
14170
14050
|
All-全量
|
14171
14051
|
Database-按库
|
14172
14052
|
Table-按表
|
14173
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14174
14053
|
:rtype: str
|
14175
14054
|
"""
|
14176
14055
|
return self._BackupScope
|
@@ -14182,7 +14061,6 @@ Table-按表
|
|
14182
14061
|
@property
|
14183
14062
|
def BackupDatabase(self):
|
14184
14063
|
"""备份库:如果是按库备份,则需要该字段,库之间用英文逗号分割
|
14185
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14186
14064
|
:rtype: str
|
14187
14065
|
"""
|
14188
14066
|
return self._BackupDatabase
|
@@ -14692,7 +14570,6 @@ class UpdateCoolDownResponse(AbstractModel):
|
|
14692
14570
|
def __init__(self):
|
14693
14571
|
r"""
|
14694
14572
|
:param _ErrorMsg: 错误信息
|
14695
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14696
14573
|
:type ErrorMsg: str
|
14697
14574
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14698
14575
|
:type RequestId: str
|
@@ -14703,7 +14580,6 @@ class UpdateCoolDownResponse(AbstractModel):
|
|
14703
14580
|
@property
|
14704
14581
|
def ErrorMsg(self):
|
14705
14582
|
"""错误信息
|
14706
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14707
14583
|
:rtype: str
|
14708
14584
|
"""
|
14709
14585
|
return self._ErrorMsg
|
@@ -14929,10 +14805,8 @@ class UserWorkloadGroup(AbstractModel):
|
|
14929
14805
|
def __init__(self):
|
14930
14806
|
r"""
|
14931
14807
|
:param _UserName: test
|
14932
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14933
14808
|
:type UserName: str
|
14934
14809
|
:param _WorkloadGroupName: normal
|
14935
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14936
14810
|
:type WorkloadGroupName: str
|
14937
14811
|
"""
|
14938
14812
|
self._UserName = None
|
@@ -14941,7 +14815,6 @@ class UserWorkloadGroup(AbstractModel):
|
|
14941
14815
|
@property
|
14942
14816
|
def UserName(self):
|
14943
14817
|
"""test
|
14944
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14945
14818
|
:rtype: str
|
14946
14819
|
"""
|
14947
14820
|
return self._UserName
|
@@ -14953,7 +14826,6 @@ class UserWorkloadGroup(AbstractModel):
|
|
14953
14826
|
@property
|
14954
14827
|
def WorkloadGroupName(self):
|
14955
14828
|
"""normal
|
14956
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14957
14829
|
:rtype: str
|
14958
14830
|
"""
|
14959
14831
|
return self._WorkloadGroupName
|
@@ -14984,19 +14856,14 @@ class WorkloadGroupConfig(AbstractModel):
|
|
14984
14856
|
def __init__(self):
|
14985
14857
|
r"""
|
14986
14858
|
:param _WorkloadGroupName: 资源组名称
|
14987
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14988
14859
|
:type WorkloadGroupName: str
|
14989
14860
|
:param _CpuShare: CPU权重
|
14990
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14991
14861
|
:type CpuShare: int
|
14992
14862
|
:param _MemoryLimit: 内存限制,所有资源组的内存限制值之和应该小于等于100
|
14993
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14994
14863
|
:type MemoryLimit: int
|
14995
14864
|
:param _EnableMemoryOverCommit: 是否允许超配分配
|
14996
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14997
14865
|
:type EnableMemoryOverCommit: bool
|
14998
14866
|
:param _CpuHardLimit: cpu硬限制
|
14999
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15000
14867
|
:type CpuHardLimit: str
|
15001
14868
|
"""
|
15002
14869
|
self._WorkloadGroupName = None
|
@@ -15008,7 +14875,6 @@ class WorkloadGroupConfig(AbstractModel):
|
|
15008
14875
|
@property
|
15009
14876
|
def WorkloadGroupName(self):
|
15010
14877
|
"""资源组名称
|
15011
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15012
14878
|
:rtype: str
|
15013
14879
|
"""
|
15014
14880
|
return self._WorkloadGroupName
|
@@ -15020,7 +14886,6 @@ class WorkloadGroupConfig(AbstractModel):
|
|
15020
14886
|
@property
|
15021
14887
|
def CpuShare(self):
|
15022
14888
|
"""CPU权重
|
15023
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15024
14889
|
:rtype: int
|
15025
14890
|
"""
|
15026
14891
|
return self._CpuShare
|
@@ -15032,7 +14897,6 @@ class WorkloadGroupConfig(AbstractModel):
|
|
15032
14897
|
@property
|
15033
14898
|
def MemoryLimit(self):
|
15034
14899
|
"""内存限制,所有资源组的内存限制值之和应该小于等于100
|
15035
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15036
14900
|
:rtype: int
|
15037
14901
|
"""
|
15038
14902
|
return self._MemoryLimit
|
@@ -15044,7 +14908,6 @@ class WorkloadGroupConfig(AbstractModel):
|
|
15044
14908
|
@property
|
15045
14909
|
def EnableMemoryOverCommit(self):
|
15046
14910
|
"""是否允许超配分配
|
15047
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15048
14911
|
:rtype: bool
|
15049
14912
|
"""
|
15050
14913
|
return self._EnableMemoryOverCommit
|
@@ -15056,7 +14919,6 @@ class WorkloadGroupConfig(AbstractModel):
|
|
15056
14919
|
@property
|
15057
14920
|
def CpuHardLimit(self):
|
15058
14921
|
"""cpu硬限制
|
15059
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15060
14922
|
:rtype: str
|
15061
14923
|
"""
|
15062
14924
|
return self._CpuHardLimit
|
@@ -15096,10 +14958,8 @@ class ZoneInfo(AbstractModel):
|
|
15096
14958
|
:param _ZoneId: 可用区唯一标记
|
15097
14959
|
:type ZoneId: int
|
15098
14960
|
:param _Encrypt: Encryptid
|
15099
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15100
14961
|
:type Encrypt: int
|
15101
14962
|
:param _Main: 是否为主力园区
|
15102
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15103
14963
|
:type Main: bool
|
15104
14964
|
"""
|
15105
14965
|
self._Name = None
|
@@ -15144,7 +15004,6 @@ class ZoneInfo(AbstractModel):
|
|
15144
15004
|
@property
|
15145
15005
|
def Encrypt(self):
|
15146
15006
|
"""Encryptid
|
15147
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15148
15007
|
:rtype: int
|
15149
15008
|
"""
|
15150
15009
|
return self._Encrypt
|
@@ -15156,7 +15015,6 @@ class ZoneInfo(AbstractModel):
|
|
15156
15015
|
@property
|
15157
15016
|
def Main(self):
|
15158
15017
|
"""是否为主力园区
|
15159
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15160
15018
|
:rtype: bool
|
15161
15019
|
"""
|
15162
15020
|
return self._Main
|