tencentcloud-sdk-python-vdb 3.0.1274__py2.py3-none-any.whl → 3.0.1276__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/vdb/v20230616/models.py +45 -0
- {tencentcloud_sdk_python_vdb-3.0.1274.dist-info → tencentcloud_sdk_python_vdb-3.0.1276.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_vdb-3.0.1276.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_vdb-3.0.1274.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_vdb-3.0.1274.dist-info → tencentcloud_sdk_python_vdb-3.0.1276.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_vdb-3.0.1274.dist-info → tencentcloud_sdk_python_vdb-3.0.1276.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -348,6 +348,8 @@ class DescribeInstancesRequest(AbstractModel):
|
|
348
348
|
:type EngineNames: list of str
|
349
349
|
:param _EngineVersions: 按照版本筛选实例。
|
350
350
|
:type EngineVersions: list of str
|
351
|
+
:param _ApiVersions: 按照api版本筛选实例
|
352
|
+
:type ApiVersions: list of str
|
351
353
|
:param _CreateAt: 按照创建时间筛选实例。
|
352
354
|
:type CreateAt: str
|
353
355
|
:param _Zones: 按照可用区筛选实例。
|
@@ -369,6 +371,7 @@ class DescribeInstancesRequest(AbstractModel):
|
|
369
371
|
self._Status = None
|
370
372
|
self._EngineNames = None
|
371
373
|
self._EngineVersions = None
|
374
|
+
self._ApiVersions = None
|
372
375
|
self._CreateAt = None
|
373
376
|
self._Zones = None
|
374
377
|
self._OrderBy = None
|
@@ -443,6 +446,17 @@ class DescribeInstancesRequest(AbstractModel):
|
|
443
446
|
def EngineVersions(self, EngineVersions):
|
444
447
|
self._EngineVersions = EngineVersions
|
445
448
|
|
449
|
+
@property
|
450
|
+
def ApiVersions(self):
|
451
|
+
"""按照api版本筛选实例
|
452
|
+
:rtype: list of str
|
453
|
+
"""
|
454
|
+
return self._ApiVersions
|
455
|
+
|
456
|
+
@ApiVersions.setter
|
457
|
+
def ApiVersions(self, ApiVersions):
|
458
|
+
self._ApiVersions = ApiVersions
|
459
|
+
|
446
460
|
@property
|
447
461
|
def CreateAt(self):
|
448
462
|
"""按照创建时间筛选实例。
|
@@ -528,6 +542,7 @@ class DescribeInstancesRequest(AbstractModel):
|
|
528
542
|
self._Status = params.get("Status")
|
529
543
|
self._EngineNames = params.get("EngineNames")
|
530
544
|
self._EngineVersions = params.get("EngineVersions")
|
545
|
+
self._ApiVersions = params.get("ApiVersions")
|
531
546
|
self._CreateAt = params.get("CreateAt")
|
532
547
|
self._Zones = params.get("Zones")
|
533
548
|
self._OrderBy = params.get("OrderBy")
|
@@ -1440,11 +1455,17 @@ class Network(AbstractModel):
|
|
1440
1455
|
:param _Port: 内网访问Port。
|
1441
1456
|
注意:此字段可能返回 null,表示取不到有效值。
|
1442
1457
|
:type Port: int
|
1458
|
+
:param _PreserveDuration: 旧 ip 保留时长,单位天
|
1459
|
+
:type PreserveDuration: int
|
1460
|
+
:param _ExpireTime: 旧 ip 到期时间
|
1461
|
+
:type ExpireTime: str
|
1443
1462
|
"""
|
1444
1463
|
self._VpcId = None
|
1445
1464
|
self._SubnetId = None
|
1446
1465
|
self._Vip = None
|
1447
1466
|
self._Port = None
|
1467
|
+
self._PreserveDuration = None
|
1468
|
+
self._ExpireTime = None
|
1448
1469
|
|
1449
1470
|
@property
|
1450
1471
|
def VpcId(self):
|
@@ -1494,12 +1515,36 @@ class Network(AbstractModel):
|
|
1494
1515
|
def Port(self, Port):
|
1495
1516
|
self._Port = Port
|
1496
1517
|
|
1518
|
+
@property
|
1519
|
+
def PreserveDuration(self):
|
1520
|
+
"""旧 ip 保留时长,单位天
|
1521
|
+
:rtype: int
|
1522
|
+
"""
|
1523
|
+
return self._PreserveDuration
|
1524
|
+
|
1525
|
+
@PreserveDuration.setter
|
1526
|
+
def PreserveDuration(self, PreserveDuration):
|
1527
|
+
self._PreserveDuration = PreserveDuration
|
1528
|
+
|
1529
|
+
@property
|
1530
|
+
def ExpireTime(self):
|
1531
|
+
"""旧 ip 到期时间
|
1532
|
+
:rtype: str
|
1533
|
+
"""
|
1534
|
+
return self._ExpireTime
|
1535
|
+
|
1536
|
+
@ExpireTime.setter
|
1537
|
+
def ExpireTime(self, ExpireTime):
|
1538
|
+
self._ExpireTime = ExpireTime
|
1539
|
+
|
1497
1540
|
|
1498
1541
|
def _deserialize(self, params):
|
1499
1542
|
self._VpcId = params.get("VpcId")
|
1500
1543
|
self._SubnetId = params.get("SubnetId")
|
1501
1544
|
self._Vip = params.get("Vip")
|
1502
1545
|
self._Port = params.get("Port")
|
1546
|
+
self._PreserveDuration = params.get("PreserveDuration")
|
1547
|
+
self._ExpireTime = params.get("ExpireTime")
|
1503
1548
|
memeber_set = set(params.keys())
|
1504
1549
|
for name, value in vars(self).items():
|
1505
1550
|
property_name = name[1:]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tencentcloud-sdk-python-vdb
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1276
|
4
4
|
Summary: Tencent Cloud Vdb SDK for Python
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
6
6
|
Author: Tencent Cloud
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common (==3.0.
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.1276)
|
19
19
|
|
20
20
|
============================
|
21
21
|
Tencent Cloud SDK for Python
|
@@ -0,0 +1,10 @@
|
|
1
|
+
tencentcloud/__init__.py,sha256=Sh7GUwhVkJa_ZAw-mlCTZi62BYdpS2syhD1IdGbaoIg,631
|
2
|
+
tencentcloud/vdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
+
tencentcloud/vdb/v20230616/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
+
tencentcloud/vdb/v20230616/errorcodes.py,sha256=DQMEGBUeUvFFlJlVYTztkFz3gbJWOgCA7qpy-dBUEPM,1214
|
5
|
+
tencentcloud/vdb/v20230616/models.py,sha256=5R4cqt1n6jEYKcxHrnIYL4MK3lW0dZqe0-1hsTSMzTY,56233
|
6
|
+
tencentcloud/vdb/v20230616/vdb_client.py,sha256=VQuqL3skHxrsbMy7wt4_Ja3EaJcahb29zafYz-F9qnw,6684
|
7
|
+
tencentcloud_sdk_python_vdb-3.0.1276.dist-info/METADATA,sha256=jfdHjm9Z1GRS522yzRkNfTZCkJw3tWEUNkszZHguXwg,1496
|
8
|
+
tencentcloud_sdk_python_vdb-3.0.1276.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
+
tencentcloud_sdk_python_vdb-3.0.1276.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
+
tencentcloud_sdk_python_vdb-3.0.1276.dist-info/RECORD,,
|
@@ -1,10 +0,0 @@
|
|
1
|
-
tencentcloud/__init__.py,sha256=VCDjAsN_03z8otdJoEP5GRpyf2Rsh6QgM6KyEZO8pTE,631
|
2
|
-
tencentcloud/vdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
-
tencentcloud/vdb/v20230616/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
tencentcloud/vdb/v20230616/errorcodes.py,sha256=DQMEGBUeUvFFlJlVYTztkFz3gbJWOgCA7qpy-dBUEPM,1214
|
5
|
-
tencentcloud/vdb/v20230616/models.py,sha256=Tf2PkIWuRstr4-ZIbTtHnunkR3i882M-TsvJwkw0xGQ,54899
|
6
|
-
tencentcloud/vdb/v20230616/vdb_client.py,sha256=VQuqL3skHxrsbMy7wt4_Ja3EaJcahb29zafYz-F9qnw,6684
|
7
|
-
tencentcloud_sdk_python_vdb-3.0.1274.dist-info/METADATA,sha256=y8h5AR2sYnf9GX8TrOZELcqe_4LFjZdteVKY1T7aCAg,1496
|
8
|
-
tencentcloud_sdk_python_vdb-3.0.1274.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
-
tencentcloud_sdk_python_vdb-3.0.1274.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
-
tencentcloud_sdk_python_vdb-3.0.1274.dist-info/RECORD,,
|
File without changes
|
File without changes
|