tencentcloud-sdk-python 3.0.1429__py2.py3-none-any.whl → 3.0.1431__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cdb/v20170320/cdb_client.py +6 -6
- tencentcloud/cdb/v20170320/models.py +132 -108
- tencentcloud/cdn/v20180606/cdn_client.py +12 -4
- tencentcloud/clb/v20180317/models.py +2 -2
- tencentcloud/cloudaudit/v20190319/models.py +15 -0
- tencentcloud/ctem/v20231128/ctem_client.py +23 -0
- tencentcloud/ctem/v20231128/models.py +124 -0
- tencentcloud/cwp/v20180228/models.py +17 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +23 -0
- tencentcloud/dnspod/v20210323/errorcodes.py +24 -0
- tencentcloud/dnspod/v20210323/models.py +401 -0
- tencentcloud/dsgc/v20190723/models.py +2 -2
- tencentcloud/emr/v20190103/models.py +15 -0
- tencentcloud/ess/v20201111/ess_client.py +42 -0
- tencentcloud/ess/v20201111/models.py +755 -54
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/gs/v20191118/models.py +57 -4
- tencentcloud/igtm/v20231024/models.py +2 -2
- tencentcloud/lcic/v20220817/lcic_client.py +3 -0
- tencentcloud/lcic/v20220817/models.py +10 -10
- tencentcloud/live/v20180801/models.py +70 -0
- tencentcloud/lke/v20231130/models.py +2 -2
- tencentcloud/oceanus/v20190422/models.py +36 -2
- tencentcloud/ocr/v20181119/models.py +147 -0
- tencentcloud/ocr/v20181119/ocr_client.py +25 -0
- tencentcloud/postgres/v20170312/models.py +284 -258
- tencentcloud/postgres/v20170312/postgres_client.py +9 -9
- tencentcloud/ssl/v20191205/models.py +32 -2
- tencentcloud/tat/v20201028/models.py +15 -0
- tencentcloud/trtc/v20190722/models.py +19 -0
- tencentcloud/tsf/v20180326/errorcodes.py +1 -1
- tencentcloud/vclm/v20240523/models.py +15 -0
- tencentcloud/vod/v20180717/models.py +78 -6
- tencentcloud/wsa/__init__.py +0 -0
- tencentcloud/wsa/v20250508/__init__.py +0 -0
- tencentcloud/wsa/v20250508/errorcodes.py +27 -0
- tencentcloud/wsa/v20250508/models.py +187 -0
- tencentcloud/wsa/v20250508/wsa_client.py +49 -0
- {tencentcloud_sdk_python-3.0.1429.dist-info → tencentcloud_sdk_python-3.0.1431.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1429.dist-info → tencentcloud_sdk_python-3.0.1431.dist-info}/RECORD +44 -39
- {tencentcloud_sdk_python-3.0.1429.dist-info → tencentcloud_sdk_python-3.0.1431.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1429.dist-info → tencentcloud_sdk_python-3.0.1431.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1429.dist-info → tencentcloud_sdk_python-3.0.1431.dist-info}/top_level.txt +0 -0
|
@@ -7133,9 +7133,9 @@ class CreateBackupRequest(AbstractModel):
|
|
|
7133
7133
|
:param _BackupDBTableList: 需要备份的库表信息,如果不设置该参数,则默认整实例备份。在 BackupMethod=logical 逻辑备份中才可设置该参数。指定的库表必须存在,否则可能导致备份失败。
|
|
7134
7134
|
例:如果需要备份 db1 库的 tb1、tb2 表 和 db2 库。则该参数设置为 [{"Db": "db1", "Table": "tb1"}, {"Db": "db1", "Table": "tb2"}, {"Db": "db2"}]。
|
|
7135
7135
|
:type BackupDBTableList: list of BackupItem
|
|
7136
|
-
:param _ManualBackupName:
|
|
7136
|
+
:param _ManualBackupName: 手动备份别名,输入长度请在60个字符内。
|
|
7137
7137
|
:type ManualBackupName: str
|
|
7138
|
-
:param _EncryptionFlag:
|
|
7138
|
+
:param _EncryptionFlag: 是否需要加密物理备份,可选值为:on - 是,off - 否。当 BackupMethod 为 physical 时,该值才有意义。不指定则使用实例备份默认加密策略,这里的默认加密策略指通过 [DescribeBackupEncryptionStatus](https://cloud.tencent.com/document/product/236/86508) 接口查询出的实例当前加密策略。
|
|
7139
7139
|
:type EncryptionFlag: str
|
|
7140
7140
|
"""
|
|
7141
7141
|
self._InstanceId = None
|
|
@@ -7180,7 +7180,7 @@ class CreateBackupRequest(AbstractModel):
|
|
|
7180
7180
|
|
|
7181
7181
|
@property
|
|
7182
7182
|
def ManualBackupName(self):
|
|
7183
|
-
"""
|
|
7183
|
+
"""手动备份别名,输入长度请在60个字符内。
|
|
7184
7184
|
:rtype: str
|
|
7185
7185
|
"""
|
|
7186
7186
|
return self._ManualBackupName
|
|
@@ -7191,7 +7191,7 @@ class CreateBackupRequest(AbstractModel):
|
|
|
7191
7191
|
|
|
7192
7192
|
@property
|
|
7193
7193
|
def EncryptionFlag(self):
|
|
7194
|
-
"""
|
|
7194
|
+
"""是否需要加密物理备份,可选值为:on - 是,off - 否。当 BackupMethod 为 physical 时,该值才有意义。不指定则使用实例备份默认加密策略,这里的默认加密策略指通过 [DescribeBackupEncryptionStatus](https://cloud.tencent.com/document/product/236/86508) 接口查询出的实例当前加密策略。
|
|
7195
7195
|
:rtype: str
|
|
7196
7196
|
"""
|
|
7197
7197
|
return self._EncryptionFlag
|
|
@@ -7854,7 +7854,7 @@ class CreateCloneInstanceRequest(AbstractModel):
|
|
|
7854
7854
|
|
|
7855
7855
|
def __init__(self):
|
|
7856
7856
|
r"""
|
|
7857
|
-
:param _InstanceId: 克隆源实例
|
|
7857
|
+
:param _InstanceId: 克隆源实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/api/236/15872) 接口获取。
|
|
7858
7858
|
:type InstanceId: str
|
|
7859
7859
|
:param _SpecifiedRollbackTime: 如果需要克隆实例回档到指定时间,则指定该值。时间格式为:yyyy-mm-dd hh:mm:ss。
|
|
7860
7860
|
说明:此参数和 SpecifiedBackupId 参数需要2选1进行设置。
|
|
@@ -7870,7 +7870,7 @@ class CreateCloneInstanceRequest(AbstractModel):
|
|
|
7870
7870
|
:type Memory: int
|
|
7871
7871
|
:param _Volume: 实例硬盘大小,单位:GB,需要不低于克隆源实例,默认和源实例相同。
|
|
7872
7872
|
:type Volume: int
|
|
7873
|
-
:param _InstanceName:
|
|
7873
|
+
:param _InstanceName: 新产生的克隆实例名称。支持输入最大60个字符。
|
|
7874
7874
|
:type InstanceName: str
|
|
7875
7875
|
:param _SecurityGroup: 安全组参数,可使用 [查询项目安全组信息](https://cloud.tencent.com/document/api/236/15850) 接口查询某个项目的安全组详情。
|
|
7876
7876
|
:type SecurityGroup: list of str
|
|
@@ -7938,7 +7938,7 @@ class CreateCloneInstanceRequest(AbstractModel):
|
|
|
7938
7938
|
|
|
7939
7939
|
@property
|
|
7940
7940
|
def InstanceId(self):
|
|
7941
|
-
"""克隆源实例
|
|
7941
|
+
"""克隆源实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/api/236/15872) 接口获取。
|
|
7942
7942
|
:rtype: str
|
|
7943
7943
|
"""
|
|
7944
7944
|
return self._InstanceId
|
|
@@ -8017,7 +8017,7 @@ class CreateCloneInstanceRequest(AbstractModel):
|
|
|
8017
8017
|
|
|
8018
8018
|
@property
|
|
8019
8019
|
def InstanceName(self):
|
|
8020
|
-
"""
|
|
8020
|
+
"""新产生的克隆实例名称。支持输入最大60个字符。
|
|
8021
8021
|
:rtype: str
|
|
8022
8022
|
"""
|
|
8023
8023
|
return self._InstanceName
|
|
@@ -10176,19 +10176,20 @@ class CreateParamTemplateRequest(AbstractModel):
|
|
|
10176
10176
|
|
|
10177
10177
|
def __init__(self):
|
|
10178
10178
|
r"""
|
|
10179
|
-
:param _Name:
|
|
10179
|
+
:param _Name: 参数模板名称。支持输入最大60个字符。
|
|
10180
10180
|
:type Name: str
|
|
10181
10181
|
:param _Description: 参数模板描述。
|
|
10182
10182
|
:type Description: str
|
|
10183
|
-
:param _EngineVersion: MySQL
|
|
10183
|
+
:param _EngineVersion: MySQL 版本号。可选值:5.6、5.7、8.0。
|
|
10184
10184
|
:type EngineVersion: str
|
|
10185
|
-
:param _TemplateId: 源参数模板 ID
|
|
10185
|
+
:param _TemplateId: 源参数模板 ID。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
|
|
10186
10186
|
:type TemplateId: int
|
|
10187
10187
|
:param _ParamList: 参数列表。
|
|
10188
10188
|
:type ParamList: list of Parameter
|
|
10189
10189
|
:param _TemplateType: 默认参数模板类型。支持值包括:"HIGH_STABILITY" - 高稳定模板,"HIGH_PERFORMANCE" - 高性能模板。
|
|
10190
10190
|
:type TemplateType: str
|
|
10191
10191
|
:param _EngineType: 实例引擎类型,默认为"InnoDB",支持值包括:"InnoDB","RocksDB"。
|
|
10192
|
+
说明:数据库版本 MySQL 5.7、MySQL 8.0才支持 RocksDB。
|
|
10192
10193
|
:type EngineType: str
|
|
10193
10194
|
"""
|
|
10194
10195
|
self._Name = None
|
|
@@ -10201,7 +10202,7 @@ class CreateParamTemplateRequest(AbstractModel):
|
|
|
10201
10202
|
|
|
10202
10203
|
@property
|
|
10203
10204
|
def Name(self):
|
|
10204
|
-
"""
|
|
10205
|
+
"""参数模板名称。支持输入最大60个字符。
|
|
10205
10206
|
:rtype: str
|
|
10206
10207
|
"""
|
|
10207
10208
|
return self._Name
|
|
@@ -10223,7 +10224,7 @@ class CreateParamTemplateRequest(AbstractModel):
|
|
|
10223
10224
|
|
|
10224
10225
|
@property
|
|
10225
10226
|
def EngineVersion(self):
|
|
10226
|
-
"""MySQL
|
|
10227
|
+
"""MySQL 版本号。可选值:5.6、5.7、8.0。
|
|
10227
10228
|
:rtype: str
|
|
10228
10229
|
"""
|
|
10229
10230
|
return self._EngineVersion
|
|
@@ -10234,7 +10235,7 @@ class CreateParamTemplateRequest(AbstractModel):
|
|
|
10234
10235
|
|
|
10235
10236
|
@property
|
|
10236
10237
|
def TemplateId(self):
|
|
10237
|
-
"""源参数模板 ID
|
|
10238
|
+
"""源参数模板 ID。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
|
|
10238
10239
|
:rtype: int
|
|
10239
10240
|
"""
|
|
10240
10241
|
return self._TemplateId
|
|
@@ -10268,6 +10269,7 @@ class CreateParamTemplateRequest(AbstractModel):
|
|
|
10268
10269
|
@property
|
|
10269
10270
|
def EngineType(self):
|
|
10270
10271
|
"""实例引擎类型,默认为"InnoDB",支持值包括:"InnoDB","RocksDB"。
|
|
10272
|
+
说明:数据库版本 MySQL 5.7、MySQL 8.0才支持 RocksDB。
|
|
10271
10273
|
:rtype: str
|
|
10272
10274
|
"""
|
|
10273
10275
|
return self._EngineType
|
|
@@ -11444,14 +11446,14 @@ class DeleteParamTemplateRequest(AbstractModel):
|
|
|
11444
11446
|
|
|
11445
11447
|
def __init__(self):
|
|
11446
11448
|
r"""
|
|
11447
|
-
:param _TemplateId: 参数模板ID
|
|
11449
|
+
:param _TemplateId: 参数模板 ID。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
|
|
11448
11450
|
:type TemplateId: int
|
|
11449
11451
|
"""
|
|
11450
11452
|
self._TemplateId = None
|
|
11451
11453
|
|
|
11452
11454
|
@property
|
|
11453
11455
|
def TemplateId(self):
|
|
11454
|
-
"""参数模板ID
|
|
11456
|
+
"""参数模板 ID。可通过 [DescribeParamTemplates](https://cloud.tencent.com/document/api/236/32659) 接口获取。
|
|
11455
11457
|
:rtype: int
|
|
11456
11458
|
"""
|
|
11457
11459
|
return self._TemplateId
|
|
@@ -13954,11 +13956,11 @@ class DescribeBackupDecryptionKeyRequest(AbstractModel):
|
|
|
13954
13956
|
|
|
13955
13957
|
def __init__(self):
|
|
13956
13958
|
r"""
|
|
13957
|
-
:param _InstanceId: 实例ID,格式如:cdb-
|
|
13959
|
+
:param _InstanceId: 实例 ID,格式如:cdb-fybaegd8。与云数据库控制台页面中显示的实例 ID 相同。
|
|
13958
13960
|
:type InstanceId: str
|
|
13959
|
-
:param _BackupId: 实例的备份ID,可通过DescribeBackups接口查询备份的ID。
|
|
13961
|
+
:param _BackupId: 实例的备份 ID,可通过 [DescribeBackups](https://cloud.tencent.com/document/api/236/15842) 接口查询备份的 ID。
|
|
13960
13962
|
:type BackupId: int
|
|
13961
|
-
:param _BackupType:
|
|
13963
|
+
:param _BackupType: 备份类型。data-数据备份,binlog-日志备份,默认为 data。
|
|
13962
13964
|
:type BackupType: str
|
|
13963
13965
|
"""
|
|
13964
13966
|
self._InstanceId = None
|
|
@@ -13967,7 +13969,7 @@ class DescribeBackupDecryptionKeyRequest(AbstractModel):
|
|
|
13967
13969
|
|
|
13968
13970
|
@property
|
|
13969
13971
|
def InstanceId(self):
|
|
13970
|
-
"""实例ID,格式如:cdb-
|
|
13972
|
+
"""实例 ID,格式如:cdb-fybaegd8。与云数据库控制台页面中显示的实例 ID 相同。
|
|
13971
13973
|
:rtype: str
|
|
13972
13974
|
"""
|
|
13973
13975
|
return self._InstanceId
|
|
@@ -13978,7 +13980,7 @@ class DescribeBackupDecryptionKeyRequest(AbstractModel):
|
|
|
13978
13980
|
|
|
13979
13981
|
@property
|
|
13980
13982
|
def BackupId(self):
|
|
13981
|
-
"""实例的备份ID,可通过DescribeBackups接口查询备份的ID。
|
|
13983
|
+
"""实例的备份 ID,可通过 [DescribeBackups](https://cloud.tencent.com/document/api/236/15842) 接口查询备份的 ID。
|
|
13982
13984
|
:rtype: int
|
|
13983
13985
|
"""
|
|
13984
13986
|
return self._BackupId
|
|
@@ -13989,7 +13991,7 @@ class DescribeBackupDecryptionKeyRequest(AbstractModel):
|
|
|
13989
13991
|
|
|
13990
13992
|
@property
|
|
13991
13993
|
def BackupType(self):
|
|
13992
|
-
"""
|
|
13994
|
+
"""备份类型。data-数据备份,binlog-日志备份,默认为 data。
|
|
13993
13995
|
:rtype: str
|
|
13994
13996
|
"""
|
|
13995
13997
|
return self._BackupType
|
|
@@ -14256,14 +14258,14 @@ class DescribeBackupOverviewRequest(AbstractModel):
|
|
|
14256
14258
|
|
|
14257
14259
|
def __init__(self):
|
|
14258
14260
|
r"""
|
|
14259
|
-
:param _Product:
|
|
14261
|
+
:param _Product: 需要查询备份概览的云数据库产品类型。可取值为:mysql 指双节点/三节点的高可用实例,mysql-basic 指单节点云盘版实例,mysql-cluster 指云盘版(原集群版)实例。
|
|
14260
14262
|
:type Product: str
|
|
14261
14263
|
"""
|
|
14262
14264
|
self._Product = None
|
|
14263
14265
|
|
|
14264
14266
|
@property
|
|
14265
14267
|
def Product(self):
|
|
14266
|
-
"""
|
|
14268
|
+
"""需要查询备份概览的云数据库产品类型。可取值为:mysql 指双节点/三节点的高可用实例,mysql-basic 指单节点云盘版实例,mysql-cluster 指云盘版(原集群版)实例。
|
|
14267
14269
|
:rtype: str
|
|
14268
14270
|
"""
|
|
14269
14271
|
return self._Product
|
|
@@ -14425,7 +14427,7 @@ class DescribeBackupSummariesRequest(AbstractModel):
|
|
|
14425
14427
|
|
|
14426
14428
|
def __init__(self):
|
|
14427
14429
|
r"""
|
|
14428
|
-
:param _Product:
|
|
14430
|
+
:param _Product: 需要查询备份实时统计的云数据库产品类型。可取值为:mysql 指双节点/三节点的高可用实例,mysql-basic 指单节点云盘版实例,mysql-cluster 指云盘版(原集群版)实例。
|
|
14429
14431
|
:type Product: str
|
|
14430
14432
|
:param _Offset: 分页查询数据的偏移量,默认为0。
|
|
14431
14433
|
:type Offset: int
|
|
@@ -14444,7 +14446,7 @@ class DescribeBackupSummariesRequest(AbstractModel):
|
|
|
14444
14446
|
|
|
14445
14447
|
@property
|
|
14446
14448
|
def Product(self):
|
|
14447
|
-
"""
|
|
14449
|
+
"""需要查询备份实时统计的云数据库产品类型。可取值为:mysql 指双节点/三节点的高可用实例,mysql-basic 指单节点云盘版实例,mysql-cluster 指云盘版(原集群版)实例。
|
|
14448
14450
|
:rtype: str
|
|
14449
14451
|
"""
|
|
14450
14452
|
return self._Product
|
|
@@ -14713,14 +14715,14 @@ class DescribeBinlogBackupOverviewRequest(AbstractModel):
|
|
|
14713
14715
|
|
|
14714
14716
|
def __init__(self):
|
|
14715
14717
|
r"""
|
|
14716
|
-
:param _Product:
|
|
14718
|
+
:param _Product: 需要查询日志备份概览的云数据库产品类型。可取值为:mysql 指双节点/三节点的高可用实例,mysql-basic 指单节点云盘版实例,mysql-cluster 指云盘版(原集群版)实例。
|
|
14717
14719
|
:type Product: str
|
|
14718
14720
|
"""
|
|
14719
14721
|
self._Product = None
|
|
14720
14722
|
|
|
14721
14723
|
@property
|
|
14722
14724
|
def Product(self):
|
|
14723
|
-
"""
|
|
14725
|
+
"""需要查询日志备份概览的云数据库产品类型。可取值为:mysql 指双节点/三节点的高可用实例,mysql-basic 指单节点云盘版实例,mysql-cluster 指云盘版(原集群版)实例。
|
|
14724
14726
|
:rtype: str
|
|
14725
14727
|
"""
|
|
14726
14728
|
return self._Product
|
|
@@ -15389,11 +15391,11 @@ class DescribeCloneListRequest(AbstractModel):
|
|
|
15389
15391
|
|
|
15390
15392
|
def __init__(self):
|
|
15391
15393
|
r"""
|
|
15392
|
-
:param _InstanceId:
|
|
15394
|
+
:param _InstanceId: 查询指定源实例的克隆任务列表。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/api/236/15872) 接口获取实例 ID。
|
|
15393
15395
|
:type InstanceId: str
|
|
15394
15396
|
:param _Offset: 分页查询时的偏移量,默认值为0。
|
|
15395
15397
|
:type Offset: int
|
|
15396
|
-
:param _Limit: 分页查询时的每页条目数,默认值为20。
|
|
15398
|
+
:param _Limit: 分页查询时的每页条目数,默认值为20,建议最大取值100。
|
|
15397
15399
|
:type Limit: int
|
|
15398
15400
|
"""
|
|
15399
15401
|
self._InstanceId = None
|
|
@@ -15402,7 +15404,7 @@ class DescribeCloneListRequest(AbstractModel):
|
|
|
15402
15404
|
|
|
15403
15405
|
@property
|
|
15404
15406
|
def InstanceId(self):
|
|
15405
|
-
"""
|
|
15407
|
+
"""查询指定源实例的克隆任务列表。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/api/236/15872) 接口获取实例 ID。
|
|
15406
15408
|
:rtype: str
|
|
15407
15409
|
"""
|
|
15408
15410
|
return self._InstanceId
|
|
@@ -15424,7 +15426,7 @@ class DescribeCloneListRequest(AbstractModel):
|
|
|
15424
15426
|
|
|
15425
15427
|
@property
|
|
15426
15428
|
def Limit(self):
|
|
15427
|
-
"""分页查询时的每页条目数,默认值为20。
|
|
15429
|
+
"""分页查询时的每页条目数,默认值为20,建议最大取值100。
|
|
15428
15430
|
:rtype: int
|
|
15429
15431
|
"""
|
|
15430
15432
|
return self._Limit
|
|
@@ -16711,7 +16713,7 @@ class DescribeDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
16711
16713
|
|
|
16712
16714
|
def __init__(self):
|
|
16713
16715
|
r"""
|
|
16714
|
-
:param _InstanceId: 实例ID
|
|
16716
|
+
:param _InstanceId: 实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
|
|
16715
16717
|
:type InstanceId: str
|
|
16716
16718
|
:param _ClsRegion: CLS服务所在地域
|
|
16717
16719
|
:type ClsRegion: str
|
|
@@ -16721,7 +16723,7 @@ class DescribeDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
16721
16723
|
|
|
16722
16724
|
@property
|
|
16723
16725
|
def InstanceId(self):
|
|
16724
|
-
"""实例ID
|
|
16726
|
+
"""实例 ID。可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
|
|
16725
16727
|
:rtype: str
|
|
16726
16728
|
"""
|
|
16727
16729
|
return self._InstanceId
|
|
@@ -18113,14 +18115,14 @@ class DescribeDataBackupOverviewRequest(AbstractModel):
|
|
|
18113
18115
|
|
|
18114
18116
|
def __init__(self):
|
|
18115
18117
|
r"""
|
|
18116
|
-
:param _Product:
|
|
18118
|
+
:param _Product: 需要查询数据备份概览的云数据库产品类型。可取值为:mysql 指双节点/三节点的高可用实例,mysql-basic 指单节点云盘版实例,mysql-cluster 指云盘版(原集群版)实例。
|
|
18117
18119
|
:type Product: str
|
|
18118
18120
|
"""
|
|
18119
18121
|
self._Product = None
|
|
18120
18122
|
|
|
18121
18123
|
@property
|
|
18122
18124
|
def Product(self):
|
|
18123
|
-
"""
|
|
18125
|
+
"""需要查询数据备份概览的云数据库产品类型。可取值为:mysql 指双节点/三节点的高可用实例,mysql-basic 指单节点云盘版实例,mysql-cluster 指云盘版(原集群版)实例。
|
|
18124
18126
|
:rtype: str
|
|
18125
18127
|
"""
|
|
18126
18128
|
return self._Product
|
|
@@ -18361,7 +18363,7 @@ class DescribeDatabasesRequest(AbstractModel):
|
|
|
18361
18363
|
:type InstanceId: str
|
|
18362
18364
|
:param _Offset: 偏移量,最小值为0。
|
|
18363
18365
|
:type Offset: int
|
|
18364
|
-
:param _Limit: 单次请求数量,默认值为20,最小值为1,最大值为
|
|
18366
|
+
:param _Limit: 单次请求数量,默认值为20,最小值为1,最大值为5000。
|
|
18365
18367
|
:type Limit: int
|
|
18366
18368
|
:param _DatabaseRegexp: 匹配数据库库名的正则表达式。
|
|
18367
18369
|
:type DatabaseRegexp: str
|
|
@@ -18395,7 +18397,7 @@ class DescribeDatabasesRequest(AbstractModel):
|
|
|
18395
18397
|
|
|
18396
18398
|
@property
|
|
18397
18399
|
def Limit(self):
|
|
18398
|
-
"""单次请求数量,默认值为20,最小值为1,最大值为
|
|
18400
|
+
"""单次请求数量,默认值为20,最小值为1,最大值为5000。
|
|
18399
18401
|
:rtype: int
|
|
18400
18402
|
"""
|
|
18401
18403
|
return self._Limit
|
|
@@ -18440,7 +18442,7 @@ class DescribeDatabasesResponse(AbstractModel):
|
|
|
18440
18442
|
r"""
|
|
18441
18443
|
:param _TotalCount: 符合查询条件的实例总数。
|
|
18442
18444
|
:type TotalCount: int
|
|
18443
|
-
:param _Items:
|
|
18445
|
+
:param _Items: 实例中的数据库名称列表。
|
|
18444
18446
|
:type Items: list of str
|
|
18445
18447
|
:param _DatabaseList: 数据库名以及字符集
|
|
18446
18448
|
:type DatabaseList: list of DatabasesWithCharacterLists
|
|
@@ -18465,7 +18467,7 @@ class DescribeDatabasesResponse(AbstractModel):
|
|
|
18465
18467
|
|
|
18466
18468
|
@property
|
|
18467
18469
|
def Items(self):
|
|
18468
|
-
"""
|
|
18470
|
+
"""实例中的数据库名称列表。
|
|
18469
18471
|
:rtype: list of str
|
|
18470
18472
|
"""
|
|
18471
18473
|
return self._Items
|
|
@@ -18516,11 +18518,12 @@ class DescribeDefaultParamsRequest(AbstractModel):
|
|
|
18516
18518
|
|
|
18517
18519
|
def __init__(self):
|
|
18518
18520
|
r"""
|
|
18519
|
-
:param _EngineVersion: 引擎版本,目前支持 ["5.1", "5.5", "5.6", "5.7", "8.0"]
|
|
18521
|
+
:param _EngineVersion: 引擎版本,目前支持 ["5.1", "5.5", "5.6", "5.7", "8.0"]。
|
|
18522
|
+
说明:引擎版本为必填。
|
|
18520
18523
|
:type EngineVersion: str
|
|
18521
|
-
:param _TemplateType: 默认参数模板类型。支持值包括:"HIGH_STABILITY" - 高稳定模板,"HIGH_PERFORMANCE" -
|
|
18524
|
+
:param _TemplateType: 默认参数模板类型。支持值包括:"HIGH_STABILITY" - 高稳定模板,"HIGH_PERFORMANCE" - 高性能模板。默认值为:HIGH_STABILITY。
|
|
18522
18525
|
:type TemplateType: str
|
|
18523
|
-
:param _EngineType: 参数模板引擎,默认值:InnoDB
|
|
18526
|
+
:param _EngineType: 参数模板引擎,默认值:InnoDB,可取值:InnoDB、RocksDB。
|
|
18524
18527
|
:type EngineType: str
|
|
18525
18528
|
"""
|
|
18526
18529
|
self._EngineVersion = None
|
|
@@ -18529,7 +18532,8 @@ class DescribeDefaultParamsRequest(AbstractModel):
|
|
|
18529
18532
|
|
|
18530
18533
|
@property
|
|
18531
18534
|
def EngineVersion(self):
|
|
18532
|
-
"""引擎版本,目前支持 ["5.1", "5.5", "5.6", "5.7", "8.0"]
|
|
18535
|
+
"""引擎版本,目前支持 ["5.1", "5.5", "5.6", "5.7", "8.0"]。
|
|
18536
|
+
说明:引擎版本为必填。
|
|
18533
18537
|
:rtype: str
|
|
18534
18538
|
"""
|
|
18535
18539
|
return self._EngineVersion
|
|
@@ -18540,7 +18544,7 @@ class DescribeDefaultParamsRequest(AbstractModel):
|
|
|
18540
18544
|
|
|
18541
18545
|
@property
|
|
18542
18546
|
def TemplateType(self):
|
|
18543
|
-
"""默认参数模板类型。支持值包括:"HIGH_STABILITY" - 高稳定模板,"HIGH_PERFORMANCE" -
|
|
18547
|
+
"""默认参数模板类型。支持值包括:"HIGH_STABILITY" - 高稳定模板,"HIGH_PERFORMANCE" - 高性能模板。默认值为:HIGH_STABILITY。
|
|
18544
18548
|
:rtype: str
|
|
18545
18549
|
"""
|
|
18546
18550
|
return self._TemplateType
|
|
@@ -18551,7 +18555,7 @@ class DescribeDefaultParamsRequest(AbstractModel):
|
|
|
18551
18555
|
|
|
18552
18556
|
@property
|
|
18553
18557
|
def EngineType(self):
|
|
18554
|
-
"""参数模板引擎,默认值:InnoDB
|
|
18558
|
+
"""参数模板引擎,默认值:InnoDB,可取值:InnoDB、RocksDB。
|
|
18555
18559
|
:rtype: str
|
|
18556
18560
|
"""
|
|
18557
18561
|
return self._EngineType
|
|
@@ -19348,7 +19352,7 @@ class DescribeInstanceParamRecordsRequest(AbstractModel):
|
|
|
19348
19352
|
:type InstanceId: str
|
|
19349
19353
|
:param _Offset: 分页偏移量,默认值:0。
|
|
19350
19354
|
:type Offset: int
|
|
19351
|
-
:param _Limit: 分页大小,默认值:20。
|
|
19355
|
+
:param _Limit: 分页大小,默认值:20,最大值为100。
|
|
19352
19356
|
:type Limit: int
|
|
19353
19357
|
"""
|
|
19354
19358
|
self._InstanceId = None
|
|
@@ -19379,7 +19383,7 @@ class DescribeInstanceParamRecordsRequest(AbstractModel):
|
|
|
19379
19383
|
|
|
19380
19384
|
@property
|
|
19381
19385
|
def Limit(self):
|
|
19382
|
-
"""分页大小,默认值:20。
|
|
19386
|
+
"""分页大小,默认值:20,最大值为100。
|
|
19383
19387
|
:rtype: int
|
|
19384
19388
|
"""
|
|
19385
19389
|
return self._Limit
|
|
@@ -21313,7 +21317,7 @@ class DescribeRollbackTaskDetailRequest(AbstractModel):
|
|
|
21313
21317
|
:type InstanceId: str
|
|
21314
21318
|
:param _AsyncRequestId: 异步任务 ID。
|
|
21315
21319
|
:type AsyncRequestId: str
|
|
21316
|
-
:param _Limit: 分页参数,每次请求返回的记录数。默认值为
|
|
21320
|
+
:param _Limit: 分页参数,每次请求返回的记录数。默认值为20,建议最大取值为100。
|
|
21317
21321
|
:type Limit: int
|
|
21318
21322
|
:param _Offset: 分页偏移量。默认为 0。
|
|
21319
21323
|
:type Offset: int
|
|
@@ -21347,7 +21351,7 @@ class DescribeRollbackTaskDetailRequest(AbstractModel):
|
|
|
21347
21351
|
|
|
21348
21352
|
@property
|
|
21349
21353
|
def Limit(self):
|
|
21350
|
-
"""分页参数,每次请求返回的记录数。默认值为
|
|
21354
|
+
"""分页参数,每次请求返回的记录数。默认值为20,建议最大取值为100。
|
|
21351
21355
|
:rtype: int
|
|
21352
21356
|
"""
|
|
21353
21357
|
return self._Limit
|
|
@@ -22087,9 +22091,9 @@ class DescribeTableColumnsRequest(AbstractModel):
|
|
|
22087
22091
|
|
|
22088
22092
|
def __init__(self):
|
|
22089
22093
|
r"""
|
|
22090
|
-
:param _InstanceId: 实例ID,格式如:cdb-c1nl9rpv,与云数据库控制台页面中显示的实例ID相同,可使用[查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口获取,其值为输出参数中字段 InstanceId 的值。
|
|
22094
|
+
:param _InstanceId: 实例 ID,格式如:cdb-c1nl9rpv,与云数据库控制台页面中显示的实例ID相同,可使用[查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口获取,其值为输出参数中字段 InstanceId 的值。
|
|
22091
22095
|
:type InstanceId: str
|
|
22092
|
-
:param _Database: 数据库名称,可使用[查询数据库](https://cloud.tencent.com/document/api/236/17493)接口获得。
|
|
22096
|
+
:param _Database: 数据库名称,可使用 [查询数据库](https://cloud.tencent.com/document/api/236/17493) 接口获得。
|
|
22093
22097
|
:type Database: str
|
|
22094
22098
|
:param _Table: 数据库中的表的名称。
|
|
22095
22099
|
:type Table: str
|
|
@@ -22100,7 +22104,7 @@ class DescribeTableColumnsRequest(AbstractModel):
|
|
|
22100
22104
|
|
|
22101
22105
|
@property
|
|
22102
22106
|
def InstanceId(self):
|
|
22103
|
-
"""实例ID,格式如:cdb-c1nl9rpv,与云数据库控制台页面中显示的实例ID相同,可使用[查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口获取,其值为输出参数中字段 InstanceId 的值。
|
|
22107
|
+
"""实例 ID,格式如:cdb-c1nl9rpv,与云数据库控制台页面中显示的实例ID相同,可使用[查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口获取,其值为输出参数中字段 InstanceId 的值。
|
|
22104
22108
|
:rtype: str
|
|
22105
22109
|
"""
|
|
22106
22110
|
return self._InstanceId
|
|
@@ -22111,7 +22115,7 @@ class DescribeTableColumnsRequest(AbstractModel):
|
|
|
22111
22115
|
|
|
22112
22116
|
@property
|
|
22113
22117
|
def Database(self):
|
|
22114
|
-
"""数据库名称,可使用[查询数据库](https://cloud.tencent.com/document/api/236/17493)接口获得。
|
|
22118
|
+
"""数据库名称,可使用 [查询数据库](https://cloud.tencent.com/document/api/236/17493) 接口获得。
|
|
22115
22119
|
:rtype: str
|
|
22116
22120
|
"""
|
|
22117
22121
|
return self._Database
|
|
@@ -22217,7 +22221,7 @@ class DescribeTablesRequest(AbstractModel):
|
|
|
22217
22221
|
:type Database: str
|
|
22218
22222
|
:param _Offset: 记录偏移量,默认值为0。
|
|
22219
22223
|
:type Offset: int
|
|
22220
|
-
:param _Limit: 单次请求返回的数量,默认值为20,最大值为
|
|
22224
|
+
:param _Limit: 单次请求返回的数量,默认值为20,最大值为5000。
|
|
22221
22225
|
:type Limit: int
|
|
22222
22226
|
:param _TableRegexp: 匹配数据库表名的正则表达式,规则同 MySQL 官网
|
|
22223
22227
|
:type TableRegexp: str
|
|
@@ -22263,7 +22267,7 @@ class DescribeTablesRequest(AbstractModel):
|
|
|
22263
22267
|
|
|
22264
22268
|
@property
|
|
22265
22269
|
def Limit(self):
|
|
22266
|
-
"""单次请求返回的数量,默认值为20,最大值为
|
|
22270
|
+
"""单次请求返回的数量,默认值为20,最大值为5000。
|
|
22267
22271
|
:rtype: int
|
|
22268
22272
|
"""
|
|
22269
22273
|
return self._Limit
|
|
@@ -23697,7 +23701,7 @@ class ErrlogItem(AbstractModel):
|
|
|
23697
23701
|
|
|
23698
23702
|
def __init__(self):
|
|
23699
23703
|
r"""
|
|
23700
|
-
:param _Timestamp:
|
|
23704
|
+
:param _Timestamp: 错误发生时间。时间戳,秒级
|
|
23701
23705
|
:type Timestamp: int
|
|
23702
23706
|
:param _Content: 错误详情
|
|
23703
23707
|
:type Content: str
|
|
@@ -23707,7 +23711,7 @@ class ErrlogItem(AbstractModel):
|
|
|
23707
23711
|
|
|
23708
23712
|
@property
|
|
23709
23713
|
def Timestamp(self):
|
|
23710
|
-
"""
|
|
23714
|
+
"""错误发生时间。时间戳,秒级
|
|
23711
23715
|
:rtype: int
|
|
23712
23716
|
"""
|
|
23713
23717
|
return self._Timestamp
|
|
@@ -28011,19 +28015,23 @@ class ModifyBackupConfigRequest(AbstractModel):
|
|
|
28011
28015
|
|
|
28012
28016
|
def __init__(self):
|
|
28013
28017
|
r"""
|
|
28014
|
-
:param _InstanceId: 实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例ID相同。
|
|
28018
|
+
:param _InstanceId: 实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同。
|
|
28015
28019
|
:type InstanceId: str
|
|
28016
|
-
:param _ExpireDays:
|
|
28020
|
+
:param _ExpireDays: 数据备份文件的保留时间,单位为天。
|
|
28021
|
+
1. MySQL 双节点、三节点、云盘版数据备份文件可以保留7天 - 1830天。
|
|
28022
|
+
2. MySQL 单节点(云盘)数据备份文件可以保留7天 - 30天。
|
|
28017
28023
|
:type ExpireDays: int
|
|
28018
28024
|
:param _StartTime: (将废弃,建议使用 BackupTimeWindow 参数) 备份时间范围,格式为:02:00-06:00,起点和终点时间目前限制为整点,目前可以选择的范围为: 00:00-12:00,02:00-06:00,06:00-10:00,10:00-14:00,14:00-18:00,18:00-22:00,22:00-02:00。
|
|
28019
28025
|
:type StartTime: str
|
|
28020
28026
|
:param _BackupMethod: 自动备份方式,仅支持:physical - 物理冷备
|
|
28021
28027
|
:type BackupMethod: str
|
|
28022
|
-
:param _BinlogExpireDays: binlog
|
|
28028
|
+
:param _BinlogExpireDays: binlog 的保留时间,单位为天。
|
|
28029
|
+
1. MySQL 双节点、三节点、云盘版日志备份文件可以保留7天 - 3650天。
|
|
28030
|
+
2. MySQL 单节点(云盘)日志备份文件可以保留7天 - 30天。
|
|
28023
28031
|
:type BinlogExpireDays: int
|
|
28024
28032
|
:param _BackupTimeWindow: 备份时间窗,比如要设置每周二和周日 10:00-14:00之间备份,该参数如下:{"Monday": "", "Tuesday": "10:00-14:00", "Wednesday": "", "Thursday": "", "Friday": "", "Saturday": "", "Sunday": "10:00-14:00"} (注:可以设置一周的某几天备份,但是每天的备份时间需要设置为相同的时间段。 如果设置了该字段,将忽略StartTime字段的设置)
|
|
28025
28033
|
:type BackupTimeWindow: :class:`tencentcloud.cdb.v20170320.models.CommonTimeWindow`
|
|
28026
|
-
:param _EnableBackupPeriodSave: 定期保留开关,off - 不开启定期保留策略,on - 开启定期保留策略,默认为off
|
|
28034
|
+
:param _EnableBackupPeriodSave: 定期保留开关,off - 不开启定期保留策略,on - 开启定期保留策略,默认为off。
|
|
28027
28035
|
:type EnableBackupPeriodSave: str
|
|
28028
28036
|
:param _EnableBackupPeriodLongTermSave: 长期保留开关,该字段功能暂未上线,可忽略。off - 不开启长期保留策略,on - 开启长期保留策略,默认为off,如果开启,则BackupPeriodSaveDays,BackupPeriodSaveInterval,BackupPeriodSaveCount参数无效
|
|
28029
28037
|
:type EnableBackupPeriodLongTermSave: str
|
|
@@ -28075,7 +28083,7 @@ class ModifyBackupConfigRequest(AbstractModel):
|
|
|
28075
28083
|
|
|
28076
28084
|
@property
|
|
28077
28085
|
def InstanceId(self):
|
|
28078
|
-
"""实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例ID相同。
|
|
28086
|
+
"""实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同。
|
|
28079
28087
|
:rtype: str
|
|
28080
28088
|
"""
|
|
28081
28089
|
return self._InstanceId
|
|
@@ -28086,7 +28094,9 @@ class ModifyBackupConfigRequest(AbstractModel):
|
|
|
28086
28094
|
|
|
28087
28095
|
@property
|
|
28088
28096
|
def ExpireDays(self):
|
|
28089
|
-
"""
|
|
28097
|
+
"""数据备份文件的保留时间,单位为天。
|
|
28098
|
+
1. MySQL 双节点、三节点、云盘版数据备份文件可以保留7天 - 1830天。
|
|
28099
|
+
2. MySQL 单节点(云盘)数据备份文件可以保留7天 - 30天。
|
|
28090
28100
|
:rtype: int
|
|
28091
28101
|
"""
|
|
28092
28102
|
return self._ExpireDays
|
|
@@ -28119,7 +28129,9 @@ class ModifyBackupConfigRequest(AbstractModel):
|
|
|
28119
28129
|
|
|
28120
28130
|
@property
|
|
28121
28131
|
def BinlogExpireDays(self):
|
|
28122
|
-
"""binlog
|
|
28132
|
+
"""binlog 的保留时间,单位为天。
|
|
28133
|
+
1. MySQL 双节点、三节点、云盘版日志备份文件可以保留7天 - 3650天。
|
|
28134
|
+
2. MySQL 单节点(云盘)日志备份文件可以保留7天 - 30天。
|
|
28123
28135
|
:rtype: int
|
|
28124
28136
|
"""
|
|
28125
28137
|
return self._BinlogExpireDays
|
|
@@ -28141,7 +28153,7 @@ class ModifyBackupConfigRequest(AbstractModel):
|
|
|
28141
28153
|
|
|
28142
28154
|
@property
|
|
28143
28155
|
def EnableBackupPeriodSave(self):
|
|
28144
|
-
"""定期保留开关,off - 不开启定期保留策略,on - 开启定期保留策略,默认为off
|
|
28156
|
+
"""定期保留开关,off - 不开启定期保留策略,on - 开启定期保留策略,默认为off。
|
|
28145
28157
|
:rtype: str
|
|
28146
28158
|
"""
|
|
28147
28159
|
return self._EnableBackupPeriodSave
|
|
@@ -28914,25 +28926,27 @@ class ModifyDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
28914
28926
|
|
|
28915
28927
|
def __init__(self):
|
|
28916
28928
|
r"""
|
|
28917
|
-
:param _InstanceId: 实例ID
|
|
28929
|
+
:param _InstanceId: 实例 ID,可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
|
|
28918
28930
|
:type InstanceId: str
|
|
28919
|
-
:param _LogType:
|
|
28931
|
+
:param _LogType: 日志类型。error:错误日志,slowlog:慢日志。
|
|
28920
28932
|
:type LogType: str
|
|
28921
|
-
:param _Status:
|
|
28933
|
+
:param _Status: 投递状态。ON:开启,OFF:关闭。
|
|
28922
28934
|
:type Status: str
|
|
28923
|
-
:param _CreateLogset:
|
|
28935
|
+
:param _CreateLogset: 是否需要创建日志集。默认为 false。
|
|
28924
28936
|
:type CreateLogset: bool
|
|
28925
|
-
:param _Logset: 需要创建日志集时为日志集名称;选择已有日志集时,为日志集ID
|
|
28937
|
+
:param _Logset: 需要创建日志集时为日志集名称;选择已有日志集时,为日志集 ID。默认为空。
|
|
28938
|
+
说明:当参数 Status 的值为 ON 时,Logset 和 LogTopic 参数必须填一个。
|
|
28926
28939
|
:type Logset: str
|
|
28927
|
-
:param _CreateLogTopic:
|
|
28940
|
+
:param _CreateLogTopic: 是否需要创建日志主题。默认为 false。
|
|
28928
28941
|
:type CreateLogTopic: bool
|
|
28929
|
-
:param _LogTopic: 需要创建日志主题时为日志主题名称;选择已有日志主题时,为日志主题ID
|
|
28942
|
+
:param _LogTopic: 需要创建日志主题时为日志主题名称;选择已有日志主题时,为日志主题 ID。默认为空。
|
|
28943
|
+
说明:当参数 Status 的值为 ON 时,Logset 和 LogTopic 参数必须填一个。
|
|
28930
28944
|
:type LogTopic: str
|
|
28931
|
-
:param _Period: 日志主题有效期,不填写时,默认30
|
|
28945
|
+
:param _Period: 日志主题有效期,不填写时,默认30天,最大值3600。
|
|
28932
28946
|
:type Period: int
|
|
28933
|
-
:param _CreateIndex:
|
|
28947
|
+
:param _CreateIndex: 创建日志主题时,是否创建索引,默认为 false。
|
|
28934
28948
|
:type CreateIndex: bool
|
|
28935
|
-
:param _ClsRegion: CLS
|
|
28949
|
+
:param _ClsRegion: CLS 所在地域,不填择默认为 Region 的参数值。
|
|
28936
28950
|
:type ClsRegion: str
|
|
28937
28951
|
"""
|
|
28938
28952
|
self._InstanceId = None
|
|
@@ -28948,7 +28962,7 @@ class ModifyDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
28948
28962
|
|
|
28949
28963
|
@property
|
|
28950
28964
|
def InstanceId(self):
|
|
28951
|
-
"""实例ID
|
|
28965
|
+
"""实例 ID,可通过 [DescribeDBInstances](https://cloud.tencent.com/document/product/236/15872) 接口获取。
|
|
28952
28966
|
:rtype: str
|
|
28953
28967
|
"""
|
|
28954
28968
|
return self._InstanceId
|
|
@@ -28959,7 +28973,7 @@ class ModifyDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
28959
28973
|
|
|
28960
28974
|
@property
|
|
28961
28975
|
def LogType(self):
|
|
28962
|
-
"""
|
|
28976
|
+
"""日志类型。error:错误日志,slowlog:慢日志。
|
|
28963
28977
|
:rtype: str
|
|
28964
28978
|
"""
|
|
28965
28979
|
return self._LogType
|
|
@@ -28970,7 +28984,7 @@ class ModifyDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
28970
28984
|
|
|
28971
28985
|
@property
|
|
28972
28986
|
def Status(self):
|
|
28973
|
-
"""
|
|
28987
|
+
"""投递状态。ON:开启,OFF:关闭。
|
|
28974
28988
|
:rtype: str
|
|
28975
28989
|
"""
|
|
28976
28990
|
return self._Status
|
|
@@ -28981,7 +28995,7 @@ class ModifyDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
28981
28995
|
|
|
28982
28996
|
@property
|
|
28983
28997
|
def CreateLogset(self):
|
|
28984
|
-
"""
|
|
28998
|
+
"""是否需要创建日志集。默认为 false。
|
|
28985
28999
|
:rtype: bool
|
|
28986
29000
|
"""
|
|
28987
29001
|
return self._CreateLogset
|
|
@@ -28992,7 +29006,8 @@ class ModifyDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
28992
29006
|
|
|
28993
29007
|
@property
|
|
28994
29008
|
def Logset(self):
|
|
28995
|
-
"""需要创建日志集时为日志集名称;选择已有日志集时,为日志集ID
|
|
29009
|
+
"""需要创建日志集时为日志集名称;选择已有日志集时,为日志集 ID。默认为空。
|
|
29010
|
+
说明:当参数 Status 的值为 ON 时,Logset 和 LogTopic 参数必须填一个。
|
|
28996
29011
|
:rtype: str
|
|
28997
29012
|
"""
|
|
28998
29013
|
return self._Logset
|
|
@@ -29003,7 +29018,7 @@ class ModifyDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
29003
29018
|
|
|
29004
29019
|
@property
|
|
29005
29020
|
def CreateLogTopic(self):
|
|
29006
|
-
"""
|
|
29021
|
+
"""是否需要创建日志主题。默认为 false。
|
|
29007
29022
|
:rtype: bool
|
|
29008
29023
|
"""
|
|
29009
29024
|
return self._CreateLogTopic
|
|
@@ -29014,7 +29029,8 @@ class ModifyDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
29014
29029
|
|
|
29015
29030
|
@property
|
|
29016
29031
|
def LogTopic(self):
|
|
29017
|
-
"""需要创建日志主题时为日志主题名称;选择已有日志主题时,为日志主题ID
|
|
29032
|
+
"""需要创建日志主题时为日志主题名称;选择已有日志主题时,为日志主题 ID。默认为空。
|
|
29033
|
+
说明:当参数 Status 的值为 ON 时,Logset 和 LogTopic 参数必须填一个。
|
|
29018
29034
|
:rtype: str
|
|
29019
29035
|
"""
|
|
29020
29036
|
return self._LogTopic
|
|
@@ -29025,7 +29041,7 @@ class ModifyDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
29025
29041
|
|
|
29026
29042
|
@property
|
|
29027
29043
|
def Period(self):
|
|
29028
|
-
"""日志主题有效期,不填写时,默认30
|
|
29044
|
+
"""日志主题有效期,不填写时,默认30天,最大值3600。
|
|
29029
29045
|
:rtype: int
|
|
29030
29046
|
"""
|
|
29031
29047
|
return self._Period
|
|
@@ -29036,7 +29052,7 @@ class ModifyDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
29036
29052
|
|
|
29037
29053
|
@property
|
|
29038
29054
|
def CreateIndex(self):
|
|
29039
|
-
"""
|
|
29055
|
+
"""创建日志主题时,是否创建索引,默认为 false。
|
|
29040
29056
|
:rtype: bool
|
|
29041
29057
|
"""
|
|
29042
29058
|
return self._CreateIndex
|
|
@@ -29047,7 +29063,7 @@ class ModifyDBInstanceLogToCLSRequest(AbstractModel):
|
|
|
29047
29063
|
|
|
29048
29064
|
@property
|
|
29049
29065
|
def ClsRegion(self):
|
|
29050
|
-
"""CLS
|
|
29066
|
+
"""CLS 所在地域,不填择默认为 Region 的参数值。
|
|
29051
29067
|
:rtype: str
|
|
29052
29068
|
"""
|
|
29053
29069
|
return self._ClsRegion
|
|
@@ -30036,11 +30052,15 @@ class ModifyLocalBinlogConfigRequest(AbstractModel):
|
|
|
30036
30052
|
|
|
30037
30053
|
def __init__(self):
|
|
30038
30054
|
r"""
|
|
30039
|
-
:param _InstanceId: 实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例ID相同。
|
|
30055
|
+
:param _InstanceId: 实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同。
|
|
30040
30056
|
:type InstanceId: str
|
|
30041
|
-
:param _SaveHours: 本地binlog
|
|
30057
|
+
:param _SaveHours: 本地 binlog 保留时长。不同实例的可取值如下:
|
|
30058
|
+
1. 云盘版实例、双节点实例、三节点实例的本地 binlog 保留时长(小时)默认为120,范围:6 - 168。
|
|
30059
|
+
2. 灾备实例的本地 binlog 保留时长(小时)默认为120,范围:120 - 168。
|
|
30060
|
+
3. 单节点云盘实例的本地 binlog 保留时长(小时)默认为120,范围:0 - 168。
|
|
30061
|
+
4. 若双节点实例、三节点实例下无灾备实例,则该主实例的本地 binlog 保留时长(小时)范围是:6 - 168;若双节点实例、三节点实例下有灾备实例,或者要为双节点实例、三节点实例添加灾备实例,为避免同步异常,该主实例的本地 binlog 保留时长(小时)不能设置低于120小时,范围是:120 - 168。
|
|
30042
30062
|
:type SaveHours: int
|
|
30043
|
-
:param _MaxUsage: 本地binlog空间使用率,可取值范围:[30,50]。
|
|
30063
|
+
:param _MaxUsage: 本地 binlog 空间使用率,可取值范围:[30,50]。
|
|
30044
30064
|
:type MaxUsage: int
|
|
30045
30065
|
"""
|
|
30046
30066
|
self._InstanceId = None
|
|
@@ -30049,7 +30069,7 @@ class ModifyLocalBinlogConfigRequest(AbstractModel):
|
|
|
30049
30069
|
|
|
30050
30070
|
@property
|
|
30051
30071
|
def InstanceId(self):
|
|
30052
|
-
"""实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例ID相同。
|
|
30072
|
+
"""实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同。
|
|
30053
30073
|
:rtype: str
|
|
30054
30074
|
"""
|
|
30055
30075
|
return self._InstanceId
|
|
@@ -30060,7 +30080,11 @@ class ModifyLocalBinlogConfigRequest(AbstractModel):
|
|
|
30060
30080
|
|
|
30061
30081
|
@property
|
|
30062
30082
|
def SaveHours(self):
|
|
30063
|
-
"""本地binlog
|
|
30083
|
+
"""本地 binlog 保留时长。不同实例的可取值如下:
|
|
30084
|
+
1. 云盘版实例、双节点实例、三节点实例的本地 binlog 保留时长(小时)默认为120,范围:6 - 168。
|
|
30085
|
+
2. 灾备实例的本地 binlog 保留时长(小时)默认为120,范围:120 - 168。
|
|
30086
|
+
3. 单节点云盘实例的本地 binlog 保留时长(小时)默认为120,范围:0 - 168。
|
|
30087
|
+
4. 若双节点实例、三节点实例下无灾备实例,则该主实例的本地 binlog 保留时长(小时)范围是:6 - 168;若双节点实例、三节点实例下有灾备实例,或者要为双节点实例、三节点实例添加灾备实例,为避免同步异常,该主实例的本地 binlog 保留时长(小时)不能设置低于120小时,范围是:120 - 168。
|
|
30064
30088
|
:rtype: int
|
|
30065
30089
|
"""
|
|
30066
30090
|
return self._SaveHours
|
|
@@ -30071,7 +30095,7 @@ class ModifyLocalBinlogConfigRequest(AbstractModel):
|
|
|
30071
30095
|
|
|
30072
30096
|
@property
|
|
30073
30097
|
def MaxUsage(self):
|
|
30074
|
-
"""本地binlog空间使用率,可取值范围:[30,50]。
|
|
30098
|
+
"""本地 binlog 空间使用率,可取值范围:[30,50]。
|
|
30075
30099
|
:rtype: int
|
|
30076
30100
|
"""
|
|
30077
30101
|
return self._MaxUsage
|
|
@@ -30224,9 +30248,9 @@ class ModifyParamTemplateRequest(AbstractModel):
|
|
|
30224
30248
|
|
|
30225
30249
|
def __init__(self):
|
|
30226
30250
|
r"""
|
|
30227
|
-
:param _TemplateId: 模板 ID
|
|
30251
|
+
:param _TemplateId: 模板 ID。可通过 [DescribeParamTemplateInfo](https://cloud.tencent.com/document/product/236/32660) 接口获取。
|
|
30228
30252
|
:type TemplateId: int
|
|
30229
|
-
:param _Name:
|
|
30253
|
+
:param _Name: 模板名称,仅支持数字、英文大小写字母、中文以及特殊字符_-./()()[]+=::@,且长度不能超过60。
|
|
30230
30254
|
:type Name: str
|
|
30231
30255
|
:param _Description: 模板描述,长度不超过255。
|
|
30232
30256
|
:type Description: str
|
|
@@ -30240,7 +30264,7 @@ class ModifyParamTemplateRequest(AbstractModel):
|
|
|
30240
30264
|
|
|
30241
30265
|
@property
|
|
30242
30266
|
def TemplateId(self):
|
|
30243
|
-
"""模板 ID
|
|
30267
|
+
"""模板 ID。可通过 [DescribeParamTemplateInfo](https://cloud.tencent.com/document/product/236/32660) 接口获取。
|
|
30244
30268
|
:rtype: int
|
|
30245
30269
|
"""
|
|
30246
30270
|
return self._TemplateId
|
|
@@ -30251,7 +30275,7 @@ class ModifyParamTemplateRequest(AbstractModel):
|
|
|
30251
30275
|
|
|
30252
30276
|
@property
|
|
30253
30277
|
def Name(self):
|
|
30254
|
-
"""
|
|
30278
|
+
"""模板名称,仅支持数字、英文大小写字母、中文以及特殊字符_-./()()[]+=::@,且长度不能超过60。
|
|
30255
30279
|
:rtype: str
|
|
30256
30280
|
"""
|
|
30257
30281
|
return self._Name
|
|
@@ -35026,15 +35050,15 @@ class RollbackInstancesInfo(AbstractModel):
|
|
|
35026
35050
|
|
|
35027
35051
|
def __init__(self):
|
|
35028
35052
|
r"""
|
|
35029
|
-
:param _InstanceId: 云数据库实例ID
|
|
35053
|
+
:param _InstanceId: 云数据库实例 ID。
|
|
35030
35054
|
:type InstanceId: str
|
|
35031
|
-
:param _Strategy: 回档策略。可选值为:table、db、full
|
|
35055
|
+
:param _Strategy: 回档策略。可选值为:table、db、full。table - 极速回档模式,仅导入所选中表级别的备份和binlog,如有跨表操作,且关联表未被同时选中,将会导致回档失败,该模式下参数Databases必须为空;db - 快速模式,仅导入所选中库级别的备份和binlog,如有跨库操作,且关联库未被同时选中,将会导致回档失败;full - 普通回档模式,将导入整个实例的备份和 binlog,速度较慢。
|
|
35032
35056
|
:type Strategy: str
|
|
35033
|
-
:param _RollbackTime: 数据库回档时间,时间格式为:yyyy-mm-dd hh:mm:ss
|
|
35057
|
+
:param _RollbackTime: 数据库回档时间,时间格式为:yyyy-mm-dd hh:mm:ss。
|
|
35034
35058
|
:type RollbackTime: str
|
|
35035
|
-
:param _Databases:
|
|
35059
|
+
:param _Databases: 待回档的数据库信息,表示整库回档。
|
|
35036
35060
|
:type Databases: list of RollbackDBName
|
|
35037
|
-
:param _Tables:
|
|
35061
|
+
:param _Tables: 待回档的数据库表信息,表示按表回档。
|
|
35038
35062
|
:type Tables: list of RollbackTables
|
|
35039
35063
|
"""
|
|
35040
35064
|
self._InstanceId = None
|
|
@@ -35045,7 +35069,7 @@ class RollbackInstancesInfo(AbstractModel):
|
|
|
35045
35069
|
|
|
35046
35070
|
@property
|
|
35047
35071
|
def InstanceId(self):
|
|
35048
|
-
"""云数据库实例ID
|
|
35072
|
+
"""云数据库实例 ID。
|
|
35049
35073
|
:rtype: str
|
|
35050
35074
|
"""
|
|
35051
35075
|
return self._InstanceId
|
|
@@ -35056,7 +35080,7 @@ class RollbackInstancesInfo(AbstractModel):
|
|
|
35056
35080
|
|
|
35057
35081
|
@property
|
|
35058
35082
|
def Strategy(self):
|
|
35059
|
-
"""回档策略。可选值为:table、db、full
|
|
35083
|
+
"""回档策略。可选值为:table、db、full。table - 极速回档模式,仅导入所选中表级别的备份和binlog,如有跨表操作,且关联表未被同时选中,将会导致回档失败,该模式下参数Databases必须为空;db - 快速模式,仅导入所选中库级别的备份和binlog,如有跨库操作,且关联库未被同时选中,将会导致回档失败;full - 普通回档模式,将导入整个实例的备份和 binlog,速度较慢。
|
|
35060
35084
|
:rtype: str
|
|
35061
35085
|
"""
|
|
35062
35086
|
return self._Strategy
|
|
@@ -35067,7 +35091,7 @@ class RollbackInstancesInfo(AbstractModel):
|
|
|
35067
35091
|
|
|
35068
35092
|
@property
|
|
35069
35093
|
def RollbackTime(self):
|
|
35070
|
-
"""数据库回档时间,时间格式为:yyyy-mm-dd hh:mm:ss
|
|
35094
|
+
"""数据库回档时间,时间格式为:yyyy-mm-dd hh:mm:ss。
|
|
35071
35095
|
:rtype: str
|
|
35072
35096
|
"""
|
|
35073
35097
|
return self._RollbackTime
|
|
@@ -35078,7 +35102,7 @@ class RollbackInstancesInfo(AbstractModel):
|
|
|
35078
35102
|
|
|
35079
35103
|
@property
|
|
35080
35104
|
def Databases(self):
|
|
35081
|
-
"""
|
|
35105
|
+
"""待回档的数据库信息,表示整库回档。
|
|
35082
35106
|
:rtype: list of RollbackDBName
|
|
35083
35107
|
"""
|
|
35084
35108
|
return self._Databases
|
|
@@ -35089,7 +35113,7 @@ class RollbackInstancesInfo(AbstractModel):
|
|
|
35089
35113
|
|
|
35090
35114
|
@property
|
|
35091
35115
|
def Tables(self):
|
|
35092
|
-
"""
|
|
35116
|
+
"""待回档的数据库表信息,表示按表回档。
|
|
35093
35117
|
:rtype: list of RollbackTables
|
|
35094
35118
|
"""
|
|
35095
35119
|
return self._Tables
|
|
@@ -36188,7 +36212,7 @@ class SlowLogItem(AbstractModel):
|
|
|
36188
36212
|
|
|
36189
36213
|
def __init__(self):
|
|
36190
36214
|
r"""
|
|
36191
|
-
:param _Timestamp: Sql
|
|
36215
|
+
:param _Timestamp: Sql的执行时间。秒级时间戳。
|
|
36192
36216
|
:type Timestamp: int
|
|
36193
36217
|
:param _QueryTime: Sql的执行时长(秒)。
|
|
36194
36218
|
:type QueryTime: float
|
|
@@ -36225,7 +36249,7 @@ class SlowLogItem(AbstractModel):
|
|
|
36225
36249
|
|
|
36226
36250
|
@property
|
|
36227
36251
|
def Timestamp(self):
|
|
36228
|
-
"""Sql
|
|
36252
|
+
"""Sql的执行时间。秒级时间戳。
|
|
36229
36253
|
:rtype: int
|
|
36230
36254
|
"""
|
|
36231
36255
|
return self._Timestamp
|