tencentcloud-sdk-python-vdb 3.0.1262__py2.py3-none-any.whl → 3.0.1278__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 +365 -0
- {tencentcloud_sdk_python_vdb-3.0.1262.dist-info → tencentcloud_sdk_python_vdb-3.0.1278.dist-info}/METADATA +3 -3
- tencentcloud_sdk_python_vdb-3.0.1278.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_vdb-3.0.1262.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_vdb-3.0.1262.dist-info → tencentcloud_sdk_python_vdb-3.0.1278.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_vdb-3.0.1262.dist-info → tencentcloud_sdk_python_vdb-3.0.1278.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
|
@@ -187,6 +206,9 @@ class DescribeInstanceNodesRequest(AbstractModel):
|
|
187
206
|
|
188
207
|
@property
|
189
208
|
def InstanceId(self):
|
209
|
+
"""实例ID。
|
210
|
+
:rtype: str
|
211
|
+
"""
|
190
212
|
return self._InstanceId
|
191
213
|
|
192
214
|
@InstanceId.setter
|
@@ -195,6 +217,9 @@ class DescribeInstanceNodesRequest(AbstractModel):
|
|
195
217
|
|
196
218
|
@property
|
197
219
|
def Limit(self):
|
220
|
+
"""limit
|
221
|
+
:rtype: int
|
222
|
+
"""
|
198
223
|
return self._Limit
|
199
224
|
|
200
225
|
@Limit.setter
|
@@ -203,6 +228,9 @@ class DescribeInstanceNodesRequest(AbstractModel):
|
|
203
228
|
|
204
229
|
@property
|
205
230
|
def Offset(self):
|
231
|
+
"""offset
|
232
|
+
:rtype: int
|
233
|
+
"""
|
206
234
|
return self._Offset
|
207
235
|
|
208
236
|
@Offset.setter
|
@@ -211,6 +239,9 @@ class DescribeInstanceNodesRequest(AbstractModel):
|
|
211
239
|
|
212
240
|
@property
|
213
241
|
def Component(self):
|
242
|
+
"""component
|
243
|
+
:rtype: str
|
244
|
+
"""
|
214
245
|
return self._Component
|
215
246
|
|
216
247
|
@Component.setter
|
@@ -254,6 +285,10 @@ class DescribeInstanceNodesResponse(AbstractModel):
|
|
254
285
|
|
255
286
|
@property
|
256
287
|
def Items(self):
|
288
|
+
"""实例pod列表。
|
289
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
290
|
+
:rtype: list of NodeInfo
|
291
|
+
"""
|
257
292
|
return self._Items
|
258
293
|
|
259
294
|
@Items.setter
|
@@ -262,6 +297,9 @@ class DescribeInstanceNodesResponse(AbstractModel):
|
|
262
297
|
|
263
298
|
@property
|
264
299
|
def TotalCount(self):
|
300
|
+
"""查询结果总数量。
|
301
|
+
:rtype: int
|
302
|
+
"""
|
265
303
|
return self._TotalCount
|
266
304
|
|
267
305
|
@TotalCount.setter
|
@@ -270,6 +308,9 @@ class DescribeInstanceNodesResponse(AbstractModel):
|
|
270
308
|
|
271
309
|
@property
|
272
310
|
def RequestId(self):
|
311
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
312
|
+
:rtype: str
|
313
|
+
"""
|
273
314
|
return self._RequestId
|
274
315
|
|
275
316
|
@RequestId.setter
|
@@ -307,6 +348,8 @@ class DescribeInstancesRequest(AbstractModel):
|
|
307
348
|
:type EngineNames: list of str
|
308
349
|
:param _EngineVersions: 按照版本筛选实例。
|
309
350
|
:type EngineVersions: list of str
|
351
|
+
:param _ApiVersions: 按照api版本筛选实例
|
352
|
+
:type ApiVersions: list of str
|
310
353
|
:param _CreateAt: 按照创建时间筛选实例。
|
311
354
|
:type CreateAt: str
|
312
355
|
:param _Zones: 按照可用区筛选实例。
|
@@ -328,6 +371,7 @@ class DescribeInstancesRequest(AbstractModel):
|
|
328
371
|
self._Status = None
|
329
372
|
self._EngineNames = None
|
330
373
|
self._EngineVersions = None
|
374
|
+
self._ApiVersions = None
|
331
375
|
self._CreateAt = None
|
332
376
|
self._Zones = None
|
333
377
|
self._OrderBy = None
|
@@ -338,6 +382,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
338
382
|
|
339
383
|
@property
|
340
384
|
def InstanceIds(self):
|
385
|
+
"""实例ID数组。
|
386
|
+
:rtype: list of str
|
387
|
+
"""
|
341
388
|
return self._InstanceIds
|
342
389
|
|
343
390
|
@InstanceIds.setter
|
@@ -346,6 +393,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
346
393
|
|
347
394
|
@property
|
348
395
|
def InstanceNames(self):
|
396
|
+
"""实例名称,支持模糊搜索。
|
397
|
+
:rtype: list of str
|
398
|
+
"""
|
349
399
|
return self._InstanceNames
|
350
400
|
|
351
401
|
@InstanceNames.setter
|
@@ -354,6 +404,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
354
404
|
|
355
405
|
@property
|
356
406
|
def InstanceKeys(self):
|
407
|
+
"""实例模糊搜索字段。
|
408
|
+
:rtype: list of str
|
409
|
+
"""
|
357
410
|
return self._InstanceKeys
|
358
411
|
|
359
412
|
@InstanceKeys.setter
|
@@ -362,6 +415,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
362
415
|
|
363
416
|
@property
|
364
417
|
def Status(self):
|
418
|
+
"""根据状态获取实例, 为空则获取全部非隔离和非下线的实例。
|
419
|
+
:rtype: list of str
|
420
|
+
"""
|
365
421
|
return self._Status
|
366
422
|
|
367
423
|
@Status.setter
|
@@ -370,6 +426,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
370
426
|
|
371
427
|
@property
|
372
428
|
def EngineNames(self):
|
429
|
+
"""按照引擎筛选实例。
|
430
|
+
:rtype: list of str
|
431
|
+
"""
|
373
432
|
return self._EngineNames
|
374
433
|
|
375
434
|
@EngineNames.setter
|
@@ -378,14 +437,31 @@ class DescribeInstancesRequest(AbstractModel):
|
|
378
437
|
|
379
438
|
@property
|
380
439
|
def EngineVersions(self):
|
440
|
+
"""按照版本筛选实例。
|
441
|
+
:rtype: list of str
|
442
|
+
"""
|
381
443
|
return self._EngineVersions
|
382
444
|
|
383
445
|
@EngineVersions.setter
|
384
446
|
def EngineVersions(self, EngineVersions):
|
385
447
|
self._EngineVersions = EngineVersions
|
386
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
|
+
|
387
460
|
@property
|
388
461
|
def CreateAt(self):
|
462
|
+
"""按照创建时间筛选实例。
|
463
|
+
:rtype: str
|
464
|
+
"""
|
389
465
|
return self._CreateAt
|
390
466
|
|
391
467
|
@CreateAt.setter
|
@@ -394,6 +470,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
394
470
|
|
395
471
|
@property
|
396
472
|
def Zones(self):
|
473
|
+
"""按照可用区筛选实例。
|
474
|
+
:rtype: list of str
|
475
|
+
"""
|
397
476
|
return self._Zones
|
398
477
|
|
399
478
|
@Zones.setter
|
@@ -402,6 +481,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
402
481
|
|
403
482
|
@property
|
404
483
|
def OrderBy(self):
|
484
|
+
"""排序字段。
|
485
|
+
:rtype: str
|
486
|
+
"""
|
405
487
|
return self._OrderBy
|
406
488
|
|
407
489
|
@OrderBy.setter
|
@@ -410,6 +492,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
410
492
|
|
411
493
|
@property
|
412
494
|
def OrderDirection(self):
|
495
|
+
"""排序方式。
|
496
|
+
:rtype: str
|
497
|
+
"""
|
413
498
|
return self._OrderDirection
|
414
499
|
|
415
500
|
@OrderDirection.setter
|
@@ -418,6 +503,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
418
503
|
|
419
504
|
@property
|
420
505
|
def Offset(self):
|
506
|
+
"""查询开始位置。
|
507
|
+
:rtype: int
|
508
|
+
"""
|
421
509
|
return self._Offset
|
422
510
|
|
423
511
|
@Offset.setter
|
@@ -426,6 +514,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
426
514
|
|
427
515
|
@property
|
428
516
|
def Limit(self):
|
517
|
+
"""列表查询数量。
|
518
|
+
:rtype: int
|
519
|
+
"""
|
429
520
|
return self._Limit
|
430
521
|
|
431
522
|
@Limit.setter
|
@@ -434,6 +525,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
434
525
|
|
435
526
|
@property
|
436
527
|
def ResourceTags(self):
|
528
|
+
"""按照标签筛选实例
|
529
|
+
:rtype: list of Tag
|
530
|
+
"""
|
437
531
|
return self._ResourceTags
|
438
532
|
|
439
533
|
@ResourceTags.setter
|
@@ -448,6 +542,7 @@ class DescribeInstancesRequest(AbstractModel):
|
|
448
542
|
self._Status = params.get("Status")
|
449
543
|
self._EngineNames = params.get("EngineNames")
|
450
544
|
self._EngineVersions = params.get("EngineVersions")
|
545
|
+
self._ApiVersions = params.get("ApiVersions")
|
451
546
|
self._CreateAt = params.get("CreateAt")
|
452
547
|
self._Zones = params.get("Zones")
|
453
548
|
self._OrderBy = params.get("OrderBy")
|
@@ -491,6 +586,10 @@ class DescribeInstancesResponse(AbstractModel):
|
|
491
586
|
|
492
587
|
@property
|
493
588
|
def Items(self):
|
589
|
+
"""实例列表。
|
590
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
591
|
+
:rtype: list of InstanceInfo
|
592
|
+
"""
|
494
593
|
return self._Items
|
495
594
|
|
496
595
|
@Items.setter
|
@@ -499,6 +598,9 @@ class DescribeInstancesResponse(AbstractModel):
|
|
499
598
|
|
500
599
|
@property
|
501
600
|
def TotalCount(self):
|
601
|
+
"""实例总数。
|
602
|
+
:rtype: int
|
603
|
+
"""
|
502
604
|
return self._TotalCount
|
503
605
|
|
504
606
|
@TotalCount.setter
|
@@ -507,6 +609,9 @@ class DescribeInstancesResponse(AbstractModel):
|
|
507
609
|
|
508
610
|
@property
|
509
611
|
def RequestId(self):
|
612
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
613
|
+
:rtype: str
|
614
|
+
"""
|
510
615
|
return self._RequestId
|
511
616
|
|
512
617
|
@RequestId.setter
|
@@ -542,6 +647,9 @@ class DisassociateSecurityGroupsRequest(AbstractModel):
|
|
542
647
|
|
543
648
|
@property
|
544
649
|
def SecurityGroupIds(self):
|
650
|
+
"""要绑定的安全组 ID,类似sg-efil****。
|
651
|
+
:rtype: str
|
652
|
+
"""
|
545
653
|
return self._SecurityGroupIds
|
546
654
|
|
547
655
|
@SecurityGroupIds.setter
|
@@ -550,6 +658,9 @@ class DisassociateSecurityGroupsRequest(AbstractModel):
|
|
550
658
|
|
551
659
|
@property
|
552
660
|
def InstanceIds(self):
|
661
|
+
"""实例 ID,格式如:vdb-c1nl****,支持指定多个实例。
|
662
|
+
:rtype: list of str
|
663
|
+
"""
|
553
664
|
return self._InstanceIds
|
554
665
|
|
555
666
|
@InstanceIds.setter
|
@@ -584,6 +695,9 @@ class DisassociateSecurityGroupsResponse(AbstractModel):
|
|
584
695
|
|
585
696
|
@property
|
586
697
|
def RequestId(self):
|
698
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
699
|
+
:rtype: str
|
700
|
+
"""
|
587
701
|
return self._RequestId
|
588
702
|
|
589
703
|
@RequestId.setter
|
@@ -630,6 +744,9 @@ class Inbound(AbstractModel):
|
|
630
744
|
|
631
745
|
@property
|
632
746
|
def Action(self):
|
747
|
+
"""策略,ACCEPT或者DROP。
|
748
|
+
:rtype: str
|
749
|
+
"""
|
633
750
|
return self._Action
|
634
751
|
|
635
752
|
@Action.setter
|
@@ -638,6 +755,9 @@ class Inbound(AbstractModel):
|
|
638
755
|
|
639
756
|
@property
|
640
757
|
def AddressModule(self):
|
758
|
+
"""地址组id代表的地址集合。
|
759
|
+
:rtype: str
|
760
|
+
"""
|
641
761
|
return self._AddressModule
|
642
762
|
|
643
763
|
@AddressModule.setter
|
@@ -646,6 +766,9 @@ class Inbound(AbstractModel):
|
|
646
766
|
|
647
767
|
@property
|
648
768
|
def CidrIp(self):
|
769
|
+
"""来源Ip或Ip段,例如192.168.0.0/16。
|
770
|
+
:rtype: str
|
771
|
+
"""
|
649
772
|
return self._CidrIp
|
650
773
|
|
651
774
|
@CidrIp.setter
|
@@ -654,6 +777,9 @@ class Inbound(AbstractModel):
|
|
654
777
|
|
655
778
|
@property
|
656
779
|
def Desc(self):
|
780
|
+
"""描述。
|
781
|
+
:rtype: str
|
782
|
+
"""
|
657
783
|
return self._Desc
|
658
784
|
|
659
785
|
@Desc.setter
|
@@ -662,6 +788,9 @@ class Inbound(AbstractModel):
|
|
662
788
|
|
663
789
|
@property
|
664
790
|
def IpProtocol(self):
|
791
|
+
"""网络协议,支持udp、tcp等。
|
792
|
+
:rtype: str
|
793
|
+
"""
|
665
794
|
return self._IpProtocol
|
666
795
|
|
667
796
|
@IpProtocol.setter
|
@@ -670,6 +799,9 @@ class Inbound(AbstractModel):
|
|
670
799
|
|
671
800
|
@property
|
672
801
|
def PortRange(self):
|
802
|
+
"""端口。
|
803
|
+
:rtype: str
|
804
|
+
"""
|
673
805
|
return self._PortRange
|
674
806
|
|
675
807
|
@PortRange.setter
|
@@ -678,6 +810,9 @@ class Inbound(AbstractModel):
|
|
678
810
|
|
679
811
|
@property
|
680
812
|
def ServiceModule(self):
|
813
|
+
"""服务组id代表的协议和端口集合。
|
814
|
+
:rtype: str
|
815
|
+
"""
|
681
816
|
return self._ServiceModule
|
682
817
|
|
683
818
|
@ServiceModule.setter
|
@@ -686,6 +821,9 @@ class Inbound(AbstractModel):
|
|
686
821
|
|
687
822
|
@property
|
688
823
|
def Id(self):
|
824
|
+
"""安全组id代表的地址集合。
|
825
|
+
:rtype: str
|
826
|
+
"""
|
689
827
|
return self._Id
|
690
828
|
|
691
829
|
@Id.setter
|
@@ -835,6 +973,10 @@ class InstanceInfo(AbstractModel):
|
|
835
973
|
|
836
974
|
@property
|
837
975
|
def InstanceId(self):
|
976
|
+
"""实例ID。
|
977
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
978
|
+
:rtype: str
|
979
|
+
"""
|
838
980
|
return self._InstanceId
|
839
981
|
|
840
982
|
@InstanceId.setter
|
@@ -843,6 +985,10 @@ class InstanceInfo(AbstractModel):
|
|
843
985
|
|
844
986
|
@property
|
845
987
|
def Name(self):
|
988
|
+
"""实例自定义名称。
|
989
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
990
|
+
:rtype: str
|
991
|
+
"""
|
846
992
|
return self._Name
|
847
993
|
|
848
994
|
@Name.setter
|
@@ -851,6 +997,10 @@ class InstanceInfo(AbstractModel):
|
|
851
997
|
|
852
998
|
@property
|
853
999
|
def AppId(self):
|
1000
|
+
"""用户APPID。
|
1001
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1002
|
+
:rtype: int
|
1003
|
+
"""
|
854
1004
|
return self._AppId
|
855
1005
|
|
856
1006
|
@AppId.setter
|
@@ -859,6 +1009,10 @@ class InstanceInfo(AbstractModel):
|
|
859
1009
|
|
860
1010
|
@property
|
861
1011
|
def Region(self):
|
1012
|
+
"""地域。
|
1013
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1014
|
+
:rtype: str
|
1015
|
+
"""
|
862
1016
|
return self._Region
|
863
1017
|
|
864
1018
|
@Region.setter
|
@@ -867,6 +1021,10 @@ class InstanceInfo(AbstractModel):
|
|
867
1021
|
|
868
1022
|
@property
|
869
1023
|
def Zone(self):
|
1024
|
+
"""可用区。
|
1025
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1026
|
+
:rtype: str
|
1027
|
+
"""
|
870
1028
|
return self._Zone
|
871
1029
|
|
872
1030
|
@Zone.setter
|
@@ -875,6 +1033,10 @@ class InstanceInfo(AbstractModel):
|
|
875
1033
|
|
876
1034
|
@property
|
877
1035
|
def Product(self):
|
1036
|
+
"""产品。
|
1037
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1038
|
+
:rtype: str
|
1039
|
+
"""
|
878
1040
|
return self._Product
|
879
1041
|
|
880
1042
|
@Product.setter
|
@@ -883,6 +1045,10 @@ class InstanceInfo(AbstractModel):
|
|
883
1045
|
|
884
1046
|
@property
|
885
1047
|
def Networks(self):
|
1048
|
+
"""网络信息。
|
1049
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1050
|
+
:rtype: list of Network
|
1051
|
+
"""
|
886
1052
|
return self._Networks
|
887
1053
|
|
888
1054
|
@Networks.setter
|
@@ -891,6 +1057,10 @@ class InstanceInfo(AbstractModel):
|
|
891
1057
|
|
892
1058
|
@property
|
893
1059
|
def ShardNum(self):
|
1060
|
+
"""分片信息。
|
1061
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1062
|
+
:rtype: int
|
1063
|
+
"""
|
894
1064
|
return self._ShardNum
|
895
1065
|
|
896
1066
|
@ShardNum.setter
|
@@ -899,6 +1069,10 @@ class InstanceInfo(AbstractModel):
|
|
899
1069
|
|
900
1070
|
@property
|
901
1071
|
def ReplicaNum(self):
|
1072
|
+
"""副本数。
|
1073
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1074
|
+
:rtype: int
|
1075
|
+
"""
|
902
1076
|
return self._ReplicaNum
|
903
1077
|
|
904
1078
|
@ReplicaNum.setter
|
@@ -907,6 +1081,10 @@ class InstanceInfo(AbstractModel):
|
|
907
1081
|
|
908
1082
|
@property
|
909
1083
|
def Cpu(self):
|
1084
|
+
"""CPU.
|
1085
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1086
|
+
:rtype: float
|
1087
|
+
"""
|
910
1088
|
return self._Cpu
|
911
1089
|
|
912
1090
|
@Cpu.setter
|
@@ -915,6 +1093,10 @@ class InstanceInfo(AbstractModel):
|
|
915
1093
|
|
916
1094
|
@property
|
917
1095
|
def Memory(self):
|
1096
|
+
"""内存。
|
1097
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1098
|
+
:rtype: float
|
1099
|
+
"""
|
918
1100
|
return self._Memory
|
919
1101
|
|
920
1102
|
@Memory.setter
|
@@ -923,6 +1105,10 @@ class InstanceInfo(AbstractModel):
|
|
923
1105
|
|
924
1106
|
@property
|
925
1107
|
def Disk(self):
|
1108
|
+
"""磁盘。
|
1109
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1110
|
+
:rtype: int
|
1111
|
+
"""
|
926
1112
|
return self._Disk
|
927
1113
|
|
928
1114
|
@Disk.setter
|
@@ -931,6 +1117,10 @@ class InstanceInfo(AbstractModel):
|
|
931
1117
|
|
932
1118
|
@property
|
933
1119
|
def HealthScore(self):
|
1120
|
+
"""健康得分。
|
1121
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1122
|
+
:rtype: float
|
1123
|
+
"""
|
934
1124
|
return self._HealthScore
|
935
1125
|
|
936
1126
|
@HealthScore.setter
|
@@ -939,6 +1129,10 @@ class InstanceInfo(AbstractModel):
|
|
939
1129
|
|
940
1130
|
@property
|
941
1131
|
def Warning(self):
|
1132
|
+
"""异常告警。
|
1133
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1134
|
+
:rtype: int
|
1135
|
+
"""
|
942
1136
|
return self._Warning
|
943
1137
|
|
944
1138
|
@Warning.setter
|
@@ -947,6 +1141,10 @@ class InstanceInfo(AbstractModel):
|
|
947
1141
|
|
948
1142
|
@property
|
949
1143
|
def Project(self):
|
1144
|
+
"""所属项目。
|
1145
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1146
|
+
:rtype: str
|
1147
|
+
"""
|
950
1148
|
return self._Project
|
951
1149
|
|
952
1150
|
@Project.setter
|
@@ -955,6 +1153,10 @@ class InstanceInfo(AbstractModel):
|
|
955
1153
|
|
956
1154
|
@property
|
957
1155
|
def ResourceTags(self):
|
1156
|
+
"""所属标签。
|
1157
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1158
|
+
:rtype: list of Tag
|
1159
|
+
"""
|
958
1160
|
return self._ResourceTags
|
959
1161
|
|
960
1162
|
@ResourceTags.setter
|
@@ -963,6 +1165,10 @@ class InstanceInfo(AbstractModel):
|
|
963
1165
|
|
964
1166
|
@property
|
965
1167
|
def CreatedAt(self):
|
1168
|
+
"""创建时间。
|
1169
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1170
|
+
:rtype: str
|
1171
|
+
"""
|
966
1172
|
return self._CreatedAt
|
967
1173
|
|
968
1174
|
@CreatedAt.setter
|
@@ -971,6 +1177,10 @@ class InstanceInfo(AbstractModel):
|
|
971
1177
|
|
972
1178
|
@property
|
973
1179
|
def Status(self):
|
1180
|
+
"""资源状态。
|
1181
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1182
|
+
:rtype: str
|
1183
|
+
"""
|
974
1184
|
return self._Status
|
975
1185
|
|
976
1186
|
@Status.setter
|
@@ -979,6 +1189,10 @@ class InstanceInfo(AbstractModel):
|
|
979
1189
|
|
980
1190
|
@property
|
981
1191
|
def EngineName(self):
|
1192
|
+
"""引擎名称。
|
1193
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1194
|
+
:rtype: str
|
1195
|
+
"""
|
982
1196
|
return self._EngineName
|
983
1197
|
|
984
1198
|
@EngineName.setter
|
@@ -987,6 +1201,10 @@ class InstanceInfo(AbstractModel):
|
|
987
1201
|
|
988
1202
|
@property
|
989
1203
|
def EngineVersion(self):
|
1204
|
+
"""引擎版本。
|
1205
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1206
|
+
:rtype: str
|
1207
|
+
"""
|
990
1208
|
return self._EngineVersion
|
991
1209
|
|
992
1210
|
@EngineVersion.setter
|
@@ -995,6 +1213,10 @@ class InstanceInfo(AbstractModel):
|
|
995
1213
|
|
996
1214
|
@property
|
997
1215
|
def ApiVersion(self):
|
1216
|
+
"""api版本
|
1217
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1218
|
+
:rtype: str
|
1219
|
+
"""
|
998
1220
|
return self._ApiVersion
|
999
1221
|
|
1000
1222
|
@ApiVersion.setter
|
@@ -1003,6 +1225,10 @@ class InstanceInfo(AbstractModel):
|
|
1003
1225
|
|
1004
1226
|
@property
|
1005
1227
|
def PayMode(self):
|
1228
|
+
"""计费模式。
|
1229
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1230
|
+
:rtype: int
|
1231
|
+
"""
|
1006
1232
|
return self._PayMode
|
1007
1233
|
|
1008
1234
|
@PayMode.setter
|
@@ -1011,6 +1237,10 @@ class InstanceInfo(AbstractModel):
|
|
1011
1237
|
|
1012
1238
|
@property
|
1013
1239
|
def Extend(self):
|
1240
|
+
"""差异化扩展信息, json格式。
|
1241
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1242
|
+
:rtype: str
|
1243
|
+
"""
|
1014
1244
|
return self._Extend
|
1015
1245
|
|
1016
1246
|
@Extend.setter
|
@@ -1019,6 +1249,10 @@ class InstanceInfo(AbstractModel):
|
|
1019
1249
|
|
1020
1250
|
@property
|
1021
1251
|
def ExpiredAt(self):
|
1252
|
+
"""过期时间。
|
1253
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1254
|
+
:rtype: str
|
1255
|
+
"""
|
1022
1256
|
return self._ExpiredAt
|
1023
1257
|
|
1024
1258
|
@ExpiredAt.setter
|
@@ -1027,6 +1261,10 @@ class InstanceInfo(AbstractModel):
|
|
1027
1261
|
|
1028
1262
|
@property
|
1029
1263
|
def IsNoExpired(self):
|
1264
|
+
"""是否不过期(永久)。
|
1265
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1266
|
+
:rtype: bool
|
1267
|
+
"""
|
1030
1268
|
return self._IsNoExpired
|
1031
1269
|
|
1032
1270
|
@IsNoExpired.setter
|
@@ -1035,6 +1273,10 @@ class InstanceInfo(AbstractModel):
|
|
1035
1273
|
|
1036
1274
|
@property
|
1037
1275
|
def WanAddress(self):
|
1276
|
+
"""外网地址。
|
1277
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1278
|
+
:rtype: str
|
1279
|
+
"""
|
1038
1280
|
return self._WanAddress
|
1039
1281
|
|
1040
1282
|
@WanAddress.setter
|
@@ -1043,6 +1285,10 @@ class InstanceInfo(AbstractModel):
|
|
1043
1285
|
|
1044
1286
|
@property
|
1045
1287
|
def IsolateAt(self):
|
1288
|
+
"""隔离时间
|
1289
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1290
|
+
:rtype: str
|
1291
|
+
"""
|
1046
1292
|
return self._IsolateAt
|
1047
1293
|
|
1048
1294
|
@IsolateAt.setter
|
@@ -1051,6 +1297,10 @@ class InstanceInfo(AbstractModel):
|
|
1051
1297
|
|
1052
1298
|
@property
|
1053
1299
|
def AutoRenew(self):
|
1300
|
+
"""是否自动续费。0: 不自动续费(可以支持特权不停服);1:自动续费;2:到期不续费.
|
1301
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1302
|
+
:rtype: int
|
1303
|
+
"""
|
1054
1304
|
return self._AutoRenew
|
1055
1305
|
|
1056
1306
|
@AutoRenew.setter
|
@@ -1124,6 +1374,9 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
1124
1374
|
|
1125
1375
|
@property
|
1126
1376
|
def SecurityGroupIds(self):
|
1377
|
+
"""要修改的安全组ID列表,一个或者多个安全组 ID 组成的数组。
|
1378
|
+
:rtype: list of str
|
1379
|
+
"""
|
1127
1380
|
return self._SecurityGroupIds
|
1128
1381
|
|
1129
1382
|
@SecurityGroupIds.setter
|
@@ -1132,6 +1385,9 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
1132
1385
|
|
1133
1386
|
@property
|
1134
1387
|
def InstanceIds(self):
|
1388
|
+
"""实例ID,格式如:vdb-c9s3****。
|
1389
|
+
:rtype: list of str
|
1390
|
+
"""
|
1135
1391
|
return self._InstanceIds
|
1136
1392
|
|
1137
1393
|
@InstanceIds.setter
|
@@ -1166,6 +1422,9 @@ class ModifyDBInstanceSecurityGroupsResponse(AbstractModel):
|
|
1166
1422
|
|
1167
1423
|
@property
|
1168
1424
|
def RequestId(self):
|
1425
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1426
|
+
:rtype: str
|
1427
|
+
"""
|
1169
1428
|
return self._RequestId
|
1170
1429
|
|
1171
1430
|
@RequestId.setter
|
@@ -1196,14 +1455,24 @@ class Network(AbstractModel):
|
|
1196
1455
|
:param _Port: 内网访问Port。
|
1197
1456
|
注意:此字段可能返回 null,表示取不到有效值。
|
1198
1457
|
:type Port: int
|
1458
|
+
:param _PreserveDuration: 旧 ip 保留时长,单位天
|
1459
|
+
:type PreserveDuration: int
|
1460
|
+
:param _ExpireTime: 旧 ip 到期时间
|
1461
|
+
:type ExpireTime: str
|
1199
1462
|
"""
|
1200
1463
|
self._VpcId = None
|
1201
1464
|
self._SubnetId = None
|
1202
1465
|
self._Vip = None
|
1203
1466
|
self._Port = None
|
1467
|
+
self._PreserveDuration = None
|
1468
|
+
self._ExpireTime = None
|
1204
1469
|
|
1205
1470
|
@property
|
1206
1471
|
def VpcId(self):
|
1472
|
+
"""VpcId(VPC网络下有效)
|
1473
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1474
|
+
:rtype: str
|
1475
|
+
"""
|
1207
1476
|
return self._VpcId
|
1208
1477
|
|
1209
1478
|
@VpcId.setter
|
@@ -1212,6 +1481,10 @@ class Network(AbstractModel):
|
|
1212
1481
|
|
1213
1482
|
@property
|
1214
1483
|
def SubnetId(self):
|
1484
|
+
"""子网Id(VPC网络下有效)。
|
1485
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1486
|
+
:rtype: str
|
1487
|
+
"""
|
1215
1488
|
return self._SubnetId
|
1216
1489
|
|
1217
1490
|
@SubnetId.setter
|
@@ -1220,6 +1493,10 @@ class Network(AbstractModel):
|
|
1220
1493
|
|
1221
1494
|
@property
|
1222
1495
|
def Vip(self):
|
1496
|
+
"""内网访问IP。
|
1497
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1498
|
+
:rtype: str
|
1499
|
+
"""
|
1223
1500
|
return self._Vip
|
1224
1501
|
|
1225
1502
|
@Vip.setter
|
@@ -1228,18 +1505,46 @@ class Network(AbstractModel):
|
|
1228
1505
|
|
1229
1506
|
@property
|
1230
1507
|
def Port(self):
|
1508
|
+
"""内网访问Port。
|
1509
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1510
|
+
:rtype: int
|
1511
|
+
"""
|
1231
1512
|
return self._Port
|
1232
1513
|
|
1233
1514
|
@Port.setter
|
1234
1515
|
def Port(self, Port):
|
1235
1516
|
self._Port = Port
|
1236
1517
|
|
1518
|
+
@property
|
1519
|
+
def PreserveDuration(self):
|
1520
|
+
"""旧 ip 保留时长,单位天
|
1521
|
+
:rtype: int
|
1522
|
+
"""
|
1523
|
+
return self._PreserveDuration
|
1524
|
+
|
1525
|
+
@PreserveDuration.setter
|
1526
|
+
def PreserveDuration(self, PreserveDuration):
|
1527
|
+
self._PreserveDuration = PreserveDuration
|
1528
|
+
|
1529
|
+
@property
|
1530
|
+
def ExpireTime(self):
|
1531
|
+
"""旧 ip 到期时间
|
1532
|
+
:rtype: str
|
1533
|
+
"""
|
1534
|
+
return self._ExpireTime
|
1535
|
+
|
1536
|
+
@ExpireTime.setter
|
1537
|
+
def ExpireTime(self, ExpireTime):
|
1538
|
+
self._ExpireTime = ExpireTime
|
1539
|
+
|
1237
1540
|
|
1238
1541
|
def _deserialize(self, params):
|
1239
1542
|
self._VpcId = params.get("VpcId")
|
1240
1543
|
self._SubnetId = params.get("SubnetId")
|
1241
1544
|
self._Vip = params.get("Vip")
|
1242
1545
|
self._Port = params.get("Port")
|
1546
|
+
self._PreserveDuration = params.get("PreserveDuration")
|
1547
|
+
self._ExpireTime = params.get("ExpireTime")
|
1243
1548
|
memeber_set = set(params.keys())
|
1244
1549
|
for name, value in vars(self).items():
|
1245
1550
|
property_name = name[1:]
|
@@ -1265,6 +1570,10 @@ class NodeInfo(AbstractModel):
|
|
1265
1570
|
|
1266
1571
|
@property
|
1267
1572
|
def Name(self):
|
1573
|
+
"""Pod名称。
|
1574
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1575
|
+
:rtype: str
|
1576
|
+
"""
|
1268
1577
|
return self._Name
|
1269
1578
|
|
1270
1579
|
@Name.setter
|
@@ -1319,6 +1628,9 @@ class Outbound(AbstractModel):
|
|
1319
1628
|
|
1320
1629
|
@property
|
1321
1630
|
def Action(self):
|
1631
|
+
"""策略,ACCEPT或者DROP。
|
1632
|
+
:rtype: str
|
1633
|
+
"""
|
1322
1634
|
return self._Action
|
1323
1635
|
|
1324
1636
|
@Action.setter
|
@@ -1327,6 +1639,9 @@ class Outbound(AbstractModel):
|
|
1327
1639
|
|
1328
1640
|
@property
|
1329
1641
|
def AddressModule(self):
|
1642
|
+
"""地址组id代表的地址集合。
|
1643
|
+
:rtype: str
|
1644
|
+
"""
|
1330
1645
|
return self._AddressModule
|
1331
1646
|
|
1332
1647
|
@AddressModule.setter
|
@@ -1335,6 +1650,9 @@ class Outbound(AbstractModel):
|
|
1335
1650
|
|
1336
1651
|
@property
|
1337
1652
|
def CidrIp(self):
|
1653
|
+
"""来源Ip或Ip段,例如192.168.0.0/16。
|
1654
|
+
:rtype: str
|
1655
|
+
"""
|
1338
1656
|
return self._CidrIp
|
1339
1657
|
|
1340
1658
|
@CidrIp.setter
|
@@ -1343,6 +1661,9 @@ class Outbound(AbstractModel):
|
|
1343
1661
|
|
1344
1662
|
@property
|
1345
1663
|
def Desc(self):
|
1664
|
+
"""描述。
|
1665
|
+
:rtype: str
|
1666
|
+
"""
|
1346
1667
|
return self._Desc
|
1347
1668
|
|
1348
1669
|
@Desc.setter
|
@@ -1351,6 +1672,9 @@ class Outbound(AbstractModel):
|
|
1351
1672
|
|
1352
1673
|
@property
|
1353
1674
|
def IpProtocol(self):
|
1675
|
+
"""网络协议,支持udp、tcp等。
|
1676
|
+
:rtype: str
|
1677
|
+
"""
|
1354
1678
|
return self._IpProtocol
|
1355
1679
|
|
1356
1680
|
@IpProtocol.setter
|
@@ -1359,6 +1683,9 @@ class Outbound(AbstractModel):
|
|
1359
1683
|
|
1360
1684
|
@property
|
1361
1685
|
def PortRange(self):
|
1686
|
+
"""端口。
|
1687
|
+
:rtype: str
|
1688
|
+
"""
|
1362
1689
|
return self._PortRange
|
1363
1690
|
|
1364
1691
|
@PortRange.setter
|
@@ -1367,6 +1694,9 @@ class Outbound(AbstractModel):
|
|
1367
1694
|
|
1368
1695
|
@property
|
1369
1696
|
def ServiceModule(self):
|
1697
|
+
"""服务组id代表的协议和端口集合。
|
1698
|
+
:rtype: str
|
1699
|
+
"""
|
1370
1700
|
return self._ServiceModule
|
1371
1701
|
|
1372
1702
|
@ServiceModule.setter
|
@@ -1375,6 +1705,9 @@ class Outbound(AbstractModel):
|
|
1375
1705
|
|
1376
1706
|
@property
|
1377
1707
|
def Id(self):
|
1708
|
+
"""安全组id代表的地址集合。
|
1709
|
+
:rtype: str
|
1710
|
+
"""
|
1378
1711
|
return self._Id
|
1379
1712
|
|
1380
1713
|
@Id.setter
|
@@ -1436,6 +1769,9 @@ class SecurityGroup(AbstractModel):
|
|
1436
1769
|
|
1437
1770
|
@property
|
1438
1771
|
def CreateTime(self):
|
1772
|
+
"""创建时间,时间格式:yyyy-mm-dd hh:mm:ss。
|
1773
|
+
:rtype: str
|
1774
|
+
"""
|
1439
1775
|
return self._CreateTime
|
1440
1776
|
|
1441
1777
|
@CreateTime.setter
|
@@ -1444,6 +1780,9 @@ class SecurityGroup(AbstractModel):
|
|
1444
1780
|
|
1445
1781
|
@property
|
1446
1782
|
def ProjectId(self):
|
1783
|
+
"""项目ID。
|
1784
|
+
:rtype: str
|
1785
|
+
"""
|
1447
1786
|
return self._ProjectId
|
1448
1787
|
|
1449
1788
|
@ProjectId.setter
|
@@ -1452,6 +1791,9 @@ class SecurityGroup(AbstractModel):
|
|
1452
1791
|
|
1453
1792
|
@property
|
1454
1793
|
def SecurityGroupId(self):
|
1794
|
+
"""安全组ID。
|
1795
|
+
:rtype: str
|
1796
|
+
"""
|
1455
1797
|
return self._SecurityGroupId
|
1456
1798
|
|
1457
1799
|
@SecurityGroupId.setter
|
@@ -1460,6 +1802,9 @@ class SecurityGroup(AbstractModel):
|
|
1460
1802
|
|
1461
1803
|
@property
|
1462
1804
|
def SecurityGroupName(self):
|
1805
|
+
"""安全组名称。
|
1806
|
+
:rtype: str
|
1807
|
+
"""
|
1463
1808
|
return self._SecurityGroupName
|
1464
1809
|
|
1465
1810
|
@SecurityGroupName.setter
|
@@ -1468,6 +1813,9 @@ class SecurityGroup(AbstractModel):
|
|
1468
1813
|
|
1469
1814
|
@property
|
1470
1815
|
def SecurityGroupRemark(self):
|
1816
|
+
"""安全组备注。
|
1817
|
+
:rtype: str
|
1818
|
+
"""
|
1471
1819
|
return self._SecurityGroupRemark
|
1472
1820
|
|
1473
1821
|
@SecurityGroupRemark.setter
|
@@ -1476,6 +1824,9 @@ class SecurityGroup(AbstractModel):
|
|
1476
1824
|
|
1477
1825
|
@property
|
1478
1826
|
def Outbound(self):
|
1827
|
+
"""出站规则。
|
1828
|
+
:rtype: list of Outbound
|
1829
|
+
"""
|
1479
1830
|
return self._Outbound
|
1480
1831
|
|
1481
1832
|
@Outbound.setter
|
@@ -1484,6 +1835,9 @@ class SecurityGroup(AbstractModel):
|
|
1484
1835
|
|
1485
1836
|
@property
|
1486
1837
|
def Inbound(self):
|
1838
|
+
"""入站规则。
|
1839
|
+
:rtype: list of Inbound
|
1840
|
+
"""
|
1487
1841
|
return self._Inbound
|
1488
1842
|
|
1489
1843
|
@Inbound.setter
|
@@ -1492,6 +1846,9 @@ class SecurityGroup(AbstractModel):
|
|
1492
1846
|
|
1493
1847
|
@property
|
1494
1848
|
def UpdateTime(self):
|
1849
|
+
"""修改时间,时间格式:yyyy-mm-dd hh:mm:ss。
|
1850
|
+
:rtype: str
|
1851
|
+
"""
|
1495
1852
|
return self._UpdateTime
|
1496
1853
|
|
1497
1854
|
@UpdateTime.setter
|
@@ -1547,6 +1904,10 @@ class Tag(AbstractModel):
|
|
1547
1904
|
|
1548
1905
|
@property
|
1549
1906
|
def TagKey(self):
|
1907
|
+
"""标签键
|
1908
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1909
|
+
:rtype: str
|
1910
|
+
"""
|
1550
1911
|
return self._TagKey
|
1551
1912
|
|
1552
1913
|
@TagKey.setter
|
@@ -1555,6 +1916,10 @@ class Tag(AbstractModel):
|
|
1555
1916
|
|
1556
1917
|
@property
|
1557
1918
|
def TagValue(self):
|
1919
|
+
"""标签值
|
1920
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1921
|
+
:rtype: str
|
1922
|
+
"""
|
1558
1923
|
return self._TagValue
|
1559
1924
|
|
1560
1925
|
@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.1278
|
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.1278)
|
19
19
|
|
20
20
|
============================
|
21
21
|
Tencent Cloud SDK for Python
|
@@ -0,0 +1,10 @@
|
|
1
|
+
tencentcloud/__init__.py,sha256=zR64hIn3-mescIjM9oq_7P0TGJfW5VA2yH4O0RFa2Yk,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=5R4cqt1n6jEYKcxHrnIYL4MK3lW0dZqe0-1hsTSMzTY,56233
|
6
|
+
tencentcloud/vdb/v20230616/vdb_client.py,sha256=VQuqL3skHxrsbMy7wt4_Ja3EaJcahb29zafYz-F9qnw,6684
|
7
|
+
tencentcloud_sdk_python_vdb-3.0.1278.dist-info/METADATA,sha256=Gu1QPUAHdKm8b_zd663k0mo_iPU7EQt4n396Q2Pa490,1496
|
8
|
+
tencentcloud_sdk_python_vdb-3.0.1278.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
+
tencentcloud_sdk_python_vdb-3.0.1278.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
+
tencentcloud_sdk_python_vdb-3.0.1278.dist-info/RECORD,,
|
@@ -1,10 +0,0 @@
|
|
1
|
-
tencentcloud/__init__.py,sha256=JO47jD_eepHAKej70Y-fA3gs-7A68dyrj2yskjk5iMw,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=0ixmsdjWe3byMW4Jah3eBMciHQnx1dNzDnG2qF1gL-o,44613
|
6
|
-
tencentcloud/vdb/v20230616/vdb_client.py,sha256=VQuqL3skHxrsbMy7wt4_Ja3EaJcahb29zafYz-F9qnw,6684
|
7
|
-
tencentcloud_sdk_python_vdb-3.0.1262.dist-info/METADATA,sha256=AyHts4WAdB4AXGckD-IiE6N3JSSk1FBel7ifnO5xpZ0,1492
|
8
|
-
tencentcloud_sdk_python_vdb-3.0.1262.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
-
tencentcloud_sdk_python_vdb-3.0.1262.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
-
tencentcloud_sdk_python_vdb-3.0.1262.dist-info/RECORD,,
|
File without changes
|
File without changes
|