tencentcloud-sdk-python-vdb 3.0.1360__tar.gz → 3.0.1362__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.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/setup.py +1 -1
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/tencentcloud/vdb/v20230616/models.py +15 -0
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/tencentcloud_sdk_python_vdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-vdb-3.0.1362/tencentcloud_sdk_python_vdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-vdb-3.0.1360/tencentcloud_sdk_python_vdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/README.rst +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/setup.cfg +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/tencentcloud/vdb/__init__.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/tencentcloud/vdb/v20230616/__init__.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/tencentcloud/vdb/v20230616/errorcodes.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/tencentcloud/vdb/v20230616/vdb_client.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/tencentcloud_sdk_python_vdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/tencentcloud_sdk_python_vdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1360 → tencentcloud-sdk-python-vdb-3.0.1362}/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.1362"],
|
12
12
|
version=tencentcloud.__version__,
|
13
13
|
description='Tencent Cloud Vdb SDK for Python',
|
14
14
|
long_description=open('README.rst').read(),
|
@@ -658,11 +658,25 @@ class CreateInstanceResponse(AbstractModel):
|
|
658
658
|
|
659
659
|
def __init__(self):
|
660
660
|
r"""
|
661
|
+
:param _InstanceIds: 实例 ID。
|
662
|
+
:type InstanceIds: list of str
|
661
663
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
662
664
|
:type RequestId: str
|
663
665
|
"""
|
666
|
+
self._InstanceIds = None
|
664
667
|
self._RequestId = None
|
665
668
|
|
669
|
+
@property
|
670
|
+
def InstanceIds(self):
|
671
|
+
"""实例 ID。
|
672
|
+
:rtype: list of str
|
673
|
+
"""
|
674
|
+
return self._InstanceIds
|
675
|
+
|
676
|
+
@InstanceIds.setter
|
677
|
+
def InstanceIds(self, InstanceIds):
|
678
|
+
self._InstanceIds = InstanceIds
|
679
|
+
|
666
680
|
@property
|
667
681
|
def RequestId(self):
|
668
682
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -676,6 +690,7 @@ class CreateInstanceResponse(AbstractModel):
|
|
676
690
|
|
677
691
|
|
678
692
|
def _deserialize(self, params):
|
693
|
+
self._InstanceIds = params.get("InstanceIds")
|
679
694
|
self._RequestId = params.get("RequestId")
|
680
695
|
|
681
696
|
|
@@ -0,0 +1 @@
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1362
|
@@ -1 +0,0 @@
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1360
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|