tencentcloud-sdk-python-vdb 3.0.1274__py2.py3-none-any.whl → 3.0.1293__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 +57 -0
- {tencentcloud_sdk_python_vdb-3.0.1274.dist-info → tencentcloud_sdk_python_vdb-3.0.1293.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_vdb-3.0.1293.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.1293.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_vdb-3.0.1274.dist-info → tencentcloud_sdk_python_vdb-3.0.1293.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")
|
@@ -1102,6 +1117,8 @@ class InstanceInfo(AbstractModel):
|
|
1102
1117
|
|
1103
1118
|
@property
|
1104
1119
|
def HealthScore(self):
|
1120
|
+
warnings.warn("parameter `HealthScore` is deprecated", DeprecationWarning)
|
1121
|
+
|
1105
1122
|
"""健康得分。
|
1106
1123
|
注意:此字段可能返回 null,表示取不到有效值。
|
1107
1124
|
:rtype: float
|
@@ -1110,10 +1127,14 @@ class InstanceInfo(AbstractModel):
|
|
1110
1127
|
|
1111
1128
|
@HealthScore.setter
|
1112
1129
|
def HealthScore(self, HealthScore):
|
1130
|
+
warnings.warn("parameter `HealthScore` is deprecated", DeprecationWarning)
|
1131
|
+
|
1113
1132
|
self._HealthScore = HealthScore
|
1114
1133
|
|
1115
1134
|
@property
|
1116
1135
|
def Warning(self):
|
1136
|
+
warnings.warn("parameter `Warning` is deprecated", DeprecationWarning)
|
1137
|
+
|
1117
1138
|
"""异常告警。
|
1118
1139
|
注意:此字段可能返回 null,表示取不到有效值。
|
1119
1140
|
:rtype: int
|
@@ -1122,10 +1143,14 @@ class InstanceInfo(AbstractModel):
|
|
1122
1143
|
|
1123
1144
|
@Warning.setter
|
1124
1145
|
def Warning(self, Warning):
|
1146
|
+
warnings.warn("parameter `Warning` is deprecated", DeprecationWarning)
|
1147
|
+
|
1125
1148
|
self._Warning = Warning
|
1126
1149
|
|
1127
1150
|
@property
|
1128
1151
|
def Project(self):
|
1152
|
+
warnings.warn("parameter `Project` is deprecated", DeprecationWarning)
|
1153
|
+
|
1129
1154
|
"""所属项目。
|
1130
1155
|
注意:此字段可能返回 null,表示取不到有效值。
|
1131
1156
|
:rtype: str
|
@@ -1134,6 +1159,8 @@ class InstanceInfo(AbstractModel):
|
|
1134
1159
|
|
1135
1160
|
@Project.setter
|
1136
1161
|
def Project(self, Project):
|
1162
|
+
warnings.warn("parameter `Project` is deprecated", DeprecationWarning)
|
1163
|
+
|
1137
1164
|
self._Project = Project
|
1138
1165
|
|
1139
1166
|
@property
|
@@ -1440,11 +1467,17 @@ class Network(AbstractModel):
|
|
1440
1467
|
:param _Port: 内网访问Port。
|
1441
1468
|
注意:此字段可能返回 null,表示取不到有效值。
|
1442
1469
|
:type Port: int
|
1470
|
+
:param _PreserveDuration: 旧 ip 保留时长,单位天
|
1471
|
+
:type PreserveDuration: int
|
1472
|
+
:param _ExpireTime: 旧 ip 到期时间
|
1473
|
+
:type ExpireTime: str
|
1443
1474
|
"""
|
1444
1475
|
self._VpcId = None
|
1445
1476
|
self._SubnetId = None
|
1446
1477
|
self._Vip = None
|
1447
1478
|
self._Port = None
|
1479
|
+
self._PreserveDuration = None
|
1480
|
+
self._ExpireTime = None
|
1448
1481
|
|
1449
1482
|
@property
|
1450
1483
|
def VpcId(self):
|
@@ -1494,12 +1527,36 @@ class Network(AbstractModel):
|
|
1494
1527
|
def Port(self, Port):
|
1495
1528
|
self._Port = Port
|
1496
1529
|
|
1530
|
+
@property
|
1531
|
+
def PreserveDuration(self):
|
1532
|
+
"""旧 ip 保留时长,单位天
|
1533
|
+
:rtype: int
|
1534
|
+
"""
|
1535
|
+
return self._PreserveDuration
|
1536
|
+
|
1537
|
+
@PreserveDuration.setter
|
1538
|
+
def PreserveDuration(self, PreserveDuration):
|
1539
|
+
self._PreserveDuration = PreserveDuration
|
1540
|
+
|
1541
|
+
@property
|
1542
|
+
def ExpireTime(self):
|
1543
|
+
"""旧 ip 到期时间
|
1544
|
+
:rtype: str
|
1545
|
+
"""
|
1546
|
+
return self._ExpireTime
|
1547
|
+
|
1548
|
+
@ExpireTime.setter
|
1549
|
+
def ExpireTime(self, ExpireTime):
|
1550
|
+
self._ExpireTime = ExpireTime
|
1551
|
+
|
1497
1552
|
|
1498
1553
|
def _deserialize(self, params):
|
1499
1554
|
self._VpcId = params.get("VpcId")
|
1500
1555
|
self._SubnetId = params.get("SubnetId")
|
1501
1556
|
self._Vip = params.get("Vip")
|
1502
1557
|
self._Port = params.get("Port")
|
1558
|
+
self._PreserveDuration = params.get("PreserveDuration")
|
1559
|
+
self._ExpireTime = params.get("ExpireTime")
|
1503
1560
|
memeber_set = set(params.keys())
|
1504
1561
|
for name, value in vars(self).items():
|
1505
1562
|
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.1293
|
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.1293)
|
19
19
|
|
20
20
|
============================
|
21
21
|
Tencent Cloud SDK for Python
|
@@ -0,0 +1,10 @@
|
|
1
|
+
tencentcloud/__init__.py,sha256=Lcaq7MOeNWTrFmXZbCUGnZI--A1kbjulV6KSUW8wvi4,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=pTEWVTiMacCeof2qawT4PgDTRSfN7ai2LkSg5xVlZVY,56727
|
6
|
+
tencentcloud/vdb/v20230616/vdb_client.py,sha256=VQuqL3skHxrsbMy7wt4_Ja3EaJcahb29zafYz-F9qnw,6684
|
7
|
+
tencentcloud_sdk_python_vdb-3.0.1293.dist-info/METADATA,sha256=pSWpjIOdMkABjEAi8LNRAmt4k_jlkwo6xfF9IO6egUk,1496
|
8
|
+
tencentcloud_sdk_python_vdb-3.0.1293.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
+
tencentcloud_sdk_python_vdb-3.0.1293.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
+
tencentcloud_sdk_python_vdb-3.0.1293.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
|