tencentcloud-sdk-python-vdb 3.0.1337__py2.py3-none-any.whl → 3.0.1338__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 +9 -57
- {tencentcloud_sdk_python_vdb-3.0.1337.dist-info → tencentcloud_sdk_python_vdb-3.0.1338.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_vdb-3.0.1338.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_vdb-3.0.1337.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_vdb-3.0.1337.dist-info → tencentcloud_sdk_python_vdb-3.0.1338.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_vdb-3.0.1337.dist-info → tencentcloud_sdk_python_vdb-3.0.1338.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -272,7 +272,6 @@ class DescribeInstanceNodesResponse(AbstractModel):
|
|
272
272
|
def __init__(self):
|
273
273
|
r"""
|
274
274
|
:param _Items: 实例pod列表。
|
275
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
276
275
|
:type Items: list of NodeInfo
|
277
276
|
:param _TotalCount: 查询结果总数量。
|
278
277
|
:type TotalCount: int
|
@@ -286,7 +285,6 @@ class DescribeInstanceNodesResponse(AbstractModel):
|
|
286
285
|
@property
|
287
286
|
def Items(self):
|
288
287
|
"""实例pod列表。
|
289
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
290
288
|
:rtype: list of NodeInfo
|
291
289
|
"""
|
292
290
|
return self._Items
|
@@ -426,6 +424,8 @@ class DescribeInstancesRequest(AbstractModel):
|
|
426
424
|
|
427
425
|
@property
|
428
426
|
def EngineNames(self):
|
427
|
+
warnings.warn("parameter `EngineNames` is deprecated", DeprecationWarning)
|
428
|
+
|
429
429
|
"""按照引擎筛选实例。
|
430
430
|
:rtype: list of str
|
431
431
|
"""
|
@@ -433,6 +433,8 @@ class DescribeInstancesRequest(AbstractModel):
|
|
433
433
|
|
434
434
|
@EngineNames.setter
|
435
435
|
def EngineNames(self, EngineNames):
|
436
|
+
warnings.warn("parameter `EngineNames` is deprecated", DeprecationWarning)
|
437
|
+
|
436
438
|
self._EngineNames = EngineNames
|
437
439
|
|
438
440
|
@property
|
@@ -470,6 +472,8 @@ class DescribeInstancesRequest(AbstractModel):
|
|
470
472
|
|
471
473
|
@property
|
472
474
|
def Zones(self):
|
475
|
+
warnings.warn("parameter `Zones` is deprecated", DeprecationWarning)
|
476
|
+
|
473
477
|
"""按照可用区筛选实例。
|
474
478
|
:rtype: list of str
|
475
479
|
"""
|
@@ -477,6 +481,8 @@ class DescribeInstancesRequest(AbstractModel):
|
|
477
481
|
|
478
482
|
@Zones.setter
|
479
483
|
def Zones(self, Zones):
|
484
|
+
warnings.warn("parameter `Zones` is deprecated", DeprecationWarning)
|
485
|
+
|
480
486
|
self._Zones = Zones
|
481
487
|
|
482
488
|
@property
|
@@ -573,7 +579,6 @@ class DescribeInstancesResponse(AbstractModel):
|
|
573
579
|
def __init__(self):
|
574
580
|
r"""
|
575
581
|
:param _Items: 实例列表。
|
576
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
577
582
|
:type Items: list of InstanceInfo
|
578
583
|
:param _TotalCount: 实例总数。
|
579
584
|
:type TotalCount: int
|
@@ -587,7 +592,6 @@ class DescribeInstancesResponse(AbstractModel):
|
|
587
592
|
@property
|
588
593
|
def Items(self):
|
589
594
|
"""实例列表。
|
590
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
591
595
|
:rtype: list of InstanceInfo
|
592
596
|
"""
|
593
597
|
return self._Items
|
@@ -858,40 +862,28 @@ class InstanceInfo(AbstractModel):
|
|
858
862
|
def __init__(self):
|
859
863
|
r"""
|
860
864
|
:param _InstanceId: 实例ID。
|
861
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
862
865
|
:type InstanceId: str
|
863
866
|
:param _Name: 实例自定义名称。
|
864
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
865
867
|
:type Name: str
|
866
868
|
:param _AppId: 用户APPID。
|
867
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
868
869
|
:type AppId: int
|
869
870
|
:param _Region: 地域。
|
870
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
871
871
|
:type Region: str
|
872
872
|
:param _Zone: 可用区。
|
873
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
874
873
|
:type Zone: str
|
875
874
|
:param _Product: 产品。
|
876
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
877
875
|
:type Product: str
|
878
876
|
:param _Networks: 网络信息。
|
879
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
880
877
|
:type Networks: list of Network
|
881
878
|
:param _ShardNum: 分片信息。
|
882
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
883
879
|
:type ShardNum: int
|
884
880
|
:param _ReplicaNum: 副本数。
|
885
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
886
881
|
:type ReplicaNum: int
|
887
882
|
:param _Cpu: CPU.
|
888
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
889
883
|
:type Cpu: float
|
890
884
|
:param _Memory: 内存。
|
891
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
892
885
|
:type Memory: float
|
893
886
|
:param _Disk: 磁盘。
|
894
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
895
887
|
:type Disk: int
|
896
888
|
:param _HealthScore: 健康得分。
|
897
889
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -903,43 +895,30 @@ class InstanceInfo(AbstractModel):
|
|
903
895
|
注意:此字段可能返回 null,表示取不到有效值。
|
904
896
|
:type Project: str
|
905
897
|
:param _ResourceTags: 所属标签。
|
906
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
907
898
|
:type ResourceTags: list of Tag
|
908
899
|
:param _CreatedAt: 创建时间。
|
909
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
910
900
|
:type CreatedAt: str
|
911
901
|
:param _Status: 资源状态。
|
912
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
913
902
|
:type Status: str
|
914
903
|
:param _EngineName: 引擎名称。
|
915
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
916
904
|
:type EngineName: str
|
917
905
|
:param _EngineVersion: 引擎版本。
|
918
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
919
906
|
:type EngineVersion: str
|
920
907
|
:param _ApiVersion: api版本
|
921
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
922
908
|
:type ApiVersion: str
|
923
909
|
:param _PayMode: 计费模式。
|
924
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
925
910
|
:type PayMode: int
|
926
911
|
:param _Extend: 差异化扩展信息, json格式。
|
927
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
928
912
|
:type Extend: str
|
929
913
|
:param _ExpiredAt: 过期时间。
|
930
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
931
914
|
:type ExpiredAt: str
|
932
915
|
:param _IsNoExpired: 是否不过期(永久)。
|
933
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
934
916
|
:type IsNoExpired: bool
|
935
917
|
:param _WanAddress: 外网地址。
|
936
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
937
918
|
:type WanAddress: str
|
938
919
|
:param _IsolateAt: 隔离时间
|
939
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
940
920
|
:type IsolateAt: str
|
941
921
|
:param _AutoRenew: 是否自动续费。0: 不自动续费(可以支持特权不停服);1:自动续费;2:到期不续费.
|
942
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
943
922
|
:type AutoRenew: int
|
944
923
|
"""
|
945
924
|
self._InstanceId = None
|
@@ -974,7 +953,6 @@ class InstanceInfo(AbstractModel):
|
|
974
953
|
@property
|
975
954
|
def InstanceId(self):
|
976
955
|
"""实例ID。
|
977
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
978
956
|
:rtype: str
|
979
957
|
"""
|
980
958
|
return self._InstanceId
|
@@ -986,7 +964,6 @@ class InstanceInfo(AbstractModel):
|
|
986
964
|
@property
|
987
965
|
def Name(self):
|
988
966
|
"""实例自定义名称。
|
989
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
990
967
|
:rtype: str
|
991
968
|
"""
|
992
969
|
return self._Name
|
@@ -998,7 +975,6 @@ class InstanceInfo(AbstractModel):
|
|
998
975
|
@property
|
999
976
|
def AppId(self):
|
1000
977
|
"""用户APPID。
|
1001
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1002
978
|
:rtype: int
|
1003
979
|
"""
|
1004
980
|
return self._AppId
|
@@ -1010,7 +986,6 @@ class InstanceInfo(AbstractModel):
|
|
1010
986
|
@property
|
1011
987
|
def Region(self):
|
1012
988
|
"""地域。
|
1013
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1014
989
|
:rtype: str
|
1015
990
|
"""
|
1016
991
|
return self._Region
|
@@ -1022,7 +997,6 @@ class InstanceInfo(AbstractModel):
|
|
1022
997
|
@property
|
1023
998
|
def Zone(self):
|
1024
999
|
"""可用区。
|
1025
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1026
1000
|
:rtype: str
|
1027
1001
|
"""
|
1028
1002
|
return self._Zone
|
@@ -1034,7 +1008,6 @@ class InstanceInfo(AbstractModel):
|
|
1034
1008
|
@property
|
1035
1009
|
def Product(self):
|
1036
1010
|
"""产品。
|
1037
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1038
1011
|
:rtype: str
|
1039
1012
|
"""
|
1040
1013
|
return self._Product
|
@@ -1046,7 +1019,6 @@ class InstanceInfo(AbstractModel):
|
|
1046
1019
|
@property
|
1047
1020
|
def Networks(self):
|
1048
1021
|
"""网络信息。
|
1049
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1050
1022
|
:rtype: list of Network
|
1051
1023
|
"""
|
1052
1024
|
return self._Networks
|
@@ -1058,7 +1030,6 @@ class InstanceInfo(AbstractModel):
|
|
1058
1030
|
@property
|
1059
1031
|
def ShardNum(self):
|
1060
1032
|
"""分片信息。
|
1061
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1062
1033
|
:rtype: int
|
1063
1034
|
"""
|
1064
1035
|
return self._ShardNum
|
@@ -1070,7 +1041,6 @@ class InstanceInfo(AbstractModel):
|
|
1070
1041
|
@property
|
1071
1042
|
def ReplicaNum(self):
|
1072
1043
|
"""副本数。
|
1073
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1074
1044
|
:rtype: int
|
1075
1045
|
"""
|
1076
1046
|
return self._ReplicaNum
|
@@ -1082,7 +1052,6 @@ class InstanceInfo(AbstractModel):
|
|
1082
1052
|
@property
|
1083
1053
|
def Cpu(self):
|
1084
1054
|
"""CPU.
|
1085
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1086
1055
|
:rtype: float
|
1087
1056
|
"""
|
1088
1057
|
return self._Cpu
|
@@ -1094,7 +1063,6 @@ class InstanceInfo(AbstractModel):
|
|
1094
1063
|
@property
|
1095
1064
|
def Memory(self):
|
1096
1065
|
"""内存。
|
1097
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1098
1066
|
:rtype: float
|
1099
1067
|
"""
|
1100
1068
|
return self._Memory
|
@@ -1106,7 +1074,6 @@ class InstanceInfo(AbstractModel):
|
|
1106
1074
|
@property
|
1107
1075
|
def Disk(self):
|
1108
1076
|
"""磁盘。
|
1109
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1110
1077
|
:rtype: int
|
1111
1078
|
"""
|
1112
1079
|
return self._Disk
|
@@ -1166,7 +1133,6 @@ class InstanceInfo(AbstractModel):
|
|
1166
1133
|
@property
|
1167
1134
|
def ResourceTags(self):
|
1168
1135
|
"""所属标签。
|
1169
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1170
1136
|
:rtype: list of Tag
|
1171
1137
|
"""
|
1172
1138
|
return self._ResourceTags
|
@@ -1178,7 +1144,6 @@ class InstanceInfo(AbstractModel):
|
|
1178
1144
|
@property
|
1179
1145
|
def CreatedAt(self):
|
1180
1146
|
"""创建时间。
|
1181
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1182
1147
|
:rtype: str
|
1183
1148
|
"""
|
1184
1149
|
return self._CreatedAt
|
@@ -1190,7 +1155,6 @@ class InstanceInfo(AbstractModel):
|
|
1190
1155
|
@property
|
1191
1156
|
def Status(self):
|
1192
1157
|
"""资源状态。
|
1193
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1194
1158
|
:rtype: str
|
1195
1159
|
"""
|
1196
1160
|
return self._Status
|
@@ -1202,7 +1166,6 @@ class InstanceInfo(AbstractModel):
|
|
1202
1166
|
@property
|
1203
1167
|
def EngineName(self):
|
1204
1168
|
"""引擎名称。
|
1205
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1206
1169
|
:rtype: str
|
1207
1170
|
"""
|
1208
1171
|
return self._EngineName
|
@@ -1214,7 +1177,6 @@ class InstanceInfo(AbstractModel):
|
|
1214
1177
|
@property
|
1215
1178
|
def EngineVersion(self):
|
1216
1179
|
"""引擎版本。
|
1217
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1218
1180
|
:rtype: str
|
1219
1181
|
"""
|
1220
1182
|
return self._EngineVersion
|
@@ -1226,7 +1188,6 @@ class InstanceInfo(AbstractModel):
|
|
1226
1188
|
@property
|
1227
1189
|
def ApiVersion(self):
|
1228
1190
|
"""api版本
|
1229
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1230
1191
|
:rtype: str
|
1231
1192
|
"""
|
1232
1193
|
return self._ApiVersion
|
@@ -1238,7 +1199,6 @@ class InstanceInfo(AbstractModel):
|
|
1238
1199
|
@property
|
1239
1200
|
def PayMode(self):
|
1240
1201
|
"""计费模式。
|
1241
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1242
1202
|
:rtype: int
|
1243
1203
|
"""
|
1244
1204
|
return self._PayMode
|
@@ -1250,7 +1210,6 @@ class InstanceInfo(AbstractModel):
|
|
1250
1210
|
@property
|
1251
1211
|
def Extend(self):
|
1252
1212
|
"""差异化扩展信息, json格式。
|
1253
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1254
1213
|
:rtype: str
|
1255
1214
|
"""
|
1256
1215
|
return self._Extend
|
@@ -1262,7 +1221,6 @@ class InstanceInfo(AbstractModel):
|
|
1262
1221
|
@property
|
1263
1222
|
def ExpiredAt(self):
|
1264
1223
|
"""过期时间。
|
1265
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1266
1224
|
:rtype: str
|
1267
1225
|
"""
|
1268
1226
|
return self._ExpiredAt
|
@@ -1274,7 +1232,6 @@ class InstanceInfo(AbstractModel):
|
|
1274
1232
|
@property
|
1275
1233
|
def IsNoExpired(self):
|
1276
1234
|
"""是否不过期(永久)。
|
1277
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1278
1235
|
:rtype: bool
|
1279
1236
|
"""
|
1280
1237
|
return self._IsNoExpired
|
@@ -1286,7 +1243,6 @@ class InstanceInfo(AbstractModel):
|
|
1286
1243
|
@property
|
1287
1244
|
def WanAddress(self):
|
1288
1245
|
"""外网地址。
|
1289
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1290
1246
|
:rtype: str
|
1291
1247
|
"""
|
1292
1248
|
return self._WanAddress
|
@@ -1298,7 +1254,6 @@ class InstanceInfo(AbstractModel):
|
|
1298
1254
|
@property
|
1299
1255
|
def IsolateAt(self):
|
1300
1256
|
"""隔离时间
|
1301
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1302
1257
|
:rtype: str
|
1303
1258
|
"""
|
1304
1259
|
return self._IsolateAt
|
@@ -1310,7 +1265,6 @@ class InstanceInfo(AbstractModel):
|
|
1310
1265
|
@property
|
1311
1266
|
def AutoRenew(self):
|
1312
1267
|
"""是否自动续费。0: 不自动续费(可以支持特权不停服);1:自动续费;2:到期不续费.
|
1313
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1314
1268
|
:rtype: int
|
1315
1269
|
"""
|
1316
1270
|
return self._AutoRenew
|
@@ -1560,14 +1514,13 @@ class Network(AbstractModel):
|
|
1560
1514
|
|
1561
1515
|
|
1562
1516
|
class NodeInfo(AbstractModel):
|
1563
|
-
"""实例pod
|
1517
|
+
"""实例pod信息, pod 名称
|
1564
1518
|
|
1565
1519
|
"""
|
1566
1520
|
|
1567
1521
|
def __init__(self):
|
1568
1522
|
r"""
|
1569
1523
|
:param _Name: Pod名称。
|
1570
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1571
1524
|
:type Name: str
|
1572
1525
|
"""
|
1573
1526
|
self._Name = None
|
@@ -1575,7 +1528,6 @@ class NodeInfo(AbstractModel):
|
|
1575
1528
|
@property
|
1576
1529
|
def Name(self):
|
1577
1530
|
"""Pod名称。
|
1578
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1579
1531
|
:rtype: str
|
1580
1532
|
"""
|
1581
1533
|
return self._Name
|
@@ -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.1338
|
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.1338)
|
19
19
|
|
20
20
|
============================
|
21
21
|
Tencent Cloud SDK for Python
|
@@ -0,0 +1,10 @@
|
|
1
|
+
tencentcloud/__init__.py,sha256=QwmYO2Ggr3xJjjiEbAkHPjGqVYGWQt4plN2_Z-20G2g,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.1338.dist-info/METADATA,sha256=WXpOSwS4AEV6Q1N02atTVvqrUUQG0e9XCHDg4duhwKg,1496
|
8
|
+
tencentcloud_sdk_python_vdb-3.0.1338.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
+
tencentcloud_sdk_python_vdb-3.0.1338.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
+
tencentcloud_sdk_python_vdb-3.0.1338.dist-info/RECORD,,
|
@@ -1,10 +0,0 @@
|
|
1
|
-
tencentcloud/__init__.py,sha256=E8wPag2CBStYYOsbtrW6rHIaLH8AsxubRVcvXuAWsb8,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=2ZPKq008SOmbgC0OeFFWmaUYWdOl0_sZclSDC3zsrqA,55935
|
6
|
-
tencentcloud/vdb/v20230616/vdb_client.py,sha256=VQuqL3skHxrsbMy7wt4_Ja3EaJcahb29zafYz-F9qnw,6684
|
7
|
-
tencentcloud_sdk_python_vdb-3.0.1337.dist-info/METADATA,sha256=jcUQUutdRvs9y2Bo_4BmHf3Egixr3YJPET7xe0UVS2E,1496
|
8
|
-
tencentcloud_sdk_python_vdb-3.0.1337.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
-
tencentcloud_sdk_python_vdb-3.0.1337.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
-
tencentcloud_sdk_python_vdb-3.0.1337.dist-info/RECORD,,
|
File without changes
|
File without changes
|