tencentcloud-sdk-python-cdb 3.0.984__tar.gz → 3.0.986__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.984 → tencentcloud-sdk-python-cdb-3.0.986}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/setup.py +1 -1
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/tencentcloud/cdb/v20170320/models.py +16 -0
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/tencentcloud_sdk_python_cdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cdb-3.0.986/tencentcloud_sdk_python_cdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cdb-3.0.984/tencentcloud_sdk_python_cdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/README.rst +0 -0
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/tencentcloud/cdb/__init__.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/tencentcloud/cdb/v20170320/__init__.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/tencentcloud/cdb/v20170320/cdb_client.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/tencentcloud/cdb/v20170320/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/tencentcloud_sdk_python_cdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/tencentcloud_sdk_python_cdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cdb-3.0.984 → tencentcloud-sdk-python-cdb-3.0.986}/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.986"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cdb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -21594,6 +21594,8 @@ class ParamRecord(AbstractModel):
|
|
|
21594
21594
|
:type IsSucess: bool
|
|
21595
21595
|
:param _ModifyTime: 修改时间
|
|
21596
21596
|
:type ModifyTime: str
|
|
21597
|
+
:param _IsSuccess: 参数是否修改成功
|
|
21598
|
+
:type IsSuccess: bool
|
|
21597
21599
|
"""
|
|
21598
21600
|
self._InstanceId = None
|
|
21599
21601
|
self._ParamName = None
|
|
@@ -21601,6 +21603,7 @@ class ParamRecord(AbstractModel):
|
|
|
21601
21603
|
self._NewValue = None
|
|
21602
21604
|
self._IsSucess = None
|
|
21603
21605
|
self._ModifyTime = None
|
|
21606
|
+
self._IsSuccess = None
|
|
21604
21607
|
|
|
21605
21608
|
@property
|
|
21606
21609
|
def InstanceId(self):
|
|
@@ -21636,10 +21639,14 @@ class ParamRecord(AbstractModel):
|
|
|
21636
21639
|
|
|
21637
21640
|
@property
|
|
21638
21641
|
def IsSucess(self):
|
|
21642
|
+
warnings.warn("parameter `IsSucess` is deprecated", DeprecationWarning)
|
|
21643
|
+
|
|
21639
21644
|
return self._IsSucess
|
|
21640
21645
|
|
|
21641
21646
|
@IsSucess.setter
|
|
21642
21647
|
def IsSucess(self, IsSucess):
|
|
21648
|
+
warnings.warn("parameter `IsSucess` is deprecated", DeprecationWarning)
|
|
21649
|
+
|
|
21643
21650
|
self._IsSucess = IsSucess
|
|
21644
21651
|
|
|
21645
21652
|
@property
|
|
@@ -21650,6 +21657,14 @@ class ParamRecord(AbstractModel):
|
|
|
21650
21657
|
def ModifyTime(self, ModifyTime):
|
|
21651
21658
|
self._ModifyTime = ModifyTime
|
|
21652
21659
|
|
|
21660
|
+
@property
|
|
21661
|
+
def IsSuccess(self):
|
|
21662
|
+
return self._IsSuccess
|
|
21663
|
+
|
|
21664
|
+
@IsSuccess.setter
|
|
21665
|
+
def IsSuccess(self, IsSuccess):
|
|
21666
|
+
self._IsSuccess = IsSuccess
|
|
21667
|
+
|
|
21653
21668
|
|
|
21654
21669
|
def _deserialize(self, params):
|
|
21655
21670
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -21658,6 +21673,7 @@ class ParamRecord(AbstractModel):
|
|
|
21658
21673
|
self._NewValue = params.get("NewValue")
|
|
21659
21674
|
self._IsSucess = params.get("IsSucess")
|
|
21660
21675
|
self._ModifyTime = params.get("ModifyTime")
|
|
21676
|
+
self._IsSuccess = params.get("IsSuccess")
|
|
21661
21677
|
memeber_set = set(params.keys())
|
|
21662
21678
|
for name, value in vars(self).items():
|
|
21663
21679
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.986
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.984
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|