tencentcloud-sdk-python-vdb 3.0.1177__tar.gz → 3.0.1179__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-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/setup.py +1 -1
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/tencentcloud/vdb/v20230616/models.py +26 -0
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/tencentcloud_sdk_python_vdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-vdb-3.0.1179/tencentcloud_sdk_python_vdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-vdb-3.0.1177/tencentcloud_sdk_python_vdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/README.rst +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/setup.cfg +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/tencentcloud/vdb/__init__.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/tencentcloud/vdb/v20230616/__init__.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/tencentcloud/vdb/v20230616/errorcodes.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/tencentcloud/vdb/v20230616/vdb_client.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/tencentcloud_sdk_python_vdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/tencentcloud_sdk_python_vdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1177 → tencentcloud-sdk-python-vdb-3.0.1179}/tencentcloud_sdk_python_vdb.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-vdb',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1179"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Vdb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -337,6 +337,12 @@ class InstanceInfo(AbstractModel):
|
|
|
337
337
|
:param _WanAddress: 外网地址。
|
|
338
338
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
339
339
|
:type WanAddress: str
|
|
340
|
+
:param _IsolateAt: 隔离时间
|
|
341
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
342
|
+
:type IsolateAt: str
|
|
343
|
+
:param _AutoRenew: 是否自动续费。0: 不自动续费(可以支持特权不停服);1:自动续费;2:到期不续费.
|
|
344
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
345
|
+
:type AutoRenew: int
|
|
340
346
|
"""
|
|
341
347
|
self._InstanceId = None
|
|
342
348
|
self._Name = None
|
|
@@ -363,6 +369,8 @@ class InstanceInfo(AbstractModel):
|
|
|
363
369
|
self._ExpiredAt = None
|
|
364
370
|
self._IsNoExpired = None
|
|
365
371
|
self._WanAddress = None
|
|
372
|
+
self._IsolateAt = None
|
|
373
|
+
self._AutoRenew = None
|
|
366
374
|
|
|
367
375
|
@property
|
|
368
376
|
def InstanceId(self):
|
|
@@ -564,6 +572,22 @@ class InstanceInfo(AbstractModel):
|
|
|
564
572
|
def WanAddress(self, WanAddress):
|
|
565
573
|
self._WanAddress = WanAddress
|
|
566
574
|
|
|
575
|
+
@property
|
|
576
|
+
def IsolateAt(self):
|
|
577
|
+
return self._IsolateAt
|
|
578
|
+
|
|
579
|
+
@IsolateAt.setter
|
|
580
|
+
def IsolateAt(self, IsolateAt):
|
|
581
|
+
self._IsolateAt = IsolateAt
|
|
582
|
+
|
|
583
|
+
@property
|
|
584
|
+
def AutoRenew(self):
|
|
585
|
+
return self._AutoRenew
|
|
586
|
+
|
|
587
|
+
@AutoRenew.setter
|
|
588
|
+
def AutoRenew(self, AutoRenew):
|
|
589
|
+
self._AutoRenew = AutoRenew
|
|
590
|
+
|
|
567
591
|
|
|
568
592
|
def _deserialize(self, params):
|
|
569
593
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -601,6 +625,8 @@ class InstanceInfo(AbstractModel):
|
|
|
601
625
|
self._ExpiredAt = params.get("ExpiredAt")
|
|
602
626
|
self._IsNoExpired = params.get("IsNoExpired")
|
|
603
627
|
self._WanAddress = params.get("WanAddress")
|
|
628
|
+
self._IsolateAt = params.get("IsolateAt")
|
|
629
|
+
self._AutoRenew = params.get("AutoRenew")
|
|
604
630
|
memeber_set = set(params.keys())
|
|
605
631
|
for name, value in vars(self).items():
|
|
606
632
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1179
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1177
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|