tencentcloud-sdk-python-vdb 3.0.1394__tar.gz → 3.0.1413__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/setup.py +1 -1
  3. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/tencentcloud/vdb/v20230616/models.py +75 -0
  5. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/tencentcloud_sdk_python_vdb.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-vdb-3.0.1413/tencentcloud_sdk_python_vdb.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-vdb-3.0.1394/tencentcloud_sdk_python_vdb.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/README.rst +0 -0
  9. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/tencentcloud/vdb/__init__.py +0 -0
  11. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/tencentcloud/vdb/v20230616/__init__.py +0 -0
  12. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/tencentcloud/vdb/v20230616/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/tencentcloud/vdb/v20230616/vdb_client.py +0 -0
  14. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/tencentcloud_sdk_python_vdb.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/tencentcloud_sdk_python_vdb.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-vdb-3.0.1394 → tencentcloud-sdk-python-vdb-3.0.1413}/tencentcloud_sdk_python_vdb.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-vdb
3
- Version: 3.0.1394
3
+ Version: 3.0.1413
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
@@ -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.1394"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1413"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Vdb SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1394'
17
+ __version__ = '3.0.1413'
@@ -1226,6 +1226,8 @@ class DescribeInstancesRequest(AbstractModel):
1226
1226
  :type ResourceTags: list of Tag
1227
1227
  :param _TaskStatus: 任务状态:1-待执行任务;2-密钥更新中;3-网络变更中;4-参数变更中;5-embedding变更中;6-ai套件变更中;7-滚动升级中;8-纵向扩容中;9-纵向缩容中;10-横向扩容中;11-横向缩容中
1228
1228
  :type TaskStatus: list of int
1229
+ :param _Networks: 根据实例vip搜索实例
1230
+ :type Networks: list of str
1229
1231
  """
1230
1232
  self._InstanceIds = None
1231
1233
  self._InstanceNames = None
@@ -1242,6 +1244,7 @@ class DescribeInstancesRequest(AbstractModel):
1242
1244
  self._Limit = None
1243
1245
  self._ResourceTags = None
1244
1246
  self._TaskStatus = None
1247
+ self._Networks = None
1245
1248
 
1246
1249
  @property
1247
1250
  def InstanceIds(self):
@@ -1416,6 +1419,17 @@ class DescribeInstancesRequest(AbstractModel):
1416
1419
  def TaskStatus(self, TaskStatus):
1417
1420
  self._TaskStatus = TaskStatus
1418
1421
 
1422
+ @property
1423
+ def Networks(self):
1424
+ """根据实例vip搜索实例
1425
+ :rtype: list of str
1426
+ """
1427
+ return self._Networks
1428
+
1429
+ @Networks.setter
1430
+ def Networks(self, Networks):
1431
+ self._Networks = Networks
1432
+
1419
1433
 
1420
1434
  def _deserialize(self, params):
1421
1435
  self._InstanceIds = params.get("InstanceIds")
@@ -1438,6 +1452,7 @@ class DescribeInstancesRequest(AbstractModel):
1438
1452
  obj._deserialize(item)
1439
1453
  self._ResourceTags.append(obj)
1440
1454
  self._TaskStatus = params.get("TaskStatus")
1455
+ self._Networks = params.get("Networks")
1441
1456
  memeber_set = set(params.keys())
1442
1457
  for name, value in vars(self).items():
1443
1458
  property_name = name[1:]
@@ -1855,6 +1870,12 @@ class InstanceInfo(AbstractModel):
1855
1870
  :type ExpiredAt: str
1856
1871
  :param _IsNoExpired: 是否不过期(永久)。
1857
1872
  :type IsNoExpired: bool
1873
+ :param _ProductType: 产品版本,0-标准版,1-容量增强版
1874
+ :type ProductType: int
1875
+ :param _InstanceType: 实例类型
1876
+ :type InstanceType: str
1877
+ :param _NodeType: 节点类型
1878
+ :type NodeType: str
1858
1879
  :param _WanAddress: 外网地址。
1859
1880
  :type WanAddress: str
1860
1881
  :param _IsolateAt: 隔离时间
@@ -1863,6 +1884,8 @@ class InstanceInfo(AbstractModel):
1863
1884
  :type AutoRenew: int
1864
1885
  :param _TaskStatus: 任务状态:0-无任务;1-待执行任务;2-密钥更新中;3-网络变更中;4-参数变更中;5-embedding变更中;6-ai套件变更中;7-滚动升级中;8-纵向扩容中;9-纵向缩容中;10-横向扩容中;11-横向缩容中
1865
1886
  :type TaskStatus: int
1887
+ :param _SecurityGroupIds: 绑定的安全组id
1888
+ :type SecurityGroupIds: list of str
1866
1889
  """
