tencentcloud-sdk-python-vdb 3.0.1231__py2.py3-none-any.whl → 3.0.1275__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 +345 -0
- {tencentcloud_sdk_python_vdb-3.0.1231.dist-info → tencentcloud_sdk_python_vdb-3.0.1275.dist-info}/METADATA +3 -3
- tencentcloud_sdk_python_vdb-3.0.1275.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_vdb-3.0.1231.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_vdb-3.0.1231.dist-info → tencentcloud_sdk_python_vdb-3.0.1275.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_vdb-3.0.1231.dist-info → tencentcloud_sdk_python_vdb-3.0.1275.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -35,6 +35,9 @@ class AssociateSecurityGroupsRequest(AbstractModel):
|
|
35
35
|
|
36
36
|
@property
|
37
37
|
def SecurityGroupIds(self):
|
38
|
+
"""要绑定的安全组 ID,类似sg-efil7***。
|
39
|
+
:rtype: list of str
|
40
|
+
"""
|
38
41
|
return self._SecurityGroupIds
|
39
42
|
|
40
43
|
@SecurityGroupIds.setter
|
@@ -43,6 +46,9 @@ class AssociateSecurityGroupsRequest(AbstractModel):
|
|
43
46
|
|
44
47
|
@property
|
45
48
|
def InstanceIds(self):
|
49
|
+
"""实例 ID,格式如:vdb-c1nl9***,支持指定多个实例
|
50
|
+
:rtype: list of str
|
51
|
+
"""
|
46
52
|
return self._InstanceIds
|
47
53
|
|
48
54
|
@InstanceIds.setter
|
@@ -77,6 +83,9 @@ class AssociateSecurityGroupsResponse(AbstractModel):
|
|
77
83
|
|
78
84
|
@property
|
79
85
|
def RequestId(self):
|
86
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
87
|
+
:rtype: str
|
88
|
+
"""
|
80
89
|
return self._RequestId
|
81
90
|
|
82
91
|
@RequestId.setter
|
@@ -102,6 +111,9 @@ class DescribeDBSecurityGroupsRequest(AbstractModel):
|
|
102
111
|
|
103
112
|
@property
|
104
113
|
def InstanceId(self):
|
114
|
+
"""实例ID,格式如:vdb-c1nl9***。
|
115
|
+
:rtype: str
|
116
|
+
"""
|
105
117
|
return self._InstanceId
|
106
118
|
|
107
119
|
@InstanceId.setter
|
@@ -139,6 +151,10 @@ class DescribeDBSecurityGroupsResponse(AbstractModel):
|
|
139
151
|
|
140
152
|
@property
|
141
153
|
def Groups(self):
|
154
|
+
"""安全组规则。
|
155
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
156
|
+
:rtype: list of SecurityGroup
|
157
|
+
"""
|
142
158
|
return self._Groups
|
143
159
|
|
144
160
|
@Groups.setter
|
@@ -147,6 +163,9 @@ class DescribeDBSecurityGroupsResponse(AbstractModel):
|
|
147
163
|
|
148
164
|
@property
|
149
165
|
def RequestId(self):
|
166
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
167
|
+
:rtype: str
|
168
|
+
"""
|
150
169
|
return self._RequestId
|
151
170
|
|
152
171
|
@RequestId.setter
|
@@ -171,6 +190,8 @@ class DescribeInstanceNodesRequest(AbstractModel):
|
|
171
190
|
|
172
191
|
def __init__(self):
|
173
192
|
r"""
|
193
|
+
:param _InstanceId: 实例ID。
|
194
|
+
:type InstanceId: str
|
174
195
|
:param _Limit: limit
|
175
196
|
:type Limit: int
|
176
197
|
:param _Offset: offset
|
@@ -178,12 +199,27 @@ class DescribeInstanceNodesRequest(AbstractModel):
|
|
178
199
|
:param _Component: component
|
179
200
|
:type Component: str
|
180
201
|
"""
|
202
|
+
self._InstanceId = None
|
181
203
|
self._Limit = None
|
182
204
|
self._Offset = None
|
183
205
|
self._Component = None
|
184
206
|
|
207
|
+
@property
|
208
|
+
def InstanceId(self):
|
209
|
+
"""实例ID。
|
210
|
+
:rtype: str
|
211
|
+
"""
|
212
|
+
return self._InstanceId
|
213
|
+
|
214
|
+
@InstanceId.setter
|
215
|
+
def InstanceId(self, InstanceId):
|
216
|
+
self._InstanceId = InstanceId
|
217
|
+
|
185
218
|
@property
|
186
219
|
def Limit(self):
|
220
|
+
"""limit
|
221
|
+
:rtype: int
|
222
|
+
"""
|
187
223
|
return self._Limit
|
188
224
|
|
189
225
|
@Limit.setter
|
@@ -192,6 +228,9 @@ class DescribeInstanceNodesRequest(AbstractModel):
|
|
192
228
|
|
193
229
|
@property
|
194
230
|
def Offset(self):
|
231
|
+
"""offset
|
232
|
+
:rtype: int
|
233
|
+
"""
|
195
234
|
return self._Offset
|
196
235
|
|
197
236
|
@Offset.setter
|
@@ -200,6 +239,9 @@ class DescribeInstanceNodesRequest(AbstractModel):
|
|
200
239
|
|
201
240
|
@property
|
202
241
|
def Component(self):
|
242
|
+
"""component
|
243
|
+
:rtype: str
|
244
|
+
"""
|
203
245
|
return self._Component
|
204
246
|
|
205
247
|
@Component.setter
|
@@ -208,6 +250,7 @@ class DescribeInstanceNodesRequest(AbstractModel):
|
|
208
250
|
|
209
251
|
|
210
252
|
def _deserialize(self, params):
|
253
|
+
self._InstanceId = params.get("InstanceId")
|
211
254
|
self._Limit = params.get("Limit")
|
212
255
|
self._Offset = params.get("Offset")
|
213
256
|
self._Component = params.get("Component")
|
@@ -242,6 +285,10 @@ class DescribeInstanceNodesResponse(AbstractModel):
|
|
242
285
|
|
243
286
|
@property
|
244
287
|
def Items(self):
|
288
|
+
"""实例pod列表。
|
289
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
290
|
+
:rtype: list of NodeInfo
|
291
|
+
"""
|
245
292
|
return self._Items
|
246
293
|
|
247
294
|
@Items.setter
|
@@ -250,6 +297,9 @@ class DescribeInstanceNodesResponse(AbstractModel):
|
|
250
297
|
|
251
298
|
@property
|
252
299
|
def TotalCount(self):
|
300
|
+
"""查询结果总数量。
|
301
|
+
:rtype: int
|
302
|
+
"""
|
253
303
|
return self._TotalCount
|
254
304
|
|
255
305
|
@TotalCount.setter
|
@@ -258,6 +308,9 @@ class DescribeInstanceNodesResponse(AbstractModel):
|
|
258
308
|
|
259
309
|
@property
|
260
310
|
def RequestId(self):
|
311
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
312
|
+
:rtype: str
|
313
|
+
"""
|
261
314
|
return self._RequestId
|
262
315
|
|
263
316
|
@RequestId.setter
|
@@ -326,6 +379,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
326
379
|
|
327
380
|
@property
|
328
381
|
def InstanceIds(self):
|
382
|
+
"""实例ID数组。
|
383
|
+
:rtype: list of str
|
384
|
+
"""
|
329
385
|
return self._InstanceIds
|
330
386
|
|
331
387
|
@InstanceIds.setter
|
@@ -334,6 +390,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
334
390
|
|
335
391
|
@property
|
336
392
|
def InstanceNames(self):
|
393
|
+
"""实例名称,支持模糊搜索。
|
394
|
+
:rtype: list of str
|
395
|
+
"""
|
337
396
|
return self._InstanceNames
|
338
397
|
|
339
398
|
@InstanceNames.setter
|
@@ -342,6 +401,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
342
401
|
|
343
402
|
@property
|
344
403
|
def InstanceKeys(self):
|
404
|
+
"""实例模糊搜索字段。
|
405
|
+
:rtype: list of str
|
406
|
+
"""
|
345
407
|
return self._InstanceKeys
|
346
408
|
|
347
409
|
@InstanceKeys.setter
|
@@ -350,6 +412,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
350
412
|
|
351
413
|
@property
|
352
414
|
def Status(self):
|
415
|
+
"""根据状态获取实例, 为空则获取全部非隔离和非下线的实例。
|
416
|
+
:rtype: list of str
|
417
|
+
"""
|
353
418
|
return self._Status
|
354
419
|
|
355
420
|
@Status.setter
|
@@ -358,6 +423,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
358
423
|
|
359
424
|
@property
|
360
425
|
def EngineNames(self):
|
426
|
+
"""按照引擎筛选实例。
|
427
|
+
:rtype: list of str
|
428
|
+
"""
|
361
429
|
return self._EngineNames
|
362
430
|
|
363
431
|
@EngineNames.setter
|
@@ -366,6 +434,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
366
434
|
|
367
435
|
@property
|
368
436
|
def EngineVersions(self):
|
437
|
+
"""按照版本筛选实例。
|
438
|
+
:rtype: list of str
|
439
|
+
"""
|
369
440
|
return self._EngineVersions
|
370
441
|
|
371
442
|
@EngineVersions.setter
|
@@ -374,6 +445,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
374
445
|
|
375
446
|
@property
|
376
447
|
def CreateAt(self):
|
448
|
+
"""按照创建时间筛选实例。
|
449
|
+
:rtype: str
|
450
|
+
"""
|
377
451
|
return self._CreateAt
|
378
452
|
|
379
453
|
@CreateAt.setter
|
@@ -382,6 +456,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
382
456
|
|
383
457
|
@property
|
384
458
|
def Zones(self):
|
459
|
+
"""按照可用区筛选实例。
|
460
|
+
:rtype: list of str
|
461
|
+
"""
|
385
462
|
return self._Zones
|
386
463
|
|
387
464
|
@Zones.setter
|
@@ -390,6 +467,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
390
467
|
|
391
468
|
@property
|
392
469
|
def OrderBy(self):
|
470
|
+
"""排序字段。
|
471
|
+
:rtype: str
|
472
|
+
"""
|
393
473
|
return self._OrderBy
|
394
474
|
|
395
475
|
@OrderBy.setter
|
@@ -398,6 +478,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
398
478
|
|
399
479
|
@property
|
400
480
|
def OrderDirection(self):
|
481
|
+
"""排序方式。
|
482
|
+
:rtype: str
|
483
|
+
"""
|
401
484
|
return self._OrderDirection
|
402
485
|
|
403
486
|
@OrderDirection.setter
|
@@ -406,6 +489,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
406
489
|
|
407
490
|
@property
|
408
491
|
def Offset(self):
|
492
|
+
"""查询开始位置。
|
493
|
+
:rtype: int
|
494
|
+
"""
|
409
495
|
return self._Offset
|
410
496
|
|
411
497
|
@Offset.setter
|
@@ -414,6 +500,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
414
500
|
|
415
501
|
@property
|
416
502
|
def Limit(self):
|
503
|
+
"""列表查询数量。
|
504
|
+
:rtype: int
|
505
|
+
"""
|
417
506
|
return self._Limit
|
418
507
|
|
419
508
|
@Limit.setter
|
@@ -422,6 +511,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
422
511
|
|
423
512
|
@property
|
424
513
|
def ResourceTags(self):
|
514
|
+
"""按照标签筛选实例
|
515
|
+
:rtype: list of Tag
|
516
|
+
"""
|
425
517
|
return self._ResourceTags
|
426
518
|
|
427
519
|
@ResourceTags.setter
|
@@ -479,6 +571,10 @@ class DescribeInstancesResponse(AbstractModel):
|
|
479
571
|
|
480
572
|
@property
|
481
573
|
def Items(self):
|
574
|
+
"""实例列表。
|
575
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
576
|
+
:rtype: list of InstanceInfo
|
577
|
+
"""
|
482
578
|
return self._Items
|
483
579
|
|
484
580
|
@Items.setter
|
@@ -487,6 +583,9 @@ class DescribeInstancesResponse(AbstractModel):
|
|
487
583
|
|
488
584
|
@property
|
489
585
|
def TotalCount(self):
|
586
|
+
"""实例总数。
|
587
|
+
:rtype: int
|
588
|
+
"""
|
490
589
|
return self._TotalCount
|
491
590
|
|
492
591
|
@TotalCount.setter
|
@@ -495,6 +594,9 @@ class DescribeInstancesResponse(AbstractModel):
|
|
495
594
|
|
496
595
|
@property
|
497
596
|
def RequestId(self):
|
597
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
598
|
+
:rtype: str
|
599
|
+
"""
|
498
600
|
return self._RequestId
|
499
601
|
|
500
602
|
@RequestId.setter
|
@@ -530,6 +632,9 @@ class DisassociateSecurityGroupsRequest(AbstractModel):
|
|
530
632
|
|
531
633
|
@property
|
532
634
|
def SecurityGroupIds(self):
|
635
|
+
"""要绑定的安全组 ID,类似sg-efil****。
|
636
|
+
:rtype: str
|
637
|
+
"""
|
533
638
|
return self._SecurityGroupIds
|
534
639
|
|
535
640
|
@SecurityGroupIds.setter
|
@@ -538,6 +643,9 @@ class DisassociateSecurityGroupsRequest(AbstractModel):
|
|
538
643
|
|
539
644
|
@property
|
540
645
|
def InstanceIds(self):
|
646
|
+
"""实例 ID,格式如:vdb-c1nl****,支持指定多个实例。
|
647
|
+
:rtype: list of str
|
648
|
+
"""
|
541
649
|
return self._InstanceIds
|
542
650
|
|
543
651
|
@InstanceIds.setter
|
@@ -572,6 +680,9 @@ class DisassociateSecurityGroupsResponse(AbstractModel):
|
|
572
680
|
|
573
681
|
@property
|
574
682
|
def RequestId(self):
|
683
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
684
|
+
:rtype: str
|
685
|
+
"""
|
575
686
|
return self._RequestId
|
576
687
|
|
577
688
|
@RequestId.setter
|
@@ -618,6 +729,9 @@ class Inbound(AbstractModel):
|
|
618
729
|
|
619
730
|
@property
|
620
731
|
def Action(self):
|
732
|
+
"""策略,ACCEPT或者DROP。
|
733
|
+
:rtype: str
|
734
|
+
"""
|
621
735
|
return self._Action
|
622
736
|
|
623
737
|
@Action.setter
|
@@ -626,6 +740,9 @@ class Inbound(AbstractModel):
|
|
626
740
|
|
627
741
|
@property
|
628
742
|
def AddressModule(self):
|
743
|
+
"""地址组id代表的地址集合。
|
744
|
+
:rtype: str
|
745
|
+
"""
|
629
746
|
return self._AddressModule
|
630
747
|
|
631
748
|
@AddressModule.setter
|
@@ -634,6 +751,9 @@ class Inbound(AbstractModel):
|
|
634
751
|
|
635
752
|
@property
|
636
753
|
def CidrIp(self):
|
754
|
+
"""来源Ip或Ip段,例如192.168.0.0/16。
|
755
|
+
:rtype: str
|
756
|
+
"""
|
637
757
|
return self._CidrIp
|
638
758
|
|
639
759
|
@CidrIp.setter
|
@@ -642,6 +762,9 @@ class Inbound(AbstractModel):
|
|
642
762
|
|
643
763
|
@property
|
644
764
|
def Desc(self):
|
765
|
+
"""描述。
|
766
|
+
:rtype: str
|
767
|
+
"""
|
645
768
|
return self._Desc
|
646
769
|
|
647
770
|
@Desc.setter
|
@@ -650,6 +773,9 @@ class Inbound(AbstractModel):
|
|
650
773
|
|
651
774
|
@property
|
652
775
|
def IpProtocol(self):
|
776
|
+
"""网络协议,支持udp、tcp等。
|
777
|
+
:rtype: str
|
778
|
+
"""
|
653
779
|
return self._IpProtocol
|
654
780
|
|
655
781
|
@IpProtocol.setter
|
@@ -658,6 +784,9 @@ class Inbound(AbstractModel):
|
|
658
784
|
|
659
785
|
@property
|
660
786
|
def PortRange(self):
|
787
|
+
"""端口。
|
788
|
+
:rtype: str
|
789
|
+
"""
|
661
790
|
return self._PortRange
|
662
791
|
|
663
792
|
@PortRange.setter
|
@@ -666,6 +795,9 @@ class Inbound(AbstractModel):
|
|
666
795
|
|
667
796
|
@property
|
668
797
|
def ServiceModule(self):
|
798
|
+
"""服务组id代表的协议和端口集合。
|
799
|
+
:rtype: str
|
800
|
+
"""
|
669
801
|
return self._ServiceModule
|
670
802
|
|
671
803
|
@ServiceModule.setter
|
@@ -674,6 +806,9 @@ class Inbound(AbstractModel):
|
|
674
806
|
|
675
807
|
@property
|
676
808
|
def Id(self):
|
809
|
+
"""安全组id代表的地址集合。
|
810
|
+
:rtype: str
|
811
|
+
"""
|
677
812
|
return self._Id
|
678
813
|
|
679
814
|
@Id.setter
|
@@ -767,6 +902,9 @@ class InstanceInfo(AbstractModel):
|
|
767
902
|
:param _EngineVersion: 引擎版本。
|
768
903
|
注意:此字段可能返回 null,表示取不到有效值。
|
769
904
|
:type EngineVersion: str
|
905
|
+
:param _ApiVersion: api版本
|
906
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
907
|
+
:type ApiVersion: str
|
770
908
|
:param _PayMode: 计费模式。
|
771
909
|
注意:此字段可能返回 null,表示取不到有效值。
|
772
910
|
:type PayMode: int
|
@@ -809,6 +947,7 @@ class InstanceInfo(AbstractModel):
|
|
809
947
|
self._Status = None
|
810
948
|
self._EngineName = None
|
811
949
|
self._EngineVersion = None
|
950
|
+
self._ApiVersion = None
|
812
951
|
self._PayMode = None
|
813
952
|
self._Extend = None
|
814
953
|
self._ExpiredAt = None
|
@@ -819,6 +958,10 @@ class InstanceInfo(AbstractModel):
|
|
819
958
|
|
820
959
|
@property
|
821
960
|
def InstanceId(self):
|
961
|
+
"""实例ID。
|
962
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
963
|
+
:rtype: str
|
964
|
+
"""
|
822
965
|
return self._InstanceId
|
823
966
|
|
824
967
|
@InstanceId.setter
|
@@ -827,6 +970,10 @@ class InstanceInfo(AbstractModel):
|
|
827
970
|
|
828
971
|
@property
|
829
972
|
def Name(self):
|
973
|
+
"""实例自定义名称。
|
974
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
975
|
+
:rtype: str
|
976
|
+
"""
|
830
977
|
return self._Name
|
831
978
|
|
832
979
|
@Name.setter
|
@@ -835,6 +982,10 @@ class InstanceInfo(AbstractModel):
|
|
835
982
|
|
836
983
|
@property
|
837
984
|
def AppId(self):
|
985
|
+
"""用户APPID。
|
986
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
987
|
+
:rtype: int
|
988
|
+
"""
|
838
989
|
return self._AppId
|
839
990
|
|
840
991
|
@AppId.setter
|
@@ -843,6 +994,10 @@ class InstanceInfo(AbstractModel):
|
|
843
994
|
|
844
995
|
@property
|
845
996
|
def Region(self):
|
997
|
+
"""地域。
|
998
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
999
|
+
:rtype: str
|
1000
|
+
"""
|
846
1001
|
return self._Region
|
847
1002
|
|
848
1003
|
@Region.setter
|
@@ -851,6 +1006,10 @@ class InstanceInfo(AbstractModel):
|
|
851
1006
|
|
852
1007
|
@property
|
853
1008
|
def Zone(self):
|
1009
|
+
"""可用区。
|
1010
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1011
|
+
:rtype: str
|
1012
|
+
"""
|
854
1013
|
return self._Zone
|
855
1014
|
|
856
1015
|
@Zone.setter
|
@@ -859,6 +1018,10 @@ class InstanceInfo(AbstractModel):
|
|
859
1018
|
|
860
1019
|
@property
|
861
1020
|
def Product(self):
|
1021
|
+
"""产品。
|
1022
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1023
|
+
:rtype: str
|
1024
|
+
"""
|
862
1025
|
return self._Product
|
863
1026
|
|
864
1027
|
@Product.setter
|
@@ -867,6 +1030,10 @@ class InstanceInfo(AbstractModel):
|
|
867
1030
|
|
868
1031
|
@property
|
869
1032
|
def Networks(self):
|
1033
|
+
"""网络信息。
|
1034
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1035
|
+
:rtype: list of Network
|
1036
|
+
"""
|
870
1037
|
return self._Networks
|
871
1038
|
|
872
1039
|
@Networks.setter
|
@@ -875,6 +1042,10 @@ class InstanceInfo(AbstractModel):
|
|
875
1042
|
|
876
1043
|
@property
|
877
1044
|
def ShardNum(self):
|
1045
|
+
"""分片信息。
|
1046
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1047
|
+
:rtype: int
|
1048
|
+
"""
|
878
1049
|
return self._ShardNum
|
879
1050
|
|
880
1051
|
@ShardNum.setter
|
@@ -883,6 +1054,10 @@ class InstanceInfo(AbstractModel):
|
|
883
1054
|
|
884
1055
|
@property
|
885
1056
|
def ReplicaNum(self):
|
1057
|
+
"""副本数。
|
1058
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1059
|
+
:rtype: int
|
1060
|
+
"""
|
886
1061
|
return self._ReplicaNum
|
887
1062
|
|
888
1063
|
@ReplicaNum.setter
|
@@ -891,6 +1066,10 @@ class InstanceInfo(AbstractModel):
|
|
891
1066
|
|
892
1067
|
@property
|
893
1068
|
def Cpu(self):
|
1069
|
+
"""CPU.
|
1070
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1071
|
+
:rtype: float
|
1072
|
+
"""
|
894
1073
|
return self._Cpu
|
895
1074
|
|
896
1075
|
@Cpu.setter
|
@@ -899,6 +1078,10 @@ class InstanceInfo(AbstractModel):
|
|
899
1078
|
|
900
1079
|
@property
|
901
1080
|
def Memory(self):
|
1081
|
+
"""内存。
|
1082
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1083
|
+
:rtype: float
|
1084
|
+
"""
|
902
1085
|
return self._Memory
|
903
1086
|
|
904
1087
|
@Memory.setter
|
@@ -907,6 +1090,10 @@ class InstanceInfo(AbstractModel):
|
|
907
1090
|
|
908
1091
|
@property
|
909
1092
|
def Disk(self):
|
1093
|
+
"""磁盘。
|
1094
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1095
|
+
:rtype: int
|
1096
|
+
"""
|
910
1097
|
return self._Disk
|
911
1098
|
|
912
1099
|
@Disk.setter
|
@@ -915,6 +1102,10 @@ class InstanceInfo(AbstractModel):
|
|
915
1102
|
|
916
1103
|
@property
|
917
1104
|
def HealthScore(self):
|
1105
|
+
"""健康得分。
|
1106
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1107
|
+
:rtype: float
|
1108
|
+
"""
|
918
1109
|
return self._HealthScore
|
919
1110
|
|
920
1111
|
@HealthScore.setter
|
@@ -923,6 +1114,10 @@ class InstanceInfo(AbstractModel):
|
|
923
1114
|
|
924
1115
|
@property
|
925
1116
|
def Warning(self):
|
1117
|
+
"""异常告警。
|
1118
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1119
|
+
:rtype: int
|
1120
|
+
"""
|
926
1121
|
return self._Warning
|
927
1122
|
|
928
1123
|
@Warning.setter
|
@@ -931,6 +1126,10 @@ class InstanceInfo(AbstractModel):
|
|
931
1126
|
|
932
1127
|
@property
|
933
1128
|
def Project(self):
|
1129
|
+
"""所属项目。
|
1130
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1131
|
+
:rtype: str
|
1132
|
+
"""
|
934
1133
|
return self._Project
|
935
1134
|
|
936
1135
|
@Project.setter
|
@@ -939,6 +1138,10 @@ class InstanceInfo(AbstractModel):
|
|
939
1138
|
|
940
1139
|
@property
|
941
1140
|
def ResourceTags(self):
|
1141
|
+
"""所属标签。
|
1142
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1143
|
+
:rtype: list of Tag
|
1144
|
+
"""
|
942
1145
|
return self._ResourceTags
|
943
1146
|
|
944
1147
|
@ResourceTags.setter
|
@@ -947,6 +1150,10 @@ class InstanceInfo(AbstractModel):
|
|
947
1150
|
|
948
1151
|
@property
|
949
1152
|
def CreatedAt(self):
|
1153
|
+
"""创建时间。
|
1154
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1155
|
+
:rtype: str
|
1156
|
+
"""
|
950
1157
|
return self._CreatedAt
|
951
1158
|
|
952
1159
|
@CreatedAt.setter
|
@@ -955,6 +1162,10 @@ class InstanceInfo(AbstractModel):
|
|
955
1162
|
|
956
1163
|
@property
|
957
1164
|
def Status(self):
|
1165
|
+
"""资源状态。
|
1166
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1167
|
+
:rtype: str
|
1168
|
+
"""
|
958
1169
|
return self._Status
|
959
1170
|
|
960
1171
|
@Status.setter
|
@@ -963,6 +1174,10 @@ class InstanceInfo(AbstractModel):
|
|
963
1174
|
|
964
1175
|
@property
|
965
1176
|
def EngineName(self):
|
1177
|
+
"""引擎名称。
|
1178
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1179
|
+
:rtype: str
|
1180
|
+
"""
|
966
1181
|
return self._EngineName
|
967
1182
|
|
968
1183
|
@EngineName.setter
|
@@ -971,14 +1186,34 @@ class InstanceInfo(AbstractModel):
|
|
971
1186
|
|
972
1187
|
@property
|
973
1188
|
def EngineVersion(self):
|
1189
|
+
"""引擎版本。
|
1190
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1191
|
+
:rtype: str
|
1192
|
+
"""
|
974
1193
|
return self._EngineVersion
|
975
1194
|
|
976
1195
|
@EngineVersion.setter
|
977
1196
|
def EngineVersion(self, EngineVersion):
|
978
1197
|
self._EngineVersion = EngineVersion
|
979
1198
|
|
1199
|
+
@property
|
1200
|
+
def ApiVersion(self):
|
1201
|
+
"""api版本
|
1202
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1203
|
+
:rtype: str
|
1204
|
+
"""
|
1205
|
+
return self._ApiVersion
|
1206
|
+
|
1207
|
+
@ApiVersion.setter
|
1208
|
+
def ApiVersion(self, ApiVersion):
|
1209
|
+
self._ApiVersion = ApiVersion
|
1210
|
+
|
980
1211
|
@property
|
981
1212
|
def PayMode(self):
|
1213
|
+
"""计费模式。
|
1214
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1215
|
+
:rtype: int
|
1216
|
+
"""
|
982
1217
|
return self._PayMode
|
983
1218
|
|
984
1219
|
@PayMode.setter
|
@@ -987,6 +1222,10 @@ class InstanceInfo(AbstractModel):
|
|
987
1222
|
|
988
1223
|
@property
|
989
1224
|
def Extend(self):
|
1225
|
+
"""差异化扩展信息, json格式。
|
1226
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1227
|
+
:rtype: str
|
1228
|
+
"""
|
990
1229
|
return self._Extend
|
991
1230
|
|
992
1231
|
@Extend.setter
|
@@ -995,6 +1234,10 @@ class InstanceInfo(AbstractModel):
|
|
995
1234
|
|
996
1235
|
@property
|
997
1236
|
def ExpiredAt(self):
|
1237
|
+
"""过期时间。
|
1238
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1239
|
+
:rtype: str
|
1240
|
+
"""
|
998
1241
|
return self._ExpiredAt
|
999
1242
|
|
1000
1243
|
@ExpiredAt.setter
|
@@ -1003,6 +1246,10 @@ class InstanceInfo(AbstractModel):
|
|
1003
1246
|
|
1004
1247
|
@property
|
1005
1248
|
def IsNoExpired(self):
|
1249
|
+
"""是否不过期(永久)。
|
1250
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1251
|
+
:rtype: bool
|
1252
|
+
"""
|
1006
1253
|
return self._IsNoExpired
|
1007
1254
|
|
1008
1255
|
@IsNoExpired.setter
|
@@ -1011,6 +1258,10 @@ class InstanceInfo(AbstractModel):
|
|
1011
1258
|
|
1012
1259
|
@property
|
1013
1260
|
def WanAddress(self):
|
1261
|
+
"""外网地址。
|
1262
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1263
|
+
:rtype: str
|
1264
|
+
"""
|
1014
1265
|
return self._WanAddress
|
1015
1266
|
|
1016
1267
|
@WanAddress.setter
|
@@ -1019,6 +1270,10 @@ class InstanceInfo(AbstractModel):
|
|
1019
1270
|
|
1020
1271
|
@property
|
1021
1272
|
def IsolateAt(self):
|
1273
|
+
"""隔离时间
|
1274
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1275
|
+
:rtype: str
|
1276
|
+
"""
|
1022
1277
|
return self._IsolateAt
|
1023
1278
|
|
1024
1279
|
@IsolateAt.setter
|
@@ -1027,6 +1282,10 @@ class InstanceInfo(AbstractModel):
|
|
1027
1282
|
|
1028
1283
|
@property
|
1029
1284
|
def AutoRenew(self):
|
1285
|
+
"""是否自动续费。0: 不自动续费(可以支持特权不停服);1:自动续费;2:到期不续费.
|
1286
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1287
|
+
:rtype: int
|
1288
|
+
"""
|
1030
1289
|
return self._AutoRenew
|
1031
1290
|
|
1032
1291
|
@AutoRenew.setter
|
@@ -1065,6 +1324,7 @@ class InstanceInfo(AbstractModel):
|
|
1065
1324
|
self._Status = params.get("Status")
|
1066
1325
|
self._EngineName = params.get("EngineName")
|
1067
1326
|
self._EngineVersion = params.get("EngineVersion")
|
1327
|
+
self._ApiVersion = params.get("ApiVersion")
|
1068
1328
|
self._PayMode = params.get("PayMode")
|
1069
1329
|
self._Extend = params.get("Extend")
|
1070
1330
|
self._ExpiredAt = params.get("ExpiredAt")
|
@@ -1099,6 +1359,9 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
1099
1359
|
|
1100
1360
|
@property
|
1101
1361
|
def SecurityGroupIds(self):
|
1362
|
+
"""要修改的安全组ID列表,一个或者多个安全组 ID 组成的数组。
|
1363
|
+
:rtype: list of str
|
1364
|
+
"""
|
1102
1365
|
return self._SecurityGroupIds
|
1103
1366
|
|
1104
1367
|
@SecurityGroupIds.setter
|
@@ -1107,6 +1370,9 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
1107
1370
|
|
1108
1371
|
@property
|
1109
1372
|
def InstanceIds(self):
|
1373
|
+
"""实例ID,格式如:vdb-c9s3****。
|
1374
|
+
:rtype: list of str
|
1375
|
+
"""
|
1110
1376
|
return self._InstanceIds
|
1111
1377
|
|
1112
1378
|
@InstanceIds.setter
|
@@ -1141,6 +1407,9 @@ class ModifyDBInstanceSecurityGroupsResponse(AbstractModel):
|
|
1141
1407
|
|
1142
1408
|
@property
|
1143
1409
|
def RequestId(self):
|
1410
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1411
|
+
:rtype: str
|
1412
|
+
"""
|
1144
1413
|
return self._RequestId
|
1145
1414
|
|
1146
1415
|
@RequestId.setter
|
@@ -1179,6 +1448,10 @@ class Network(AbstractModel):
|
|
1179
1448
|
|
1180
1449
|
@property
|
1181
1450
|
def VpcId(self):
|
1451
|
+
"""VpcId(VPC网络下有效)
|
1452
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1453
|
+
:rtype: str
|
1454
|
+
"""
|
1182
1455
|
return self._VpcId
|
1183
1456
|
|
1184
1457
|
@VpcId.setter
|
@@ -1187,6 +1460,10 @@ class Network(AbstractModel):
|
|
1187
1460
|
|
1188
1461
|
@property
|
1189
1462
|
def SubnetId(self):
|
1463
|
+
"""子网Id(VPC网络下有效)。
|
1464
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1465
|
+
:rtype: str
|
1466
|
+
"""
|
1190
1467
|
return self._SubnetId
|
1191
1468
|
|
1192
1469
|
@SubnetId.setter
|
@@ -1195,6 +1472,10 @@ class Network(AbstractModel):
|
|
1195
1472
|
|
1196
1473
|
@property
|
1197
1474
|
def Vip(self):
|
1475
|
+
"""内网访问IP。
|
1476
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1477
|
+
:rtype: str
|
1478
|
+
"""
|
1198
1479
|
return self._Vip
|
1199
1480
|
|
1200
1481
|
@Vip.setter
|
@@ -1203,6 +1484,10 @@ class Network(AbstractModel):
|
|
1203
1484
|
|
1204
1485
|
@property
|
1205
1486
|
def Port(self):
|
1487
|
+
"""内网访问Port。
|
1488
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1489
|
+
:rtype: int
|
1490
|
+
"""
|
1206
1491
|
return self._Port
|
1207
1492
|
|
1208
1493
|
@Port.setter
|
@@ -1240,6 +1525,10 @@ class NodeInfo(AbstractModel):
|
|
1240
1525
|
|
1241
1526
|
@property
|
1242
1527
|
def Name(self):
|
1528
|
+
"""Pod名称。
|
1529
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1530
|
+
:rtype: str
|
1531
|
+
"""
|
1243
1532
|
return self._Name
|
1244
1533
|
|
1245
1534
|
@Name.setter
|
@@ -1294,6 +1583,9 @@ class Outbound(AbstractModel):
|
|
1294
1583
|
|
1295
1584
|
@property
|
1296
1585
|
def Action(self):
|
1586
|
+
"""策略,ACCEPT或者DROP。
|
1587
|
+
:rtype: str
|
1588
|
+
"""
|
1297
1589
|
return self._Action
|
1298
1590
|
|
1299
1591
|
@Action.setter
|
@@ -1302,6 +1594,9 @@ class Outbound(AbstractModel):
|
|
1302
1594
|
|
1303
1595
|
@property
|
1304
1596
|
def AddressModule(self):
|
1597
|
+
"""地址组id代表的地址集合。
|
1598
|
+
:rtype: str
|
1599
|
+
"""
|
1305
1600
|
return self._AddressModule
|
1306
1601
|
|
1307
1602
|
@AddressModule.setter
|
@@ -1310,6 +1605,9 @@ class Outbound(AbstractModel):
|
|
1310
1605
|
|
1311
1606
|
@property
|
1312
1607
|
def CidrIp(self):
|
1608
|
+
"""来源Ip或Ip段,例如192.168.0.0/16。
|
1609
|
+
:rtype: str
|
1610
|
+
"""
|
1313
1611
|
return self._CidrIp
|
1314
1612
|
|
1315
1613
|
@CidrIp.setter
|
@@ -1318,6 +1616,9 @@ class Outbound(AbstractModel):
|
|
1318
1616
|
|
1319
1617
|
@property
|
1320
1618
|
def Desc(self):
|
1619
|
+
"""描述。
|
1620
|
+
:rtype: str
|
1621
|
+
"""
|
1321
1622
|
return self._Desc
|
1322
1623
|
|
1323
1624
|
@Desc.setter
|
@@ -1326,6 +1627,9 @@ class Outbound(AbstractModel):
|
|
1326
1627
|
|
1327
1628
|
@property
|
1328
1629
|
def IpProtocol(self):
|
1630
|
+
"""网络协议,支持udp、tcp等。
|
1631
|
+
:rtype: str
|
1632
|
+
"""
|
1329
1633
|
return self._IpProtocol
|
1330
1634
|
|
1331
1635
|
@IpProtocol.setter
|
@@ -1334,6 +1638,9 @@ class Outbound(AbstractModel):
|
|
1334
1638
|
|
1335
1639
|
@property
|
1336
1640
|
def PortRange(self):
|
1641
|
+
"""端口。
|
1642
|
+
:rtype: str
|
1643
|
+
"""
|
1337
1644
|
return self._PortRange
|
1338
1645
|
|
1339
1646
|
@PortRange.setter
|
@@ -1342,6 +1649,9 @@ class Outbound(AbstractModel):
|
|
1342
1649
|
|
1343
1650
|
@property
|
1344
1651
|
def ServiceModule(self):
|
1652
|
+
"""服务组id代表的协议和端口集合。
|
1653
|
+
:rtype: str
|
1654
|
+
"""
|
1345
1655
|
return self._ServiceModule
|
1346
1656
|
|
1347
1657
|
@ServiceModule.setter
|
@@ -1350,6 +1660,9 @@ class Outbound(AbstractModel):
|
|
1350
1660
|
|
1351
1661
|
@property
|
1352
1662
|
def Id(self):
|
1663
|
+
"""安全组id代表的地址集合。
|
1664
|
+
:rtype: str
|
1665
|
+
"""
|
1353
1666
|
return self._Id
|
1354
1667
|
|
1355
1668
|
@Id.setter
|
@@ -1411,6 +1724,9 @@ class SecurityGroup(AbstractModel):
|
|
1411
1724
|
|
1412
1725
|
@property
|
1413
1726
|
def CreateTime(self):
|
1727
|
+
"""创建时间,时间格式:yyyy-mm-dd hh:mm:ss。
|
1728
|
+
:rtype: str
|
1729
|
+
"""
|
1414
1730
|
return self._CreateTime
|
1415
1731
|
|
1416
1732
|
@CreateTime.setter
|
@@ -1419,6 +1735,9 @@ class SecurityGroup(AbstractModel):
|
|
1419
1735
|
|
1420
1736
|
@property
|
1421
1737
|
def ProjectId(self):
|
1738
|
+
"""项目ID。
|
1739
|
+
:rtype: str
|
1740
|
+
"""
|
1422
1741
|
return self._ProjectId
|
1423
1742
|
|
1424
1743
|
@ProjectId.setter
|
@@ -1427,6 +1746,9 @@ class SecurityGroup(AbstractModel):
|
|
1427
1746
|
|
1428
1747
|
@property
|
1429
1748
|
def SecurityGroupId(self):
|
1749
|
+
"""安全组ID。
|
1750
|
+
:rtype: str
|
1751
|
+
"""
|
1430
1752
|
return self._SecurityGroupId
|
1431
1753
|
|
1432
1754
|
@SecurityGroupId.setter
|
@@ -1435,6 +1757,9 @@ class SecurityGroup(AbstractModel):
|
|
1435
1757
|
|
1436
1758
|
@property
|
1437
1759
|
def SecurityGroupName(self):
|
1760
|
+
"""安全组名称。
|
1761
|
+
:rtype: str
|
1762
|
+
"""
|
1438
1763
|
return self._SecurityGroupName
|
1439
1764
|
|
1440
1765
|
@SecurityGroupName.setter
|
@@ -1443,6 +1768,9 @@ class SecurityGroup(AbstractModel):
|
|
1443
1768
|
|
1444
1769
|
@property
|
1445
1770
|
def SecurityGroupRemark(self):
|
1771
|
+
"""安全组备注。
|
1772
|
+
:rtype: str
|
1773
|
+
"""
|
1446
1774
|
return self._SecurityGroupRemark
|
1447
1775
|
|
1448
1776
|
@SecurityGroupRemark.setter
|
@@ -1451,6 +1779,9 @@ class SecurityGroup(AbstractModel):
|
|
1451
1779
|
|
1452
1780
|
@property
|
1453
1781
|
def Outbound(self):
|
1782
|
+
"""出站规则。
|
1783
|
+
:rtype: list of Outbound
|
1784
|
+
"""
|
1454
1785
|
return self._Outbound
|
1455
1786
|
|
1456
1787
|
@Outbound.setter
|
@@ -1459,6 +1790,9 @@ class SecurityGroup(AbstractModel):
|
|
1459
1790
|
|
1460
1791
|
@property
|
1461
1792
|
def Inbound(self):
|
1793
|
+
"""入站规则。
|
1794
|
+
:rtype: list of Inbound
|
1795
|
+
"""
|
1462
1796
|
return self._Inbound
|
1463
1797
|
|
1464
1798
|
@Inbound.setter
|
@@ -1467,6 +1801,9 @@ class SecurityGroup(AbstractModel):
|
|
1467
1801
|
|
1468
1802
|
@property
|
1469
1803
|
def UpdateTime(self):
|
1804
|
+
"""修改时间,时间格式:yyyy-mm-dd hh:mm:ss。
|
1805
|
+
:rtype: str
|
1806
|
+
"""
|
1470
1807
|
return self._UpdateTime
|
1471
1808
|
|
1472
1809
|
@UpdateTime.setter
|
@@ -1522,6 +1859,10 @@ class Tag(AbstractModel):
|
|
1522
1859
|
|
1523
1860
|
@property
|
1524
1861
|
def TagKey(self):
|
1862
|
+
"""标签键
|
1863
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1864
|
+
:rtype: str
|
1865
|
+
"""
|
1525
1866
|
return self._TagKey
|
1526
1867
|
|
1527
1868
|
@TagKey.setter
|
@@ -1530,6 +1871,10 @@ class Tag(AbstractModel):
|
|
1530
1871
|
|
1531
1872
|
@property
|
1532
1873
|
def TagValue(self):
|
1874
|
+
"""标签值
|
1875
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1876
|
+
:rtype: str
|
1877
|
+
"""
|
1533
1878
|
return self._TagValue
|
1534
1879
|
|
1535
1880
|
@TagValue.setter
|
@@ -1,10 +1,10 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tencentcloud-sdk-python-vdb
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1275
|
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
|
7
|
-
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
8
8
|
License: Apache License 2.0
|
9
9
|
Platform: any
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
@@ -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.1275)
|
19
19
|
|
20
20
|
============================
|
21
21
|
Tencent Cloud SDK for Python
|
@@ -0,0 +1,10 @@
|
|
1
|
+
tencentcloud/__init__.py,sha256=InhEbvQ1HK53D1ZozF4UudYd6myzQGP6Yng-JusZ1bY,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.1275.dist-info/METADATA,sha256=bmbRprImiIdQmh0mNm3-vkbwfdX2MhRETtaciMPAEK0,1496
|
8
|
+
tencentcloud_sdk_python_vdb-3.0.1275.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
+
tencentcloud_sdk_python_vdb-3.0.1275.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
+
tencentcloud_sdk_python_vdb-3.0.1275.dist-info/RECORD,,
|
@@ -1,10 +0,0 @@
|
|
1
|
-
tencentcloud/__init__.py,sha256=gVLzPeGyj_h2uaRThWoZCE8gMihKZDNQrHpJKN38bIQ,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=UHW7U6gyZD92huIPRWZ2jDZYlPdr9P17DE4K8BMdh6w,43895
|
6
|
-
tencentcloud/vdb/v20230616/vdb_client.py,sha256=VQuqL3skHxrsbMy7wt4_Ja3EaJcahb29zafYz-F9qnw,6684
|
7
|
-
tencentcloud_sdk_python_vdb-3.0.1231.dist-info/METADATA,sha256=JxhEJtMNfD3fUCgHgRvGsMkEkaPn4mqJzd1bpTXuUco,1492
|
8
|
-
tencentcloud_sdk_python_vdb-3.0.1231.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
-
tencentcloud_sdk_python_vdb-3.0.1231.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
-
tencentcloud_sdk_python_vdb-3.0.1231.dist-info/RECORD,,
|
File without changes
|
File without changes
|