tencentcloud-sdk-python 3.0.1289__py2.py3-none-any.whl → 3.0.1291__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/cdb/v20170320/cdb_client.py +22 -23
- tencentcloud/cdb/v20170320/errorcodes.py +3 -0
- tencentcloud/cdb/v20170320/models.py +120 -76
- tencentcloud/cdwdoris/v20211228/models.py +43 -0
- tencentcloud/chdfs/v20201112/models.py +15 -27
- tencentcloud/clb/v20180317/models.py +28 -4
- tencentcloud/csip/v20221121/csip_client.py +115 -0
- tencentcloud/csip/v20221121/models.py +10798 -8153
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +4 -4
- tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
- tencentcloud/cynosdb/v20190107/models.py +4 -4
- tencentcloud/dbbrain/v20210527/models.py +4 -4
- tencentcloud/dc/v20180410/models.py +114 -18
- tencentcloud/dts/v20211206/models.py +17 -17
- tencentcloud/ecm/v20190719/models.py +0 -8
- tencentcloud/ess/v20201111/models.py +50 -12
- tencentcloud/essbasic/v20210526/models.py +50 -0
- tencentcloud/facefusion/v20220927/models.py +2 -6
- tencentcloud/hunyuan/v20230901/models.py +38 -0
- tencentcloud/lcic/v20220817/models.py +4 -2
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +11 -2
- tencentcloud/live/v20180801/models.py +0 -18
- tencentcloud/mongodb/v20190725/models.py +17 -4
- tencentcloud/ocr/v20181119/ocr_client.py +1 -1
- tencentcloud/redis/v20180412/models.py +2 -2
- tencentcloud/sqlserver/v20180328/models.py +256 -12
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +2 -2
- tencentcloud/tdmq/v20200217/models.py +109 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/trocket/v20230308/models.py +970 -51
- tencentcloud/trocket/v20230308/trocket_client.py +69 -0
- tencentcloud/tsf/v20180326/models.py +4 -4
- tencentcloud/tsf/v20180326/tsf_client.py +3 -1
- tencentcloud/vod/v20180717/models.py +48 -0
- {tencentcloud_sdk_python-3.0.1289.dist-info → tencentcloud_sdk_python-3.0.1291.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1289.dist-info → tencentcloud_sdk_python-3.0.1291.dist-info}/RECORD +40 -40
- {tencentcloud_sdk_python-3.0.1289.dist-info → tencentcloud_sdk_python-3.0.1291.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1289.dist-info → tencentcloud_sdk_python-3.0.1291.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1289.dist-info → tencentcloud_sdk_python-3.0.1291.dist-info}/top_level.txt +0 -0
@@ -90,6 +90,8 @@ class AccountInfo(AbstractModel):
|
|
90
90
|
:type CreateTime: str
|
91
91
|
:param _MaxUserConnections: 用户最大可用实例连接数
|
92
92
|
:type MaxUserConnections: int
|
93
|
+
:param _OpenCam: 用户账号是否开启了密码轮转
|
94
|
+
:type OpenCam: bool
|
93
95
|
"""
|
94
96
|
self._Notes = None
|
95
97
|
self._Host = None
|
@@ -98,6 +100,7 @@ class AccountInfo(AbstractModel):
|
|
98
100
|
self._ModifyPasswordTime = None
|
99
101
|
self._CreateTime = None
|
100
102
|
self._MaxUserConnections = None
|
103
|
+
self._OpenCam = None
|
101
104
|
|
102
105
|
@property
|
103
106
|
def Notes(self):
|
@@ -176,6 +179,17 @@ class AccountInfo(AbstractModel):
|
|
176
179
|
def MaxUserConnections(self, MaxUserConnections):
|
177
180
|
self._MaxUserConnections = MaxUserConnections
|
178
181
|
|
182
|
+
@property
|
183
|
+
def OpenCam(self):
|
184
|
+
"""用户账号是否开启了密码轮转
|
185
|
+
:rtype: bool
|
186
|
+
"""
|
187
|
+
return self._OpenCam
|
188
|
+
|
189
|
+
@OpenCam.setter
|
190
|
+
def OpenCam(self, OpenCam):
|
191
|
+
self._OpenCam = OpenCam
|
192
|
+
|
179
193
|
|
180
194
|
def _deserialize(self, params):
|
181
195
|
self._Notes = params.get("Notes")
|
@@ -185,6 +199,7 @@ class AccountInfo(AbstractModel):
|
|
185
199
|
self._ModifyPasswordTime = params.get("ModifyPasswordTime")
|
186
200
|
self._CreateTime = params.get("CreateTime")
|
187
201
|
self._MaxUserConnections = params.get("MaxUserConnections")
|
202
|
+
self._OpenCam = params.get("OpenCam")
|
188
203
|
memeber_set = set(params.keys())
|
189
204
|
for name, value in vars(self).items():
|
190
205
|
property_name = name[1:]
|
@@ -2749,19 +2764,14 @@ class AuditRuleTemplateInfo(AbstractModel):
|
|
2749
2764
|
:param _CreateAt: 规则模板创建时间。
|
2750
2765
|
:type CreateAt: str
|
2751
2766
|
:param _AlarmLevel: 告警等级。1-低风险,2-中风险,3-高风险。
|
2752
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2753
2767
|
:type AlarmLevel: int
|
2754
2768
|
:param _AlarmPolicy: 告警策略。0-不告警,1-告警。
|
2755
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2756
2769
|
:type AlarmPolicy: int
|
2757
2770
|
:param _AffectedInstances: 规则模板应用在哪些在实例。
|
2758
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2759
2771
|
:type AffectedInstances: list of str
|
2760
2772
|
:param _Status: 模板状态。0-无任务 ,1-修改中。
|
2761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2762
2773
|
:type Status: int
|
2763
2774
|
:param _UpdateAt: 模板更新时间。
|
2764
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2765
2775
|
:type UpdateAt: str
|
2766
2776
|
"""
|
2767
2777
|
self._RuleTemplateId = None
|
@@ -2834,7 +2844,6 @@ class AuditRuleTemplateInfo(AbstractModel):
|
|
2834
2844
|
@property
|
2835
2845
|
def AlarmLevel(self):
|
2836
2846
|
"""告警等级。1-低风险,2-中风险,3-高风险。
|
2837
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2838
2847
|
:rtype: int
|
2839
2848
|
"""
|
2840
2849
|
return self._AlarmLevel
|
@@ -2846,7 +2855,6 @@ class AuditRuleTemplateInfo(AbstractModel):
|
|
2846
2855
|
@property
|
2847
2856
|
def AlarmPolicy(self):
|
2848
2857
|
"""告警策略。0-不告警,1-告警。
|
2849
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2850
2858
|
:rtype: int
|
2851
2859
|
"""
|
2852
2860
|
return self._AlarmPolicy
|
@@ -2858,7 +2866,6 @@ class AuditRuleTemplateInfo(AbstractModel):
|
|
2858
2866
|
@property
|
2859
2867
|
def AffectedInstances(self):
|
2860
2868
|
"""规则模板应用在哪些在实例。
|
2861
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2862
2869
|
:rtype: list of str
|
2863
2870
|
"""
|
2864
2871
|
return self._AffectedInstances
|
@@ -2870,7 +2877,6 @@ class AuditRuleTemplateInfo(AbstractModel):
|
|
2870
2877
|
@property
|
2871
2878
|
def Status(self):
|
2872
2879
|
"""模板状态。0-无任务 ,1-修改中。
|
2873
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2874
2880
|
:rtype: int
|
2875
2881
|
"""
|
2876
2882
|
return self._Status
|
@@ -2882,7 +2888,6 @@ class AuditRuleTemplateInfo(AbstractModel):
|
|
2882
2888
|
@property
|
2883
2889
|
def UpdateAt(self):
|
2884
2890
|
"""模板更新时间。
|
2885
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2886
2891
|
:rtype: str
|
2887
2892
|
"""
|
2888
2893
|
return self._UpdateAt
|
@@ -3129,7 +3134,6 @@ class BackupInfo(AbstractModel):
|
|
3129
3134
|
注意:此字段可能返回 null,表示取不到有效值。
|
3130
3135
|
:type EncryptionFlag: str
|
3131
3136
|
:param _ExecutedGTIDSet: 备份GTID点位
|
3132
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3133
3137
|
:type ExecutedGTIDSet: str
|
3134
3138
|
"""
|
3135
3139
|
self._Name = None
|
@@ -3378,7 +3382,6 @@ class BackupInfo(AbstractModel):
|
|
3378
3382
|
@property
|
3379
3383
|
def ExecutedGTIDSet(self):
|
3380
3384
|
"""备份GTID点位
|
3381
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3382
3385
|
:rtype: str
|
3383
3386
|
"""
|
3384
3387
|
return self._ExecutedGTIDSet
|
@@ -5693,13 +5696,10 @@ class ClusterInfo(AbstractModel):
|
|
5693
5696
|
def __init__(self):
|
5694
5697
|
r"""
|
5695
5698
|
:param _NodeId: 节点id
|
5696
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5697
5699
|
:type NodeId: str
|
5698
5700
|
:param _Role: 节点类型:主节点,从节点
|
5699
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5700
5701
|
:type Role: str
|
5701
5702
|
:param _Zone: 地域
|
5702
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5703
5703
|
:type Zone: str
|
5704
5704
|
"""
|
5705
5705
|
self._NodeId = None
|
@@ -5709,7 +5709,6 @@ class ClusterInfo(AbstractModel):
|
|
5709
5709
|
@property
|
5710
5710
|
def NodeId(self):
|
5711
5711
|
"""节点id
|
5712
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5713
5712
|
:rtype: str
|
5714
5713
|
"""
|
5715
5714
|
return self._NodeId
|
@@ -5721,7 +5720,6 @@ class ClusterInfo(AbstractModel):
|
|
5721
5720
|
@property
|
5722
5721
|
def Role(self):
|
5723
5722
|
"""节点类型:主节点,从节点
|
5724
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5725
5723
|
:rtype: str
|
5726
5724
|
"""
|
5727
5725
|
return self._Role
|
@@ -5733,7 +5731,6 @@ class ClusterInfo(AbstractModel):
|
|
5733
5731
|
@property
|
5734
5732
|
def Zone(self):
|
5735
5733
|
"""地域
|
5736
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5737
5734
|
:rtype: str
|
5738
5735
|
"""
|
5739
5736
|
return self._Zone
|
@@ -6924,15 +6921,18 @@ class CreateBackupRequest(AbstractModel):
|
|
6924
6921
|
:param _BackupMethod: 目标备份方法,可选的值:logical - 逻辑冷备,physical - 物理冷备,snapshot - 快照备份。基础版实例仅支持快照备份。
|
6925
6922
|
:type BackupMethod: str
|
6926
6923
|
:param _BackupDBTableList: 需要备份的库表信息,如果不设置该参数,则默认整实例备份。在 BackupMethod=logical 逻辑备份中才可设置该参数。指定的库表必须存在,否则可能导致备份失败。
|
6927
|
-
例:如果需要备份 db1 库的 tb1、tb2 表 和 db2 库。则该参数设置为 [{"Db": "db1", "Table": "tb1"}, {"Db": "db1", "Table": "tb2"}, {"Db": "db2"}
|
6924
|
+
例:如果需要备份 db1 库的 tb1、tb2 表 和 db2 库。则该参数设置为 [{"Db": "db1", "Table": "tb1"}, {"Db": "db1", "Table": "tb2"}, {"Db": "db2"}]。
|
6928
6925
|
:type BackupDBTableList: list of BackupItem
|
6929
6926
|
:param _ManualBackupName: 手动备份别名
|
6930
6927
|
:type ManualBackupName: str
|
6928
|
+
:param _EncryptionFlag: 是否需要加密物理备份, 当BackupMethod为physical 时,该值才有意义。 不指定则使用实例备份默认加密策略。
|
6929
|
+
:type EncryptionFlag: str
|
6931
6930
|
"""
|
6932
6931
|
self._InstanceId = None
|
6933
6932
|
self._BackupMethod = None
|
6934
6933
|
self._BackupDBTableList = None
|
6935
6934
|
self._ManualBackupName = None
|
6935
|
+
self._EncryptionFlag = None
|
6936
6936
|
|
6937
6937
|
@property
|
6938
6938
|
def InstanceId(self):
|
@@ -6959,7 +6959,7 @@ class CreateBackupRequest(AbstractModel):
|
|
6959
6959
|
@property
|
6960
6960
|
def BackupDBTableList(self):
|
6961
6961
|
"""需要备份的库表信息,如果不设置该参数,则默认整实例备份。在 BackupMethod=logical 逻辑备份中才可设置该参数。指定的库表必须存在,否则可能导致备份失败。
|
6962
|
-
例:如果需要备份 db1 库的 tb1、tb2 表 和 db2 库。则该参数设置为 [{"Db": "db1", "Table": "tb1"}, {"Db": "db1", "Table": "tb2"}, {"Db": "db2"}
|
6962
|
+
例:如果需要备份 db1 库的 tb1、tb2 表 和 db2 库。则该参数设置为 [{"Db": "db1", "Table": "tb1"}, {"Db": "db1", "Table": "tb2"}, {"Db": "db2"}]。
|
6963
6963
|
:rtype: list of BackupItem
|
6964
6964
|
"""
|
6965
6965
|
return self._BackupDBTableList
|
@@ -6979,6 +6979,17 @@ class CreateBackupRequest(AbstractModel):
|
|
6979
6979
|
def ManualBackupName(self, ManualBackupName):
|
6980
6980
|
self._ManualBackupName = ManualBackupName
|
6981
6981
|
|
6982
|
+
@property
|
6983
|
+
def EncryptionFlag(self):
|
6984
|
+
"""是否需要加密物理备份, 当BackupMethod为physical 时,该值才有意义。 不指定则使用实例备份默认加密策略。
|
6985
|
+
:rtype: str
|
6986
|
+
"""
|
6987
|
+
return self._EncryptionFlag
|
6988
|
+
|
6989
|
+
@EncryptionFlag.setter
|
6990
|
+
def EncryptionFlag(self, EncryptionFlag):
|
6991
|
+
self._EncryptionFlag = EncryptionFlag
|
6992
|
+
|
6982
6993
|
|
6983
6994
|
def _deserialize(self, params):
|
6984
6995
|
self._InstanceId = params.get("InstanceId")
|
@@ -6990,6 +7001,7 @@ class CreateBackupRequest(AbstractModel):
|
|
6990
7001
|
obj._deserialize(item)
|
6991
7002
|
self._BackupDBTableList.append(obj)
|
6992
7003
|
self._ManualBackupName = params.get("ManualBackupName")
|
7004
|
+
self._EncryptionFlag = params.get("EncryptionFlag")
|
6993
7005
|
memeber_set = set(params.keys())
|
6994
7006
|
for name, value in vars(self).items():
|
6995
7007
|
property_name = name[1:]
|
@@ -12989,10 +13001,8 @@ class DescribeAuditRuleTemplateModifyHistoryResponse(AbstractModel):
|
|
12989
13001
|
def __init__(self):
|
12990
13002
|
r"""
|
12991
13003
|
:param _TotalCount: 总的条数。
|
12992
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12993
13004
|
:type TotalCount: int
|
12994
13005
|
:param _Items: 变更详情。
|
12995
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12996
13006
|
:type Items: list of RuleTemplateRecordInfo
|
12997
13007
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12998
13008
|
:type RequestId: str
|
@@ -13004,7 +13014,6 @@ class DescribeAuditRuleTemplateModifyHistoryResponse(AbstractModel):
|
|
13004
13014
|
@property
|
13005
13015
|
def TotalCount(self):
|
13006
13016
|
"""总的条数。
|
13007
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13008
13017
|
:rtype: int
|
13009
13018
|
"""
|
13010
13019
|
return self._TotalCount
|
@@ -13016,7 +13025,6 @@ class DescribeAuditRuleTemplateModifyHistoryResponse(AbstractModel):
|
|
13016
13025
|
@property
|
13017
13026
|
def Items(self):
|
13018
13027
|
"""变更详情。
|
13019
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13020
13028
|
:rtype: list of RuleTemplateRecordInfo
|
13021
13029
|
"""
|
13022
13030
|
return self._Items
|
@@ -16322,10 +16330,8 @@ class DescribeDBInstanceLogToCLSResponse(AbstractModel):
|
|
16322
16330
|
def __init__(self):
|
16323
16331
|
r"""
|
16324
16332
|
:param _ErrorLog: 错误日志投递CLS配置
|
16325
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16326
16333
|
:type ErrorLog: :class:`tencentcloud.cdb.v20170320.models.LogToCLSConfig`
|
16327
16334
|
:param _SlowLog: 慢日志投递CLS配置
|
16328
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16329
16335
|
:type SlowLog: :class:`tencentcloud.cdb.v20170320.models.LogToCLSConfig`
|
16330
16336
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16331
16337
|
:type RequestId: str
|
@@ -16337,7 +16343,6 @@ class DescribeDBInstanceLogToCLSResponse(AbstractModel):
|
|
16337
16343
|
@property
|
16338
16344
|
def ErrorLog(self):
|
16339
16345
|
"""错误日志投递CLS配置
|
16340
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16341
16346
|
:rtype: :class:`tencentcloud.cdb.v20170320.models.LogToCLSConfig`
|
16342
16347
|
"""
|
16343
16348
|
return self._ErrorLog
|
@@ -16349,7 +16354,6 @@ class DescribeDBInstanceLogToCLSResponse(AbstractModel):
|
|
16349
16354
|
@property
|
16350
16355
|
def SlowLog(self):
|
16351
16356
|
"""慢日志投递CLS配置
|
16352
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16353
16357
|
:rtype: :class:`tencentcloud.cdb.v20170320.models.LogToCLSConfig`
|
16354
16358
|
"""
|
16355
16359
|
return self._SlowLog
|
@@ -21161,9 +21165,11 @@ class DescribeSlowLogDataRequest(AbstractModel):
|
|
21161
21165
|
r"""
|
21162
21166
|
:param _InstanceId: 实例 ID。
|
21163
21167
|
:type InstanceId: str
|
21164
|
-
:param _StartTime: 开始时间戳。例如 1585142640
|
21168
|
+
:param _StartTime: 开始时间戳。例如 1585142640。
|
21169
|
+
说明:此参数单位为秒的时间戳。
|
21165
21170
|
:type StartTime: int
|
21166
|
-
:param _EndTime: 结束时间戳。例如 1585142640
|
21171
|
+
:param _EndTime: 结束时间戳。例如 1585142640。
|
21172
|
+
说明:此参数单位为秒的时间戳。
|
21167
21173
|
:type EndTime: int
|
21168
21174
|
:param _UserHosts: 客户端 Host 列表。
|
21169
21175
|
:type UserHosts: list of str
|
@@ -21210,7 +21216,8 @@ class DescribeSlowLogDataRequest(AbstractModel):
|
|
21210
21216
|
|
21211
21217
|
@property
|
21212
21218
|
def StartTime(self):
|
21213
|
-
"""开始时间戳。例如 1585142640
|
21219
|
+
"""开始时间戳。例如 1585142640。
|
21220
|
+
说明:此参数单位为秒的时间戳。
|
21214
21221
|
:rtype: int
|
21215
21222
|
"""
|
21216
21223
|
return self._StartTime
|
@@ -21221,7 +21228,8 @@ class DescribeSlowLogDataRequest(AbstractModel):
|
|
21221
21228
|
|
21222
21229
|
@property
|
21223
21230
|
def EndTime(self):
|
21224
|
-
"""结束时间戳。例如 1585142640
|
21231
|
+
"""结束时间戳。例如 1585142640。
|
21232
|
+
说明:此参数单位为秒的时间戳。
|
21225
21233
|
:rtype: int
|
21226
21234
|
"""
|
21227
21235
|
return self._EndTime
|
@@ -23169,30 +23177,43 @@ class ImportRecord(AbstractModel):
|
|
23169
23177
|
def __init__(self):
|
23170
23178
|
r"""
|
23171
23179
|
:param _Status: 状态值
|
23180
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23172
23181
|
:type Status: int
|
23173
23182
|
:param _Code: 状态值
|
23183
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23174
23184
|
:type Code: int
|
23175
23185
|
:param _CostTime: 执行时间
|
23186
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23176
23187
|
:type CostTime: int
|
23177
23188
|
:param _InstanceId: 实例ID
|
23189
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23178
23190
|
:type InstanceId: str
|
23179
23191
|
:param _WorkId: 后端任务ID
|
23192
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23180
23193
|
:type WorkId: str
|
23181
23194
|
:param _FileName: 导入文件名
|
23195
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23182
23196
|
:type FileName: str
|
23183
23197
|
:param _Process: 执行进度
|
23198
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23184
23199
|
:type Process: int
|
23185
23200
|
:param _CreateTime: 任务创建时间
|
23201
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23186
23202
|
:type CreateTime: str
|
23187
23203
|
:param _FileSize: 文件大小
|
23204
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23188
23205
|
:type FileSize: str
|
23189
23206
|
:param _Message: 任务执行信息
|
23207
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23190
23208
|
:type Message: str
|
23191
23209
|
:param _JobId: 任务ID
|
23210
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23192
23211
|
:type JobId: int
|
23193
23212
|
:param _DbName: 导入库表名
|
23213
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23194
23214
|
:type DbName: str
|
23195
23215
|
:param _AsyncRequestId: 异步任务的请求ID
|
23216
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23196
23217
|
:type AsyncRequestId: str
|
23197
23218
|
"""
|
23198
23219
|
self._Status = None
|
@@ -23212,6 +23233,7 @@ class ImportRecord(AbstractModel):
|
|
23212
23233
|
@property
|
23213
23234
|
def Status(self):
|
23214
23235
|
"""状态值
|
23236
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23215
23237
|
:rtype: int
|
23216
23238
|
"""
|
23217
23239
|
return self._Status
|
@@ -23223,6 +23245,7 @@ class ImportRecord(AbstractModel):
|
|
23223
23245
|
@property
|
23224
23246
|
def Code(self):
|
23225
23247
|
"""状态值
|
23248
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23226
23249
|
:rtype: int
|
23227
23250
|
"""
|
23228
23251
|
return self._Code
|
@@ -23234,6 +23257,7 @@ class ImportRecord(AbstractModel):
|
|
23234
23257
|
@property
|
23235
23258
|
def CostTime(self):
|
23236
23259
|
"""执行时间
|
23260
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23237
23261
|
:rtype: int
|
23238
23262
|
"""
|
23239
23263
|
return self._CostTime
|
@@ -23245,6 +23269,7 @@ class ImportRecord(AbstractModel):
|
|
23245
23269
|
@property
|
23246
23270
|
def InstanceId(self):
|
23247
23271
|
"""实例ID
|
23272
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23248
23273
|
:rtype: str
|
23249
23274
|
"""
|
23250
23275
|
return self._InstanceId
|
@@ -23256,6 +23281,7 @@ class ImportRecord(AbstractModel):
|
|
23256
23281
|
@property
|
23257
23282
|
def WorkId(self):
|
23258
23283
|
"""后端任务ID
|
23284
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23259
23285
|
:rtype: str
|
23260
23286
|
"""
|
23261
23287
|
return self._WorkId
|
@@ -23267,6 +23293,7 @@ class ImportRecord(AbstractModel):
|
|
23267
23293
|
@property
|
23268
23294
|
def FileName(self):
|
23269
23295
|
"""导入文件名
|
23296
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23270
23297
|
:rtype: str
|
23271
23298
|
"""
|
23272
23299
|
return self._FileName
|
@@ -23278,6 +23305,7 @@ class ImportRecord(AbstractModel):
|
|
23278
23305
|
@property
|
23279
23306
|
def Process(self):
|
23280
23307
|
"""执行进度
|
23308
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23281
23309
|
:rtype: int
|
23282
23310
|
"""
|
23283
23311
|
return self._Process
|
@@ -23289,6 +23317,7 @@ class ImportRecord(AbstractModel):
|
|
23289
23317
|
@property
|
23290
23318
|
def CreateTime(self):
|
23291
23319
|
"""任务创建时间
|
23320
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23292
23321
|
:rtype: str
|
23293
23322
|
"""
|
23294
23323
|
return self._CreateTime
|
@@ -23300,6 +23329,7 @@ class ImportRecord(AbstractModel):
|
|
23300
23329
|
@property
|
23301
23330
|
def FileSize(self):
|
23302
23331
|
"""文件大小
|
23332
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23303
23333
|
:rtype: str
|
23304
23334
|
"""
|
23305
23335
|
return self._FileSize
|
@@ -23311,6 +23341,7 @@ class ImportRecord(AbstractModel):
|
|
23311
23341
|
@property
|
23312
23342
|
def Message(self):
|
23313
23343
|
"""任务执行信息
|
23344
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23314
23345
|
:rtype: str
|
23315
23346
|
"""
|
23316
23347
|
return self._Message
|
@@ -23322,6 +23353,7 @@ class ImportRecord(AbstractModel):
|
|
23322
23353
|
@property
|
23323
23354
|
def JobId(self):
|
23324
23355
|
"""任务ID
|
23356
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23325
23357
|
:rtype: int
|
23326
23358
|
"""
|
23327
23359
|
return self._JobId
|
@@ -23333,6 +23365,7 @@ class ImportRecord(AbstractModel):
|
|
23333
23365
|
@property
|
23334
23366
|
def DbName(self):
|
23335
23367
|
"""导入库表名
|
23368
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23336
23369
|
:rtype: str
|
23337
23370
|
"""
|
23338
23371
|
return self._DbName
|
@@ -23344,6 +23377,7 @@ class ImportRecord(AbstractModel):
|
|
23344
23377
|
@property
|
23345
23378
|
def AsyncRequestId(self):
|
23346
23379
|
"""异步任务的请求ID
|
23380
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23347
23381
|
:rtype: str
|
23348
23382
|
"""
|
23349
23383
|
return self._AsyncRequestId
|
@@ -23959,7 +23993,6 @@ class InstanceDbAuditStatus(AbstractModel):
|
|
23959
23993
|
注意:此字段可能返回 null,表示取不到有效值。
|
23960
23994
|
:type OldRule: bool
|
23961
23995
|
:param _RuleTemplateIds: 实例所应用的规则模板。
|
23962
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23963
23996
|
:type RuleTemplateIds: list of str
|
23964
23997
|
"""
|
23965
23998
|
self._InstanceId = None
|
@@ -24147,7 +24180,6 @@ class InstanceDbAuditStatus(AbstractModel):
|
|
24147
24180
|
@property
|
24148
24181
|
def RuleTemplateIds(self):
|
24149
24182
|
"""实例所应用的规则模板。
|
24150
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24151
24183
|
:rtype: list of str
|
24152
24184
|
"""
|
24153
24185
|
return self._RuleTemplateIds
|
@@ -25041,12 +25073,16 @@ class InstanceRollbackRangeTime(AbstractModel):
|
|
25041
25073
|
def __init__(self):
|
25042
25074
|
r"""
|
25043
25075
|
:param _Code: 查询数据库错误码
|
25076
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25044
25077
|
:type Code: int
|
25045
25078
|
:param _Message: 查询数据库错误信息
|
25079
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25046
25080
|
:type Message: str
|
25047
25081
|
:param _InstanceId: 实例ID列表,单个实例Id的格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例ID相同
|
25082
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25048
25083
|
:type InstanceId: str
|
25049
25084
|
:param _Times: 可回档时间范围
|
25085
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25050
25086
|
:type Times: list of RollbackTimeRange
|
25051
25087
|
"""
|
25052
25088
|
self._Code = None
|
@@ -25057,6 +25093,7 @@ class InstanceRollbackRangeTime(AbstractModel):
|
|
25057
25093
|
@property
|
25058
25094
|
def Code(self):
|
25059
25095
|
"""查询数据库错误码
|
25096
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25060
25097
|
:rtype: int
|
25061
25098
|
"""
|
25062
25099
|
return self._Code
|
@@ -25068,6 +25105,7 @@ class InstanceRollbackRangeTime(AbstractModel):
|
|
25068
25105
|
@property
|
25069
25106
|
def Message(self):
|
25070
25107
|
"""查询数据库错误信息
|
25108
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25071
25109
|
:rtype: str
|
25072
25110
|
"""
|
25073
25111
|
return self._Message
|
@@ -25079,6 +25117,7 @@ class InstanceRollbackRangeTime(AbstractModel):
|
|
25079
25117
|
@property
|
25080
25118
|
def InstanceId(self):
|
25081
25119
|
"""实例ID列表,单个实例Id的格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例ID相同
|
25120
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25082
25121
|
:rtype: str
|
25083
25122
|
"""
|
25084
25123
|
return self._InstanceId
|
@@ -25090,6 +25129,7 @@ class InstanceRollbackRangeTime(AbstractModel):
|
|
25090
25129
|
@property
|
25091
25130
|
def Times(self):
|
25092
25131
|
"""可回档时间范围
|
25132
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25093
25133
|
:rtype: list of RollbackTimeRange
|
25094
25134
|
"""
|
25095
25135
|
return self._Times
|
@@ -25399,16 +25439,12 @@ class LogToCLSConfig(AbstractModel):
|
|
25399
25439
|
def __init__(self):
|
25400
25440
|
r"""
|
25401
25441
|
:param _Status: 投递状态打开或者关闭
|
25402
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25403
25442
|
:type Status: str
|
25404
25443
|
:param _LogSetId: CLS日志集ID
|
25405
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25406
25444
|
:type LogSetId: str
|
25407
25445
|
:param _LogTopicId: 日志主题ID
|
25408
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25409
25446
|
:type LogTopicId: str
|
25410
25447
|
:param _ClsRegion: CLS服务所在地域
|
25411
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25412
25448
|
:type ClsRegion: str
|
25413
25449
|
"""
|
25414
25450
|
self._Status = None
|
@@ -25419,7 +25455,6 @@ class LogToCLSConfig(AbstractModel):
|
|
25419
25455
|
@property
|
25420
25456
|
def Status(self):
|
25421
25457
|
"""投递状态打开或者关闭
|
25422
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25423
25458
|
:rtype: str
|
25424
25459
|
"""
|
25425
25460
|
return self._Status
|
@@ -25431,7 +25466,6 @@ class LogToCLSConfig(AbstractModel):
|
|
25431
25466
|
@property
|
25432
25467
|
def LogSetId(self):
|
25433
25468
|
"""CLS日志集ID
|
25434
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25435
25469
|
:rtype: str
|
25436
25470
|
"""
|
25437
25471
|
return self._LogSetId
|
@@ -25443,7 +25477,6 @@ class LogToCLSConfig(AbstractModel):
|
|
25443
25477
|
@property
|
25444
25478
|
def LogTopicId(self):
|
25445
25479
|
"""日志主题ID
|
25446
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25447
25480
|
:rtype: str
|
25448
25481
|
"""
|
25449
25482
|
return self._LogTopicId
|
@@ -25455,7 +25488,6 @@ class LogToCLSConfig(AbstractModel):
|
|
25455
25488
|
@property
|
25456
25489
|
def ClsRegion(self):
|
25457
25490
|
"""CLS服务所在地域
|
25458
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
25459
25491
|
:rtype: str
|
25460
25492
|
"""
|
25461
25493
|
return self._ClsRegion
|
@@ -29533,7 +29565,7 @@ class ModifyProtectModeRequest(AbstractModel):
|
|
29533
29565
|
|
29534
29566
|
def __init__(self):
|
29535
29567
|
r"""
|
29536
|
-
:param _ProtectMode:
|
29568
|
+
:param _ProtectMode: 数据复制方式,默认为 0,支持值包括:0 - 表示异步复制,1 - 表示半同步复制,2 - 表示强同步复制。
|
29537
29569
|
:type ProtectMode: int
|
29538
29570
|
:param _InstanceId: 实例ID。
|
29539
29571
|
:type InstanceId: str
|
@@ -29543,7 +29575,7 @@ class ModifyProtectModeRequest(AbstractModel):
|
|
29543
29575
|
|
29544
29576
|
@property
|
29545
29577
|
def ProtectMode(self):
|
29546
|
-
"""
|
29578
|
+
"""数据复制方式,默认为 0,支持值包括:0 - 表示异步复制,1 - 表示半同步复制,2 - 表示强同步复制。
|
29547
29579
|
:rtype: int
|
29548
29580
|
"""
|
29549
29581
|
return self._ProtectMode
|
@@ -31385,10 +31417,8 @@ class ProxyAddress(AbstractModel):
|
|
31385
31417
|
注意:此字段可能返回 null,表示取不到有效值。
|
31386
31418
|
:type ProxyAllocation: list of ProxyAllocation
|
31387
31419
|
:param _AccessMode: 接入模式
|
31388
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31389
31420
|
:type AccessMode: str
|
31390
31421
|
:param _AutoLoadBalance: 是否开启自动负载均衡
|
31391
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31392
31422
|
:type AutoLoadBalance: bool
|
31393
31423
|
"""
|
31394
31424
|
self._ProxyAddressId = None
|
@@ -31601,7 +31631,6 @@ class ProxyAddress(AbstractModel):
|
|
31601
31631
|
@property
|
31602
31632
|
def AccessMode(self):
|
31603
31633
|
"""接入模式
|
31604
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31605
31634
|
:rtype: str
|
31606
31635
|
"""
|
31607
31636
|
return self._AccessMode
|
@@ -31613,7 +31642,6 @@ class ProxyAddress(AbstractModel):
|
|
31613
31642
|
@property
|
31614
31643
|
def AutoLoadBalance(self):
|
31615
31644
|
"""是否开启自动负载均衡
|
31616
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31617
31645
|
:rtype: bool
|
31618
31646
|
"""
|
31619
31647
|
return self._AutoLoadBalance
|
@@ -33922,14 +33950,19 @@ class RoVipInfo(AbstractModel):
|
|
33922
33950
|
def __init__(self):
|
33923
33951
|
r"""
|
33924
33952
|
:param _RoVipStatus: 只读vip状态
|
33953
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
33925
33954
|
:type RoVipStatus: int
|
33926
33955
|
:param _RoSubnetId: 只读vip的子网
|
33956
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
33927
33957
|
:type RoSubnetId: int
|
33928
33958
|
:param _RoVpcId: 只读vip的私有网络
|
33959
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
33929
33960
|
:type RoVpcId: int
|
33930
33961
|
:param _RoVport: 只读vip的端口号
|
33962
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
33931
33963
|
:type RoVport: int
|
33932
33964
|
:param _RoVip: 只读vip
|
33965
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
33933
33966
|
:type RoVip: str
|
33934
33967
|
"""
|
33935
33968
|
self._RoVipStatus = None
|
@@ -33941,6 +33974,7 @@ class RoVipInfo(AbstractModel):
|
|
33941
33974
|
@property
|
33942
33975
|
def RoVipStatus(self):
|
33943
33976
|
"""只读vip状态
|
33977
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
33944
33978
|
:rtype: int
|
33945
33979
|
"""
|
33946
33980
|
return self._RoVipStatus
|
@@ -33952,6 +33986,7 @@ class RoVipInfo(AbstractModel):
|
|
33952
33986
|
@property
|
33953
33987
|
def RoSubnetId(self):
|
33954
33988
|
"""只读vip的子网
|
33989
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
33955
33990
|
:rtype: int
|
33956
33991
|
"""
|
33957
33992
|
return self._RoSubnetId
|
@@ -33963,6 +33998,7 @@ class RoVipInfo(AbstractModel):
|
|
33963
33998
|
@property
|
33964
33999
|
def RoVpcId(self):
|
33965
34000
|
"""只读vip的私有网络
|
34001
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
33966
34002
|
:rtype: int
|
33967
34003
|
"""
|
33968
34004
|
return self._RoVpcId
|
@@ -33974,6 +34010,7 @@ class RoVipInfo(AbstractModel):
|
|
33974
34010
|
@property
|
33975
34011
|
def RoVport(self):
|
33976
34012
|
"""只读vip的端口号
|
34013
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
33977
34014
|
:rtype: int
|
33978
34015
|
"""
|
33979
34016
|
return self._RoVport
|
@@ -33985,6 +34022,7 @@ class RoVipInfo(AbstractModel):
|
|
33985
34022
|
@property
|
33986
34023
|
def RoVip(self):
|
33987
34024
|
"""只读vip
|
34025
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
33988
34026
|
:rtype: str
|
33989
34027
|
"""
|
33990
34028
|
return self._RoVip
|
@@ -34469,8 +34507,10 @@ class RollbackTimeRange(AbstractModel):
|
|
34469
34507
|
def __init__(self):
|
34470
34508
|
r"""
|
34471
34509
|
:param _Begin: 实例可回档开始时间,时间格式:2016-10-29 01:06:04
|
34510
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34472
34511
|
:type Begin: str
|
34473
34512
|
:param _End: 实例可回档结束时间,时间格式:2016-11-02 11:44:47
|
34513
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34474
34514
|
:type End: str
|
34475
34515
|
"""
|
34476
34516
|
self._Begin = None
|
@@ -34479,6 +34519,7 @@ class RollbackTimeRange(AbstractModel):
|
|
34479
34519
|
@property
|
34480
34520
|
def Begin(self):
|
34481
34521
|
"""实例可回档开始时间,时间格式:2016-10-29 01:06:04
|
34522
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34482
34523
|
:rtype: str
|
34483
34524
|
"""
|
34484
34525
|
return self._Begin
|
@@ -34490,6 +34531,7 @@ class RollbackTimeRange(AbstractModel):
|
|
34490
34531
|
@property
|
34491
34532
|
def End(self):
|
34492
34533
|
"""实例可回档结束时间,时间格式:2016-11-02 11:44:47
|
34534
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34493
34535
|
:rtype: str
|
34494
34536
|
"""
|
34495
34537
|
return self._End
|
@@ -34641,22 +34683,16 @@ class RuleTemplateInfo(AbstractModel):
|
|
34641
34683
|
def __init__(self):
|
34642
34684
|
r"""
|
34643
34685
|
:param _RuleTemplateId: 规则模板ID。
|
34644
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34645
34686
|
:type RuleTemplateId: str
|
34646
34687
|
:param _RuleTemplateName: 规则模板名称。
|
34647
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34648
34688
|
:type RuleTemplateName: str
|
34649
34689
|
:param _RuleFilters: 规则内容。
|
34650
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34651
34690
|
:type RuleFilters: list of RuleFilters
|
34652
34691
|
:param _AlarmLevel: 告警等级。1-低风险,2-中风险,3-高风险。
|
34653
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34654
34692
|
:type AlarmLevel: int
|
34655
34693
|
:param _AlarmPolicy: 告警策略。0-不告警,1-告警。
|
34656
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34657
34694
|
:type AlarmPolicy: int
|
34658
34695
|
:param _Description: 规则描述。
|
34659
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34660
34696
|
:type Description: str
|
34661
34697
|
"""
|
34662
34698
|
self._RuleTemplateId = None
|
@@ -34669,7 +34705,6 @@ class RuleTemplateInfo(AbstractModel):
|
|
34669
34705
|
@property
|
34670
34706
|
def RuleTemplateId(self):
|
34671
34707
|
"""规则模板ID。
|
34672
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34673
34708
|
:rtype: str
|
34674
34709
|
"""
|
34675
34710
|
return self._RuleTemplateId
|
@@ -34681,7 +34716,6 @@ class RuleTemplateInfo(AbstractModel):
|
|
34681
34716
|
@property
|
34682
34717
|
def RuleTemplateName(self):
|
34683
34718
|
"""规则模板名称。
|
34684
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34685
34719
|
:rtype: str
|
34686
34720
|
"""
|
34687
34721
|
return self._RuleTemplateName
|
@@ -34693,7 +34727,6 @@ class RuleTemplateInfo(AbstractModel):
|
|
34693
34727
|
@property
|
34694
34728
|
def RuleFilters(self):
|
34695
34729
|
"""规则内容。
|
34696
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34697
34730
|
:rtype: list of RuleFilters
|
34698
34731
|
"""
|
34699
34732
|
return self._RuleFilters
|
@@ -34705,7 +34738,6 @@ class RuleTemplateInfo(AbstractModel):
|
|
34705
34738
|
@property
|
34706
34739
|
def AlarmLevel(self):
|
34707
34740
|
"""告警等级。1-低风险,2-中风险,3-高风险。
|
34708
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34709
34741
|
:rtype: int
|
34710
34742
|
"""
|
34711
34743
|
return self._AlarmLevel
|
@@ -34717,7 +34749,6 @@ class RuleTemplateInfo(AbstractModel):
|
|
34717
34749
|
@property
|
34718
34750
|
def AlarmPolicy(self):
|
34719
34751
|
"""告警策略。0-不告警,1-告警。
|
34720
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34721
34752
|
:rtype: int
|
34722
34753
|
"""
|
34723
34754
|
return self._AlarmPolicy
|
@@ -34729,7 +34760,6 @@ class RuleTemplateInfo(AbstractModel):
|
|
34729
34760
|
@property
|
34730
34761
|
def Description(self):
|
34731
34762
|
"""规则描述。
|
34732
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34733
34763
|
:rtype: str
|
34734
34764
|
"""
|
34735
34765
|
return self._Description
|
@@ -34769,22 +34799,16 @@ class RuleTemplateRecordInfo(AbstractModel):
|
|
34769
34799
|
def __init__(self):
|
34770
34800
|
r"""
|
34771
34801
|
:param _TaskId: 任务ID
|
34772
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34773
34802
|
:type TaskId: int
|
34774
34803
|
:param _ModifyBeforeInfo: 修改前规则模板的详情。
|
34775
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34776
34804
|
:type ModifyBeforeInfo: :class:`tencentcloud.cdb.v20170320.models.RuleTemplateInfo`
|
34777
34805
|
:param _ModifyAfterInfo: 修改后规则模板的详情。
|
34778
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34779
34806
|
:type ModifyAfterInfo: :class:`tencentcloud.cdb.v20170320.models.RuleTemplateInfo`
|
34780
34807
|
:param _AffectedInstances: 影响的实例。
|
34781
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34782
34808
|
:type AffectedInstances: list of str
|
34783
34809
|
:param _Operator: 操作人,账号uin。
|
34784
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34785
34810
|
:type Operator: str
|
34786
34811
|
:param _UpdateTime: 变更的时间。
|
34787
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34788
34812
|
:type UpdateTime: str
|
34789
34813
|
"""
|
34790
34814
|
self._TaskId = None
|
@@ -34797,7 +34821,6 @@ class RuleTemplateRecordInfo(AbstractModel):
|
|
34797
34821
|
@property
|
34798
34822
|
def TaskId(self):
|
34799
34823
|
"""任务ID
|
34800
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34801
34824
|
:rtype: int
|
34802
34825
|
"""
|
34803
34826
|
return self._TaskId
|
@@ -34809,7 +34832,6 @@ class RuleTemplateRecordInfo(AbstractModel):
|
|
34809
34832
|
@property
|
34810
34833
|
def ModifyBeforeInfo(self):
|
34811
34834
|
"""修改前规则模板的详情。
|
34812
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34813
34835
|
:rtype: :class:`tencentcloud.cdb.v20170320.models.RuleTemplateInfo`
|
34814
34836
|
"""
|
34815
34837
|
return self._ModifyBeforeInfo
|
@@ -34821,7 +34843,6 @@ class RuleTemplateRecordInfo(AbstractModel):
|
|
34821
34843
|
@property
|
34822
34844
|
def ModifyAfterInfo(self):
|
34823
34845
|
"""修改后规则模板的详情。
|
34824
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34825
34846
|
:rtype: :class:`tencentcloud.cdb.v20170320.models.RuleTemplateInfo`
|
34826
34847
|
"""
|
34827
34848
|
return self._ModifyAfterInfo
|
@@ -34833,7 +34854,6 @@ class RuleTemplateRecordInfo(AbstractModel):
|
|
34833
34854
|
@property
|
34834
34855
|
def AffectedInstances(self):
|
34835
34856
|
"""影响的实例。
|
34836
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34837
34857
|
:rtype: list of str
|
34838
34858
|
"""
|
34839
34859
|
return self._AffectedInstances
|
@@ -34845,7 +34865,6 @@ class RuleTemplateRecordInfo(AbstractModel):
|
|
34845
34865
|
@property
|
34846
34866
|
def Operator(self):
|
34847
34867
|
"""操作人,账号uin。
|
34848
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34849
34868
|
:rtype: str
|
34850
34869
|
"""
|
34851
34870
|
return self._Operator
|
@@ -34857,7 +34876,6 @@ class RuleTemplateRecordInfo(AbstractModel):
|
|
34857
34876
|
@property
|
34858
34877
|
def UpdateTime(self):
|
34859
34878
|
"""变更的时间。
|
34860
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
34861
34879
|
:rtype: str
|
34862
34880
|
"""
|
34863
34881
|
return self._UpdateTime
|
@@ -34896,18 +34914,25 @@ class SecurityGroup(AbstractModel):
|
|
34896
34914
|
def __init__(self):
|
34897
34915
|
r"""
|
34898
34916
|
:param _ProjectId: 项目ID
|
34917
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34899
34918
|
:type ProjectId: int
|
34900
34919
|
:param _CreateTime: 创建时间,时间格式:yyyy-mm-dd hh:mm:ss
|
34920
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34901
34921
|
:type CreateTime: str
|
34902
34922
|
:param _Inbound: 入站规则
|
34923
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34903
34924
|
:type Inbound: list of Inbound
|
34904
34925
|
:param _Outbound: 出站规则
|
34926
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34905
34927
|
:type Outbound: list of Outbound
|
34906
34928
|
:param _SecurityGroupId: 安全组ID
|
34929
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34907
34930
|
:type SecurityGroupId: str
|
34908
34931
|
:param _SecurityGroupName: 安全组名称
|
34932
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34909
34933
|
:type SecurityGroupName: str
|
34910
34934
|
:param _SecurityGroupRemark: 安全组备注
|
34935
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34911
34936
|
:type SecurityGroupRemark: str
|
34912
34937
|
"""
|
34913
34938
|
self._ProjectId = None
|
@@ -34921,6 +34946,7 @@ class SecurityGroup(AbstractModel):
|
|
34921
34946
|
@property
|
34922
34947
|
def ProjectId(self):
|
34923
34948
|
"""项目ID
|
34949
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34924
34950
|
:rtype: int
|
34925
34951
|
"""
|
34926
34952
|
return self._ProjectId
|
@@ -34932,6 +34958,7 @@ class SecurityGroup(AbstractModel):
|
|
34932
34958
|
@property
|
34933
34959
|
def CreateTime(self):
|
34934
34960
|
"""创建时间,时间格式:yyyy-mm-dd hh:mm:ss
|
34961
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34935
34962
|
:rtype: str
|
34936
34963
|
"""
|
34937
34964
|
return self._CreateTime
|
@@ -34943,6 +34970,7 @@ class SecurityGroup(AbstractModel):
|
|
34943
34970
|
@property
|
34944
34971
|
def Inbound(self):
|
34945
34972
|
"""入站规则
|
34973
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34946
34974
|
:rtype: list of Inbound
|
34947
34975
|
"""
|
34948
34976
|
return self._Inbound
|
@@ -34954,6 +34982,7 @@ class SecurityGroup(AbstractModel):
|
|
34954
34982
|
@property
|
34955
34983
|
def Outbound(self):
|
34956
34984
|
"""出站规则
|
34985
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34957
34986
|
:rtype: list of Outbound
|
34958
34987
|
"""
|
34959
34988
|
return self._Outbound
|
@@ -34965,6 +34994,7 @@ class SecurityGroup(AbstractModel):
|
|
34965
34994
|
@property
|
34966
34995
|
def SecurityGroupId(self):
|
34967
34996
|
"""安全组ID
|
34997
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34968
34998
|
:rtype: str
|
34969
34999
|
"""
|
34970
35000
|
return self._SecurityGroupId
|
@@ -34976,6 +35006,7 @@ class SecurityGroup(AbstractModel):
|
|
34976
35006
|
@property
|
34977
35007
|
def SecurityGroupName(self):
|
34978
35008
|
"""安全组名称
|
35009
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34979
35010
|
:rtype: str
|
34980
35011
|
"""
|
34981
35012
|
return self._SecurityGroupName
|
@@ -34987,6 +35018,7 @@ class SecurityGroup(AbstractModel):
|
|
34987
35018
|
@property
|
34988
35019
|
def SecurityGroupRemark(self):
|
34989
35020
|
"""安全组备注
|
35021
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
34990
35022
|
:rtype: str
|
34991
35023
|
"""
|
34992
35024
|
return self._SecurityGroupRemark
|
@@ -35032,8 +35064,10 @@ class SlaveConfig(AbstractModel):
|
|
35032
35064
|
def __init__(self):
|
35033
35065
|
r"""
|
35034
35066
|
:param _ReplicationMode: 从库复制方式,可能的返回值:aysnc-异步,semisync-半同步
|
35067
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
35035
35068
|
:type ReplicationMode: str
|
35036
35069
|
:param _Zone: 从库可用区的正式名称,如ap-shanghai-1
|
35070
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
35037
35071
|
:type Zone: str
|
35038
35072
|
"""
|
35039
35073
|
self._ReplicationMode = None
|
@@ -35042,6 +35076,7 @@ class SlaveConfig(AbstractModel):
|
|
35042
35076
|
@property
|
35043
35077
|
def ReplicationMode(self):
|
35044
35078
|
"""从库复制方式,可能的返回值:aysnc-异步,semisync-半同步
|
35079
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
35045
35080
|
:rtype: str
|
35046
35081
|
"""
|
35047
35082
|
return self._ReplicationMode
|
@@ -35053,6 +35088,7 @@ class SlaveConfig(AbstractModel):
|
|
35053
35088
|
@property
|
35054
35089
|
def Zone(self):
|
35055
35090
|
"""从库可用区的正式名称,如ap-shanghai-1
|
35091
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
35056
35092
|
:rtype: str
|
35057
35093
|
"""
|
35058
35094
|
return self._Zone
|
@@ -38017,10 +38053,8 @@ class UpgradeEngineVersionParams(AbstractModel):
|
|
38017
38053
|
def __init__(self):
|
38018
38054
|
r"""
|
38019
38055
|
:param _Name: 参数名称
|
38020
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
38021
38056
|
:type Name: str
|
38022
38057
|
:param _Value: 参数值
|
38023
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
38024
38058
|
:type Value: str
|
38025
38059
|
"""
|
38026
38060
|
self._Name = None
|
@@ -38029,7 +38063,6 @@ class UpgradeEngineVersionParams(AbstractModel):
|
|
38029
38063
|
@property
|
38030
38064
|
def Name(self):
|
38031
38065
|
"""参数名称
|
38032
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
38033
38066
|
:rtype: str
|
38034
38067
|
"""
|
38035
38068
|
return self._Name
|
@@ -38041,7 +38074,6 @@ class UpgradeEngineVersionParams(AbstractModel):
|
|
38041
38074
|
@property
|
38042
38075
|
def Value(self):
|
38043
38076
|
"""参数值
|
38044
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
38045
38077
|
:rtype: str
|
38046
38078
|
"""
|
38047
38079
|
return self._Value
|
@@ -38072,8 +38104,10 @@ class UploadInfo(AbstractModel):
|
|
38072
38104
|
def __init__(self):
|
38073
38105
|
r"""
|
38074
38106
|
:param _AllSliceNum: 文件所有分片数
|
38107
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38075
38108
|
:type AllSliceNum: int
|
38076
38109
|
:param _CompleteNum: 已完成分片数
|
38110
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38077
38111
|
:type CompleteNum: int
|
38078
38112
|
"""
|
38079
38113
|
self._AllSliceNum = None
|
@@ -38082,6 +38116,7 @@ class UploadInfo(AbstractModel):
|
|
38082
38116
|
@property
|
38083
38117
|
def AllSliceNum(self):
|
38084
38118
|
"""文件所有分片数
|
38119
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38085
38120
|
:rtype: int
|
38086
38121
|
"""
|
38087
38122
|
return self._AllSliceNum
|
@@ -38093,6 +38128,7 @@ class UploadInfo(AbstractModel):
|
|
38093
38128
|
@property
|
38094
38129
|
def CompleteNum(self):
|
38095
38130
|
"""已完成分片数
|
38131
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38096
38132
|
:rtype: int
|
38097
38133
|
"""
|
38098
38134
|
return self._CompleteNum
|
@@ -38217,12 +38253,16 @@ class ZoneConf(AbstractModel):
|
|
38217
38253
|
def __init__(self):
|
38218
38254
|
r"""
|
38219
38255
|
:param _DeployMode: 可用区部署方式,可能的值为:0-单可用区;1-多可用区
|
38256
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38220
38257
|
:type DeployMode: list of int
|
38221
38258
|
:param _MasterZone: 主实例所在的可用区
|
38259
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38222
38260
|
:type MasterZone: list of str
|
38223
38261
|
:param _SlaveZone: 实例为多可用区部署时,备库1所在的可用区
|
38262
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38224
38263
|
:type SlaveZone: list of str
|
38225
38264
|
:param _BackupZone: 实例为多可用区部署时,备库2所在的可用区
|
38265
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38226
38266
|
:type BackupZone: list of str
|
38227
38267
|
"""
|
38228
38268
|
self._DeployMode = None
|
@@ -38233,6 +38273,7 @@ class ZoneConf(AbstractModel):
|
|
38233
38273
|
@property
|
38234
38274
|
def DeployMode(self):
|
38235
38275
|
"""可用区部署方式,可能的值为:0-单可用区;1-多可用区
|
38276
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38236
38277
|
:rtype: list of int
|
38237
38278
|
"""
|
38238
38279
|
return self._DeployMode
|
@@ -38244,6 +38285,7 @@ class ZoneConf(AbstractModel):
|
|
38244
38285
|
@property
|
38245
38286
|
def MasterZone(self):
|
38246
38287
|
"""主实例所在的可用区
|
38288
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38247
38289
|
:rtype: list of str
|
38248
38290
|
"""
|
38249
38291
|
return self._MasterZone
|
@@ -38255,6 +38297,7 @@ class ZoneConf(AbstractModel):
|
|
38255
38297
|
@property
|
38256
38298
|
def SlaveZone(self):
|
38257
38299
|
"""实例为多可用区部署时,备库1所在的可用区
|
38300
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38258
38301
|
:rtype: list of str
|
38259
38302
|
"""
|
38260
38303
|
return self._SlaveZone
|
@@ -38266,6 +38309,7 @@ class ZoneConf(AbstractModel):
|
|
38266
38309
|
@property
|
38267
38310
|
def BackupZone(self):
|
38268
38311
|
"""实例为多可用区部署时,备库2所在的可用区
|
38312
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
38269
38313
|
:rtype: list of str
|
38270
38314
|
"""
|
38271
38315
|
return self._BackupZone
|