tencentcloud-sdk-python-vdb 3.0.1416__tar.gz → 3.0.1458__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.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/setup.py +1 -1
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/tencentcloud/vdb/v20230616/models.py +17 -0
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/tencentcloud_sdk_python_vdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-vdb-3.0.1458/tencentcloud_sdk_python_vdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-vdb-3.0.1416/tencentcloud_sdk_python_vdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/README.rst +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/setup.cfg +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/tencentcloud/vdb/__init__.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/tencentcloud/vdb/v20230616/__init__.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/tencentcloud/vdb/v20230616/errorcodes.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/tencentcloud/vdb/v20230616/vdb_client.py +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/tencentcloud_sdk_python_vdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/tencentcloud_sdk_python_vdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-vdb-3.0.1416 → tencentcloud-sdk-python-vdb-3.0.1458}/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
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1458,<4.0.0"],
|
12
12
|
version=tencentcloud.__version__,
|
13
13
|
description='Tencent Cloud Vdb SDK for Python',
|
14
14
|
long_description=open('README.rst').read(),
|
@@ -130,6 +130,8 @@ class CreateInstanceRequest(AbstractModel):
|
|
130
130
|
:type ResourceTags: list of Tag
|
131
131
|
:param _Project: 指定实例所属项目 ID。
|
132
132
|
:type Project: str
|
133
|
+
:param _ProductType: 产品版本,0-标准版,1-容量增强版
|
134
|
+
:type ProductType: int
|
133
135
|
:param _InstanceType: 实例类型。
|
134
136
|
- base:免费测试版。
|
135
137
|
- single:单机版。
|
@@ -191,6 +193,7 @@ VPC或TCS
|
|
191
193
|
self._Params = None
|
192
194
|
self._ResourceTags = None
|
193
195
|
self._Project = None
|
196
|
+
self._ProductType = None
|
194
197
|
self._InstanceType = None
|
195
198
|
self._Mode = None
|
196
199
|
self._GoodsNum = None
|
@@ -331,6 +334,17 @@ VPC或TCS
|
|
331
334
|
|
332
335
|
self._Project = Project
|
333
336
|
|
337
|
+
@property
|
338
|
+
def ProductType(self):
|
339
|
+
"""产品版本,0-标准版,1-容量增强版
|
340
|
+
:rtype: int
|
341
|
+
"""
|
342
|
+
return self._ProductType
|
343
|
+
|
344
|
+
@ProductType.setter
|
345
|
+
def ProductType(self, ProductType):
|
346
|
+
self._ProductType = ProductType
|
347
|
+
|
334
348
|
@property
|
335
349
|
def InstanceType(self):
|
336
350
|
"""实例类型。
|
@@ -617,6 +631,7 @@ VPC或TCS
|
|
617
631
|
obj._deserialize(item)
|
618
632
|
self._ResourceTags.append(obj)
|
619
633
|
self._Project = params.get("Project")
|
634
|
+
self._ProductType = params.get("ProductType")
|
620
635
|
self._InstanceType = params.get("InstanceType")
|
621
636
|
self._Mode = params.get("Mode")
|
622
637
|
self._GoodsNum = params.get("GoodsNum")
|
@@ -2426,6 +2441,7 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
2426
2441
|
def __init__(self):
|
2427
2442
|
r"""
|
2428
2443
|
:param _SecurityGroupIds: 要修改的安全组ID列表,一个或者多个安全组 ID 组成的数组。
|
2444
|
+
注意:该入参会全量替换存量已有集合,非增量更新。修改需传入预期的全量集合。
|
2429
2445
|
:type SecurityGroupIds: list of str
|
2430
2446
|
:param _InstanceIds: 实例ID,格式如:vdb-c9s3****。
|
2431
2447
|
:type InstanceIds: list of str
|
@@ -2436,6 +2452,7 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
2436
2452
|
@property
|
2437
2453
|
def SecurityGroupIds(self):
|
2438
2454
|
"""要修改的安全组ID列表,一个或者多个安全组 ID 组成的数组。
|
2455
|
+
注意:该入参会全量替换存量已有集合,非增量更新。修改需传入预期的全量集合。
|
2439
2456
|
:rtype: list of str
|
2440
2457
|
"""
|
2441
2458
|
return self._SecurityGroupIds
|
@@ -0,0 +1 @@
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1458
|
@@ -1 +0,0 @@
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1416
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|