tencentcloud-sdk-python-cdb 3.0.1055__tar.gz → 3.0.1060__tar.gz
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-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/setup.py +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/tencentcloud/cdb/v20170320/cdb_client.py +2 -2
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/tencentcloud/cdb/v20170320/models.py +27 -2
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/tencentcloud_sdk_python_cdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cdb-3.0.1060/tencentcloud_sdk_python_cdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cdb-3.0.1055/tencentcloud_sdk_python_cdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/README.rst +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/tencentcloud/cdb/__init__.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/tencentcloud/cdb/v20170320/__init__.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/tencentcloud/cdb/v20170320/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/tencentcloud_sdk_python_cdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/tencentcloud_sdk_python_cdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1055 → tencentcloud-sdk-python-cdb-3.0.1060}/tencentcloud_sdk_python_cdb.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-cdb',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1060"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cdb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -497,7 +497,7 @@ class CdbClient(AbstractClient):
|
|
|
497
497
|
2. 单次创建实例最大支持 100 个,实例时长最大支持 36 个月;
|
|
498
498
|
3. 支持创建 MySQL 5.5 、 MySQL 5.6 、 MySQL 5.7 、 MySQL 8.0 版本;
|
|
499
499
|
4. 支持创建主实例、只读实例、灾备实例;
|
|
500
|
-
5. 当入参指定 Port,
|
|
500
|
+
5. 当入参指定 Port,ParamTemplateType 或 Password 时,该实例会进行初始化操作(不支持基础版实例);
|
|
501
501
|
6. 当入参指定 ParamTemplateId 或 AlarmPolicyList 时,需将SDK提升至最新版本方可支持;
|
|
502
502
|
|
|
503
503
|
:param request: Request instance for CreateDBInstance.
|
|
@@ -529,7 +529,7 @@ class CdbClient(AbstractClient):
|
|
|
529
529
|
2. 单次创建实例最大支持 100 个,实例时长最大支持 36 个月;
|
|
530
530
|
3. 支持创建 MySQL 5.5、MySQL 5.6 、MySQL 5.7 和 MySQL 8.0 版本;
|
|
531
531
|
4. 支持创建主实例、灾备实例和只读实例;
|
|
532
|
-
5. 当入参指定 Port,
|
|
532
|
+
5. 当入参指定 Port,ParamTemplateType 或 Password 时,该实例会进行初始化操作;
|
|
533
533
|
|
|
534
534
|
:param request: Request instance for CreateDBInstanceHour.
|
|
535
535
|
:type request: :class:`tencentcloud.cdb.v20170320.models.CreateDBInstanceHourRequest`
|
|
@@ -2452,6 +2452,9 @@ class BackupInfo(AbstractModel):
|
|
|
2452
2452
|
:param _EncryptionFlag: 备份文件是否加密, on-加密, off-未加密
|
|
2453
2453
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2454
2454
|
:type EncryptionFlag: str
|
|
2455
|
+
:param _ExecutedGTIDSet: 备份GTID点位
|
|
2456
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2457
|
+
:type ExecutedGTIDSet: str
|
|
2455
2458
|
"""
|
|
2456
2459
|
self._Name = None
|
|
2457
2460
|
self._Size = None
|
|
@@ -2473,6 +2476,7 @@ class BackupInfo(AbstractModel):
|
|
|
2473
2476
|
self._CosStorageType = None
|
|
2474
2477
|
self._InstanceId = None
|
|
2475
2478
|
self._EncryptionFlag = None
|
|
2479
|
+
self._ExecutedGTIDSet = None
|
|
2476
2480
|
|
|
2477
2481
|
@property
|
|
2478
2482
|
def Name(self):
|
|
@@ -2634,6 +2638,14 @@ class BackupInfo(AbstractModel):
|
|
|
2634
2638
|
def EncryptionFlag(self, EncryptionFlag):
|
|
2635
2639
|
self._EncryptionFlag = EncryptionFlag
|
|
2636
2640
|
|
|
2641
|
+
@property
|
|
2642
|
+
def ExecutedGTIDSet(self):
|
|
2643
|
+
return self._ExecutedGTIDSet
|
|
2644
|
+
|
|
2645
|
+
@ExecutedGTIDSet.setter
|
|
2646
|
+
def ExecutedGTIDSet(self, ExecutedGTIDSet):
|
|
2647
|
+
self._ExecutedGTIDSet = ExecutedGTIDSet
|
|
2648
|
+
|
|
2637
2649
|
|
|
2638
2650
|
def _deserialize(self, params):
|
|
2639
2651
|
self._Name = params.get("Name")
|
|
@@ -2661,6 +2673,7 @@ class BackupInfo(AbstractModel):
|
|
|
2661
2673
|
self._CosStorageType = params.get("CosStorageType")
|
|
2662
2674
|
self._InstanceId = params.get("InstanceId")
|
|
2663
2675
|
self._EncryptionFlag = params.get("EncryptionFlag")
|
|
2676
|
+
self._ExecutedGTIDSet = params.get("ExecutedGTIDSet")
|
|
2664
2677
|
memeber_set = set(params.keys())
|
|
2665
2678
|
for name, value in vars(self).items():
|
|
2666
2679
|
property_name = name[1:]
|
|
@@ -7147,7 +7160,7 @@ class CreateDatabaseRequest(AbstractModel):
|
|
|
7147
7160
|
r"""
|
|
7148
7161
|
:param _InstanceId: 实例 ID,格式如:cdb-c1nl9rpv,与云数据库控制台页面中显示的实例 ID 相同。
|
|
7149
7162
|
:type InstanceId: str
|
|
7150
|
-
:param _DBName:
|
|
7163
|
+
:param _DBName: 数据库名称,长度不超过64。
|
|
7151
7164
|
:type DBName: str
|
|
7152
7165
|
:param _CharacterSetName: 字符集,可选值:utf8,gbk,latin1,utf8mb4。
|
|
7153
7166
|
:type CharacterSetName: str
|
|
@@ -8258,7 +8271,7 @@ class DeleteDatabaseRequest(AbstractModel):
|
|
|
8258
8271
|
r"""
|
|
8259
8272
|
:param _InstanceId: 实例 ID,格式如:cdb-c1nl9rpv,与云数据库控制台页面中显示的实例 ID 相同。
|
|
8260
8273
|
:type InstanceId: str
|
|
8261
|
-
:param _DBName:
|
|
8274
|
+
:param _DBName: 数据库名称,长度不超过64。
|
|
8262
8275
|
:type DBName: str
|
|
8263
8276
|
"""
|
|
8264
8277
|
self._InstanceId = None
|
|
@@ -11222,12 +11235,15 @@ class DescribeBinlogsRequest(AbstractModel):
|
|
|
11222
11235
|
:type MinStartTime: str
|
|
11223
11236
|
:param _MaxStartTime: binlog最晚开始时间,时间格式:2016-03-17 02:10:37
|
|
11224
11237
|
:type MaxStartTime: str
|
|
11238
|
+
:param _ContainsMinStartTime: 返回binlog列表是否包含MinStartTime起始节点,默认为否
|
|
11239
|
+
:type ContainsMinStartTime: bool
|
|
11225
11240
|
"""
|
|
11226
11241
|
self._InstanceId = None
|
|
11227
11242
|
self._Offset = None
|
|
11228
11243
|
self._Limit = None
|
|
11229
11244
|
self._MinStartTime = None
|
|
11230
11245
|
self._MaxStartTime = None
|
|
11246
|
+
self._ContainsMinStartTime = None
|
|
11231
11247
|
|
|
11232
11248
|
@property
|
|
11233
11249
|
def InstanceId(self):
|
|
@@ -11269,6 +11285,14 @@ class DescribeBinlogsRequest(AbstractModel):
|
|
|
11269
11285
|
def MaxStartTime(self, MaxStartTime):
|
|
11270
11286
|
self._MaxStartTime = MaxStartTime
|
|
11271
11287
|
|
|
11288
|
+
@property
|
|
11289
|
+
def ContainsMinStartTime(self):
|
|
11290
|
+
return self._ContainsMinStartTime
|
|
11291
|
+
|
|
11292
|
+
@ContainsMinStartTime.setter
|
|
11293
|
+
def ContainsMinStartTime(self, ContainsMinStartTime):
|
|
11294
|
+
self._ContainsMinStartTime = ContainsMinStartTime
|
|
11295
|
+
|
|
11272
11296
|
|
|
11273
11297
|
def _deserialize(self, params):
|
|
11274
11298
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -11276,6 +11300,7 @@ class DescribeBinlogsRequest(AbstractModel):
|
|
|
11276
11300
|
self._Limit = params.get("Limit")
|
|
11277
11301
|
self._MinStartTime = params.get("MinStartTime")
|
|
11278
11302
|
self._MaxStartTime = params.get("MaxStartTime")
|
|
11303
|
+
self._ContainsMinStartTime = params.get("ContainsMinStartTime")
|
|
11279
11304
|
memeber_set = set(params.keys())
|
|
11280
11305
|
for name, value in vars(self).items():
|
|
11281
11306
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1060
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1055
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|