tencentcloud-sdk-python-vdb 3.0.1342__py2.py3-none-any.whl → 3.0.1343__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 CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1342'
17
+ __version__ = '3.0.1343'
@@ -362,6 +362,8 @@ class DescribeInstancesRequest(AbstractModel):
362
362
  :type Limit: int
363
363
  :param _ResourceTags: 按照标签筛选实例
364
364
  :type ResourceTags: list of Tag
365
+ :param _TaskStatus: 任务状态:1-待执行任务;2-密钥更新中;3-网络变更中;4-参数变更中;5-embedding变更中;6-ai套件变更中;7-滚动升级中;8-纵向扩容中;9-纵向缩容中;10-横向扩容中;11-横向缩容中
366
+ :type TaskStatus: list of int
365
367
  """
366
368
  self._InstanceIds = None
367
369
  self._InstanceNames = None
@@ -377,6 +379,7 @@ class DescribeInstancesRequest(AbstractModel):
377
379
  self._Offset = None
378
380
  self._Limit = None
379
381
  self._ResourceTags = None
382
+ self._TaskStatus = None
380
383
 
381
384
  @property
382
385
  def InstanceIds(self):
@@ -540,6 +543,17 @@ class DescribeInstancesRequest(AbstractModel):
540
543
  def ResourceTags(self, ResourceTags):
541
544
  self._ResourceTags = ResourceTags
542
545
 
546
+ @property
547
+ def TaskStatus(self):
548
+ """任务状态:1-待执行任务;2-密钥更新中;3-网络变更中;4-参数变更中;5-embedding变更中;6-ai套件变更中;7-滚动升级中;8-纵向扩容中;9-纵向缩容中;10-横向扩容中;11-横向缩容中
549
+ :rtype: list of int
550
+ """
551
+ return self._TaskStatus
552
+
553
+ @TaskStatus.setter
554
+ def TaskStatus(self, TaskStatus):
555
+ self._TaskStatus = TaskStatus
556
+
543
557
 
544
558
  def _deserialize(self, params):
545
559
  self._InstanceIds = params.get("InstanceIds")
@@ -561,6 +575,7 @@ class DescribeInstancesRequest(AbstractModel):
561
575
  obj = Tag()
562
576
  obj._deserialize(item)
563
577
  self._ResourceTags.append(obj)
578
+ self._TaskStatus = params.get("TaskStatus")
564
579
  memeber_set = set(params.keys())
565
580
  for name, value in vars(self).items():
566
581
  property_name = name[1:]
@@ -920,6 +935,8 @@ class InstanceInfo(AbstractModel):
920
935
  :type IsolateAt: str
921
936
  :param _AutoRenew: 是否自动续费。0: 不自动续费(可以支持特权不停服);1:自动续费;2:到期不续费.
922
937
  :type AutoRenew: int
938
+ :param _TaskStatus: 任务状态:0-无任务;1-待执行任务;2-密钥更新中;3-网络变更中;4-参数变更中;5-embedding变更中;6-ai套件变更中;7-滚动升级中;8-纵向扩容中;9-纵向缩容中;10-横向扩容中;11-横向缩容中
939
+ :type TaskStatus: int
923
940
  """
924
941
  self._InstanceId = None
925
942
  self._Name = None
@@ -949,6 +966,7 @@ class InstanceInfo(AbstractModel):
949
966
  self._WanAddress = None
950
967
  self._IsolateAt = None
951
968
  self._AutoRenew = None
969
+ self._TaskStatus = None
952
970
 
953
971
  @property
954
972
  def InstanceId(self):
@@ -1273,6 +1291,17 @@ class InstanceInfo(AbstractModel):
1273
1291
  def AutoRenew(self, AutoRenew):
1274
1292
  self._AutoRenew = AutoRenew
1275
1293
 
1294
+ @property
1295
+ def TaskStatus(self):
1296
+ """任务状态:0-无任务;1-待执行任务;2-密钥更新中;3-网络变更中;4-参数变更中;5-embedding变更中;6-ai套件变更中;7-滚动升级中;8-纵向扩容中;9-纵向缩容中;10-横向扩容中;11-横向缩容中
1297
+ :rtype: int
1298
+ """
1299
+ return self._TaskStatus
1300
+
1301
+ @TaskStatus.setter
1302
+ def TaskStatus(self, TaskStatus):
1303
+ self._TaskStatus = TaskStatus
1304
+
1276
1305
 