1867
1890
  self._InstanceId = None
1868
1891
  self._Name = None
@@ -1889,10 +1912,14 @@ class InstanceInfo(AbstractModel):
1889
1912
  self._Extend = None
1890
1913
  self._ExpiredAt = None
1891
1914
  self._IsNoExpired = None
1915
+ self._ProductType = None
1916
+ self._InstanceType = None
1917
+ self._NodeType = None
1892
1918
  self._WanAddress = None
1893
1919
  self._IsolateAt = None
1894
1920
  self._AutoRenew = None
1895
1921
  self._TaskStatus = None
1922
+ self._SecurityGroupIds = None
1896
1923
 
1897
1924
  @property
1898
1925
  def InstanceId(self):
@@ -2184,6 +2211,39 @@ class InstanceInfo(AbstractModel):
2184
2211
  def IsNoExpired(self, IsNoExpired):
2185
2212
  self._IsNoExpired = IsNoExpired
2186
2213
 
2214
+ @property
2215
+ def ProductType(self):
2216
+ """产品版本,0-标准版,1-容量增强版
2217
+ :rtype: int
2218
+ """
2219
+ return self._ProductType
2220
+
2221
+ @ProductType.setter
2222
+ def ProductType(self, ProductType):
2223
+ self._ProductType = ProductType
2224
+
2225
+ @property
2226
+ def InstanceType(self):
2227
+ """实例类型
2228
+ :rtype: str
2229
+ """
2230
+ return self._InstanceType
2231
+
2232
+ @InstanceType.setter
2233
+ def InstanceType(self, InstanceType):
2234
+ self._InstanceType = InstanceType
2235
+
2236
+ @property
2237
+ def NodeType(self):
2238
+ """节点类型
2239
+ :rtype: str
2240
+ """
2241
+ return self._NodeType
2242
+
2243
+ @NodeType.setter
2244
+ def NodeType(self, NodeType):
2245
+ self._NodeType = NodeType
2246
+
2187
2247
  @property
2188
2248
  def WanAddress(self):
2189
2249
  """外网地址。
@@ -2228,6 +2288,17 @@ class InstanceInfo(AbstractModel):
2228
2288
  def TaskStatus(self, TaskStatus):
2229
2289
  self._TaskStatus = TaskStatus
2230
2290
 
2291
+ @property
2292
+ def SecurityGroupIds(self):
2293
+ """绑定的安全组id
2294
+ :rtype: list of str
2295
+ """
2296
+ return self._SecurityGroupIds
2297
+
2298
+ @SecurityGroupIds.setter
2299
+ def SecurityGroupIds(self, SecurityGroupIds):
2300
+ self._SecurityGroupIds = SecurityGroupIds
2301
+
2231
2302
 
2232
2303
  def _deserialize(self, params):
2233
2304
  self._InstanceId = params.get("InstanceId")
@@ -2265,10 +2336,14 @@ class InstanceInfo(AbstractModel):
2265
2336
  self._Extend = params.get("Extend")
2266
2337
  self._ExpiredAt = params.get("ExpiredAt")
2267
2338
  self._IsNoExpired = params.get("IsNoExpired")
2339
+ self._ProductType = params.get("ProductType")
2340
+ self._InstanceType = params.get("InstanceType")
2341
+ self._NodeType = params.get("NodeType")
2268
2342
  self._WanAddress = params.get("WanAddress")
2269
2343
  self._IsolateAt = params.get("IsolateAt")
2270
2344
  self._AutoRenew = params.get("AutoRenew")
2271
2345
  self._TaskStatus = params.get("TaskStatus")
2346
+ self._SecurityGroupIds = params.get("SecurityGroupIds")
2272
2347
  memeber_set = set(params.keys())
2273
2348
  for name, value in vars(self).items():
2274
2349
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-vdb
3
- Version: 3.0.1394
3
+ Version: 3.0.1413
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1413
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1394