tencentcloud-sdk-python-vdb 3.0.1230__tar.gz → 3.0.1232__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.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/setup.py +1 -1
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/tencentcloud/vdb/v20230616/models.py +63 -0
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/tencentcloud_sdk_python_vdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-vdb-3.0.1232/tencentcloud_sdk_python_vdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-vdb-3.0.1230/tencentcloud_sdk_python_vdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/README.rst +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/setup.cfg +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/tencentcloud/vdb/__init__.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/tencentcloud/vdb/v20230616/__init__.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/tencentcloud/vdb/v20230616/errorcodes.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/tencentcloud/vdb/v20230616/vdb_client.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/tencentcloud_sdk_python_vdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/tencentcloud_sdk_python_vdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1230 → tencentcloud-sdk-python-vdb-3.0.1232}/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.1232"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Vdb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -169,6 +169,69 @@ class DescribeInstanceNodesRequest(AbstractModel):
|
|
|
169
169
|
|
|
170
170
|
"""
|
|
171
171
|
|
|
172
|
+
def __init__(self):
|
|
173
|
+
r"""
|
|
174
|
+
:param _InstanceId: 实例ID。
|
|
175
|
+
:type InstanceId: str
|
|
176
|
+
:param _Limit: limit
|
|
177
|
+
:type Limit: int
|
|
178
|
+
:param _Offset: offset
|
|
179
|
+
:type Offset: int
|
|
180
|
+
:param _Component: component
|
|
181
|
+
:type Component: str
|
|
182
|
+
"""
|
|
183
|
+
self._InstanceId = None
|
|
184
|
+
self._Limit = None
|
|
185
|
+
self._Offset = None
|
|
186
|
+
self._Component = None
|
|
187
|
+
|
|
188
|
+
@property
|
|
189
|
+
def InstanceId(self):
|
|
190
|
+
return self._InstanceId
|
|
191
|
+
|
|
192
|
+
@InstanceId.setter
|
|
193
|
+
def InstanceId(self, InstanceId):
|
|
194
|
+
self._InstanceId = InstanceId
|
|
195
|
+
|
|
196
|
+
@property
|
|
197
|
+
def Limit(self):
|
|
198
|
+
return self._Limit
|
|
199
|
+
|
|
200
|
+
@Limit.setter
|
|
201
|
+
def Limit(self, Limit):
|
|
202
|
+
self._Limit = Limit
|
|
203
|
+
|
|
204
|
+
@property
|
|
205
|
+
def Offset(self):
|
|
206
|
+
return self._Offset
|
|
207
|
+
|
|
208
|
+
@Offset.setter
|
|
209
|
+
def Offset(self, Offset):
|
|
210
|
+
self._Offset = Offset
|
|
211
|
+
|
|
212
|
+
@property
|
|
213
|
+
def Component(self):
|
|
214
|
+
return self._Component
|
|
215
|
+
|
|
216
|
+
@Component.setter
|
|
217
|
+
def Component(self, Component):
|
|
218
|
+
self._Component = Component
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
def _deserialize(self, params):
|
|
222
|
+
self._InstanceId = params.get("InstanceId")
|
|
223
|
+
self._Limit = params.get("Limit")
|
|
224
|
+
self._Offset = params.get("Offset")
|
|
225
|
+
self._Component = params.get("Component")
|
|
226
|
+
memeber_set = set(params.keys())
|
|
227
|
+
for name, value in vars(self).items():
|
|
228
|
+
property_name = name[1:]
|
|
229
|
+
if property_name in memeber_set:
|
|
230
|
+
memeber_set.remove(property_name)
|
|
231
|
+
if len(memeber_set) > 0:
|
|
232
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
233
|
+
|
|
234
|
+
|
|
172
235
|
|
|
173
236
|
class DescribeInstanceNodesResponse(AbstractModel):
|
|
174
237
|
"""DescribeInstanceNodes返回参数结构体
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1232
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1230
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|