1277
1306
  def _deserialize(self, params):
1278
1307
  self._InstanceId = params.get("InstanceId")
@@ -1313,6 +1342,7 @@ class InstanceInfo(AbstractModel):
1313
1342
  self._WanAddress = params.get("WanAddress")
1314
1343
  self._IsolateAt = params.get("IsolateAt")
1315
1344
  self._AutoRenew = params.get("AutoRenew")
1345
+ self._TaskStatus = params.get("TaskStatus")
1316
1346
  memeber_set = set(params.keys())
1317
1347
  for name, value in vars(self).items():
1318
1348
  property_name = name[1:]
@@ -1522,8 +1552,11 @@ class NodeInfo(AbstractModel):
1522
1552
  r"""
1523
1553
  :param _Name: Pod名称。
1524
1554
  :type Name: str
1555
+ :param _Status: pod状态
1556
+ :type Status: str
1525
1557
  """
1526
1558
  self._Name = None
1559
+ self._Status = None
1527
1560
 
1528
1561
  @property
1529
1562
  def Name(self):
@@ -1536,9 +1569,21 @@ class NodeInfo(AbstractModel):
1536
1569
  def Name(self, Name):
1537
1570
  self._Name = Name
1538
1571
 
1572
+ @property
1573
+ def Status(self):
1574
+ """pod状态
1575
+ :rtype: str
1576
+ """
1577
+ return self._Status
1578
+
1579
+ @Status.setter
1580
+ def Status(self, Status):
1581
+ self._Status = Status
1582
+
1539
1583
 
1540
1584
  def _deserialize(self, params):
1541
1585
  self._Name = params.get("Name")
1586
+ self._Status = params.get("Status")
1542
1587
  memeber_set = set(params.keys())
1543
1588
  for name, value in vars(self).items():
1544
1589
  property_name = name[1:]
@@ -73,7 +73,7 @@ class VdbClient(AbstractClient):
73
73
 
74
74
 
75
75
  def DescribeInstanceNodes(self, request):
76
- """实例节点列表
76
+ """查询实例pod列表
77
77
 
78
78
  :param request: Request instance for DescribeInstanceNodes.
79
79
  :type request: :class:`tencentcloud.vdb.v20230616.models.DescribeInstanceNodesRequest`
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-vdb
3
- Version: 3.0.1342
3
+ Version: 3.0.1343
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.1342)
18
+ Requires-Dist: tencentcloud-sdk-python-common (==3.0.1343)
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1,10 @@
1
+ tencentcloud/__init__.py,sha256=s7LwkG66ZXYcnx4xZ2nHGo5prbuJ0tmXrBTxONCFyQw,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=eYbq_77n8VwHlfNofbCidjHQehCSjj4GlTKuVLlP90c,54608
6
+ tencentcloud/vdb/v20230616/vdb_client.py,sha256=WSVTS8yKxQfVs8YmYCtBP-6routdwVEr7Gci3St6kbA,6687
7
+ tencentcloud_sdk_python_vdb-3.0.1343.dist-info/METADATA,sha256=5r0egWBqOZ3qH7A43dXPH4fwd_3OOaQewxGaWEOwXQ0,1496
8
+ tencentcloud_sdk_python_vdb-3.0.1343.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
+ tencentcloud_sdk_python_vdb-3.0.1343.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
+ tencentcloud_sdk_python_vdb-3.0.1343.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- tencentcloud/__init__.py,sha256=Zt_XUdDzBz09eTZOcGulHSwmBzQ8Ik3sEnkVhYVLtaM,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=lz6lhy-8c6oFCHIk1YjuOxGJUhjfUg0_sdfKGxRl9yg,52558
6
- tencentcloud/vdb/v20230616/vdb_client.py,sha256=VQuqL3skHxrsbMy7wt4_Ja3EaJcahb29zafYz-F9qnw,6684
7
- tencentcloud_sdk_python_vdb-3.0.1342.dist-info/METADATA,sha256=WeYrmHGcUdDiCFyT0EnXIxBjAUWYq2a-nQYV0nGSz4w,1496
8
- tencentcloud_sdk_python_vdb-3.0.1342.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
- tencentcloud_sdk_python_vdb-3.0.1342.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
- tencentcloud_sdk_python_vdb-3.0.1342.dist-info/RECORD,,