tencentcloud-sdk-python-vdb 3.0.1234__py2.py3-none-any.whl → 3.0.1274__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 +333 -0
- {tencentcloud_sdk_python_vdb-3.0.1234.dist-info → tencentcloud_sdk_python_vdb-3.0.1274.dist-info}/METADATA +3 -3
- tencentcloud_sdk_python_vdb-3.0.1274.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_vdb-3.0.1234.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_vdb-3.0.1234.dist-info → tencentcloud_sdk_python_vdb-3.0.1274.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_vdb-3.0.1234.dist-info → tencentcloud_sdk_python_vdb-3.0.1274.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
|
|
@@ -338,6 +379,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
338
379
|
|
|
339
380
|
@property
|
|
340
381
|
def InstanceIds(self):
|
|
382
|
+
"""实例ID数组。
|
|
383
|
+
:rtype: list of str
|
|
384
|
+
"""
|
|
341
385
|
return self._InstanceIds
|
|
342
386
|
|
|
343
387
|
@InstanceIds.setter
|
|
@@ -346,6 +390,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
346
390
|
|
|
347
391
|
@property
|
|
348
392
|
def InstanceNames(self):
|
|
393
|
+
"""实例名称,支持模糊搜索。
|
|
394
|
+
:rtype: list of str
|
|
395
|
+
"""
|
|
349
396
|
return self._InstanceNames
|
|
350
397
|
|
|
351
398
|
@InstanceNames.setter
|
|
@@ -354,6 +401,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
354
401
|
|
|
355
402
|
@property
|
|
356
403
|
def InstanceKeys(self):
|
|
404
|
+
"""实例模糊搜索字段。
|
|
405
|
+
:rtype: list of str
|
|
406
|
+
"""
|
|
357
407
|
return self._InstanceKeys
|
|
358
408
|
|
|
359
409
|
@InstanceKeys.setter
|
|
@@ -362,6 +412,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
362
412
|
|
|
363
413
|
@property
|
|
364
414
|
def Status(self):
|
|
415
|
+
"""根据状态获取实例, 为空则获取全部非隔离和非下线的实例。
|
|
416
|
+
:rtype: list of str
|
|
417
|
+
"""
|
|
365
418
|
return self._Status
|
|
366
419
|
|
|
367
420
|
@Status.setter
|
|
@@ -370,6 +423,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
370
423
|
|
|
371
424
|
@property
|
|
372
425
|
def EngineNames(self):
|
|
426
|
+
"""按照引擎筛选实例。
|
|
427
|
+
:rtype: list of str
|
|
428
|
+
"""
|
|
373
429
|
return self._EngineNames
|
|
374
430
|
|
|
375
431
|
@EngineNames.setter
|
|
@@ -378,6 +434,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
378
434
|
|
|
379
435
|
@property
|
|
380
436
|
def EngineVersions(self):
|
|
437
|
+
"""按照版本筛选实例。
|
|
438
|
+
:rtype: list of str
|
|
439
|
+
"""
|
|
381
440
|
return self._EngineVersions
|
|
382
441
|
|
|
383
442
|
@EngineVersions.setter
|
|
@@ -386,6 +445,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
386
445
|
|
|
387
446
|
@property
|
|
388
447
|
def CreateAt(self):
|
|
448
|
+
"""按照创建时间筛选实例。
|
|
449
|
+
:rtype: str
|
|
450
|
+
"""
|
|
389
451
|
return self._CreateAt
|
|
390
452
|
|
|
391
453
|
@CreateAt.setter
|
|
@@ -394,6 +456,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
394
456
|
|
|
395
457
|
@property
|
|
396
458
|
def Zones(self):
|
|
459
|
+
"""按照可用区筛选实例。
|
|
460
|
+
:rtype: list of str
|
|
461
|
+
"""
|
|
397
462
|
return self._Zones
|
|
398
463
|
|
|
399
464
|
@Zones.setter
|
|
@@ -402,6 +467,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
402
467
|
|
|
403
468
|
@property
|
|
404
469
|
def OrderBy(self):
|
|
470
|
+
"""排序字段。
|
|
471
|
+
:rtype: str
|
|
472
|
+
"""
|
|
405
473
|
return self._OrderBy
|
|
406
474
|
|
|
407
475
|
@OrderBy.setter
|
|
@@ -410,6 +478,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
410
478
|
|
|
411
479
|
@property
|
|
412
480
|
def OrderDirection(self):
|
|
481
|
+
"""排序方式。
|
|
482
|
+
:rtype: str
|
|
483
|
+
"""
|
|
413
484
|
return self._OrderDirection
|
|
414
485
|
|
|
415
486
|
@OrderDirection.setter
|
|
@@ -418,6 +489,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
418
489
|
|
|
419
490
|
@property
|
|
420
491
|
def Offset(self):
|
|
492
|
+
"""查询开始位置。
|
|
493
|
+
:rtype: int
|
|
494
|
+
"""
|
|
421
495
|
return self._Offset
|
|
422
496
|
|
|
423
497
|
@Offset.setter
|
|
@@ -426,6 +500,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
426
500
|
|
|
427
501
|
@property
|
|
428
502
|
def Limit(self):
|
|
503
|
+
"""列表查询数量。
|
|
504
|
+
:rtype: int
|
|
505
|
+
"""
|
|
429
506
|
return self._Limit
|
|
430
507
|
|
|
431
508
|
@Limit.setter
|
|
@@ -434,6 +511,9 @@ class DescribeInstancesRequest(AbstractModel):
|
|
|
434
511
|
|
|
435
512
|
@property
|
|
436
513
|
def ResourceTags(self):
|
|
514
|
+
"""按照标签筛选实例
|
|
515
|
+
:rtype: list of Tag
|
|
516
|
+
"""
|
|
437
517
|
return self._ResourceTags
|
|
438
518
|
|
|
439
519
|
@ResourceTags.setter
|
|
@@ -491,6 +571,10 @@ class DescribeInstancesResponse(AbstractModel):
|
|
|
491
571
|
|
|
492
572
|
@property
|
|
493
573
|
def Items(self):
|
|
574
|
+
"""实例列表。
|
|
575
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
576
|
+
:rtype: list of InstanceInfo
|
|
577
|
+
"""
|
|
494
578
|
return self._Items
|
|
495
579
|
|
|
496
580
|
@Items.setter
|
|
@@ -499,6 +583,9 @@ class DescribeInstancesResponse(AbstractModel):
|
|
|
499
583
|
|
|
500
584
|
@property
|
|
501
585
|
def TotalCount(self):
|
|
586
|
+
"""实例总数。
|
|
587
|
+
:rtype: int
|
|
588
|
+
"""
|
|
502
589
|
return self._TotalCount
|
|
503
590
|
|
|
504
591
|
@TotalCount.setter
|
|
@@ -507,6 +594,9 @@ class DescribeInstancesResponse(AbstractModel):
|
|
|
507
594
|
|
|
508
595
|
@property
|
|
509
596
|
def RequestId(self):
|
|
597
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
598
|
+
:rtype: str
|
|
599
|
+
"""
|
|
510
600
|
return self._RequestId
|
|
511
601
|
|
|
512
602
|
@RequestId.setter
|
|
@@ -542,6 +632,9 @@ class DisassociateSecurityGroupsRequest(AbstractModel):
|
|
|
542
632
|
|
|
543
633
|
@property
|
|
544
634
|
def SecurityGroupIds(self):
|
|
635
|
+
"""要绑定的安全组 ID,类似sg-efil****。
|
|
636
|
+
:rtype: str
|
|
637
|
+
"""
|
|
545
638
|
return self._SecurityGroupIds
|
|
546
639
|
|
|
547
640
|
@SecurityGroupIds.setter
|
|
@@ -550,6 +643,9 @@ class DisassociateSecurityGroupsRequest(AbstractModel):
|
|
|
550
643
|
|
|
551
644
|
@property
|
|
552
645
|
def InstanceIds(self):
|
|
646
|
+
"""实例 ID,格式如:vdb-c1nl****,支持指定多个实例。
|
|
647
|
+
:rtype: list of str
|
|
648
|
+
"""
|
|
553
649
|
return self._InstanceIds
|
|
554
650
|
|
|
555
651
|
@InstanceIds.setter
|
|
@@ -584,6 +680,9 @@ class DisassociateSecurityGroupsResponse(AbstractModel):
|
|
|
584
680
|
|
|
585
681
|
@property
|
|
586
682
|
def RequestId(self):
|
|
683
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
684
|
+
:rtype: str
|
|
685
|
+
"""
|
|
587
686
|
return self._RequestId
|
|
588
687
|
|
|
589
688
|
@RequestId.setter
|
|
@@ -630,6 +729,9 @@ class Inbound(AbstractModel):
|
|
|
630
729
|
|
|
631
730
|
@property
|
|
632
731
|
def Action(self):
|
|
732
|
+
"""策略,ACCEPT或者DROP。
|
|
733
|
+
:rtype: str
|
|
734
|
+
"""
|
|
633
735
|
return self._Action
|
|
634
736
|
|
|
635
737
|
@Action.setter
|
|
@@ -638,6 +740,9 @@ class Inbound(AbstractModel):
|
|
|
638
740
|
|
|
639
741
|
@property
|
|
640
742
|
def AddressModule(self):
|
|
743
|
+
"""地址组id代表的地址集合。
|
|
744
|
+
:rtype: str
|
|
745
|
+
"""
|
|
641
746
|
return self._AddressModule
|
|
642
747
|
|
|
643
748
|
@AddressModule.setter
|
|
@@ -646,6 +751,9 @@ class Inbound(AbstractModel):
|
|
|
646
751
|
|
|
647
752
|
@property
|
|
648
753
|
def CidrIp(self):
|
|
754
|
+
"""来源Ip或Ip段,例如192.168.0.0/16。
|
|
755
|
+
:rtype: str
|
|
756
|
+
"""
|
|
649
757
|
return self._CidrIp
|
|
650
758
|
|
|
651
759
|
@CidrIp.setter
|
|
@@ -654,6 +762,9 @@ class Inbound(AbstractModel):
|
|
|
654
762
|
|
|
655
763
|
@property
|
|
656
764
|
def Desc(self):
|
|
765
|
+
"""描述。
|
|
766
|
+
:rtype: str
|
|
767
|
+
"""
|
|
657
768
|
return self._Desc
|
|
658
769
|
|
|
659
770
|
@Desc.setter
|
|
@@ -662,6 +773,9 @@ class Inbound(AbstractModel):
|
|
|
662
773
|
|
|
663
774
|
@property
|
|
664
775
|
def IpProtocol(self):
|
|
776
|
+
"""网络协议,支持udp、tcp等。
|
|
777
|
+
:rtype: str
|
|
778
|
+
"""
|
|
665
779
|
return self._IpProtocol
|
|
666
780
|
|
|
667
781
|
@IpProtocol.setter
|
|
@@ -670,6 +784,9 @@ class Inbound(AbstractModel):
|
|
|
670
784
|
|
|
671
785
|
@property
|
|
672
786
|
def PortRange(self):
|
|
787
|
+
"""端口。
|
|
788
|
+
:rtype: str
|
|
789
|
+
"""
|
|
673
790
|
return self._PortRange
|
|
674
791
|
|
|
675
792
|
@PortRange.setter
|
|
@@ -678,6 +795,9 @@ class Inbound(AbstractModel):
|
|
|
678
795
|
|
|
679
796
|
@property
|
|
680
797
|
def ServiceModule(self):
|
|
798
|
+
"""服务组id代表的协议和端口集合。
|
|
799
|
+
:rtype: str
|
|
800
|
+
"""
|
|
681
801
|
return self._ServiceModule
|
|
682
802
|
|
|
683
803
|
@ServiceModule.setter
|
|
@@ -686,6 +806,9 @@ class Inbound(AbstractModel):
|
|
|
686
806
|
|
|
687
807
|
@property
|
|
688
808
|
def Id(self):
|
|
809
|
+
"""安全组id代表的地址集合。
|
|
810
|
+
:rtype: str
|
|
811
|
+
"""
|
|
689
812
|
return self._Id
|
|
690
813
|
|
|
691
814
|
@Id.setter
|
|
@@ -779,6 +902,9 @@ class InstanceInfo(AbstractModel):
|
|
|
779
902
|
:param _EngineVersion: 引擎版本。
|
|
780
903
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
781
904
|
:type EngineVersion: str
|
|
905
|
+
:param _ApiVersion: api版本
|
|
906
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
907
|
+
:type ApiVersion: str
|
|
782
908
|
:param _PayMode: 计费模式。
|
|
783
909
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
784
910
|
:type PayMode: int
|
|
@@ -821,6 +947,7 @@ class InstanceInfo(AbstractModel):
|
|
|
821
947
|
self._Status = None
|
|
822
948
|
self._EngineName = None
|
|
823
949
|
self._EngineVersion = None
|
|
950
|
+
self._ApiVersion = None
|
|
824
951
|
self._PayMode = None
|
|
825
952
|
self._Extend = None
|
|
826
953
|
self._ExpiredAt = None
|
|
@@ -831,6 +958,10 @@ class InstanceInfo(AbstractModel):
|
|
|
831
958
|
|
|
832
959
|
@property
|
|
833
960
|
def InstanceId(self):
|
|
961
|
+
"""实例ID。
|
|
962
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
963
|
+
:rtype: str
|
|
964
|
+
"""
|
|
834
965
|
return self._InstanceId
|
|
835
966
|
|
|
836
967
|
@InstanceId.setter
|
|
@@ -839,6 +970,10 @@ class InstanceInfo(AbstractModel):
|
|
|
839
970
|
|
|
840
971
|
@property
|
|
841
972
|
def Name(self):
|
|
973
|
+
"""实例自定义名称。
|
|
974
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
975
|
+
:rtype: str
|
|
976
|
+
"""
|
|
842
977
|
return self._Name
|
|
843
978
|
|
|
844
979
|
@Name.setter
|
|
@@ -847,6 +982,10 @@ class InstanceInfo(AbstractModel):
|
|
|
847
982
|
|
|
848
983
|
@property
|
|
849
984
|
def AppId(self):
|
|
985
|
+
"""用户APPID。
|
|
986
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
987
|
+
:rtype: int
|
|
988
|
+
"""
|
|
850
989
|
return self._AppId
|
|
851
990
|
|
|
852
991
|
@AppId.setter
|
|
@@ -855,6 +994,10 @@ class InstanceInfo(AbstractModel):
|
|
|
855
994
|
|
|
856
995
|
@property
|
|
857
996
|
def Region(self):
|
|
997
|
+
"""地域。
|
|
998
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
999
|
+
:rtype: str
|
|
1000
|
+
"""
|
|
858
1001
|
return self._Region
|
|
859
1002
|
|
|
860
1003
|
@Region.setter
|
|
@@ -863,6 +1006,10 @@ class InstanceInfo(AbstractModel):
|
|
|
863
1006
|
|
|
864
1007
|
@property
|
|
865
1008
|
def Zone(self):
|
|
1009
|
+
"""可用区。
|
|
1010
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1011
|
+
:rtype: str
|
|
1012
|
+
"""
|
|
866
1013
|
return self._Zone
|
|
867
1014
|
|
|
868
1015
|
@Zone.setter
|
|
@@ -871,6 +1018,10 @@ class InstanceInfo(AbstractModel):
|
|
|
871
1018
|
|
|
872
1019
|
@property
|
|
873
1020
|
def Product(self):
|
|
1021
|
+
"""产品。
|
|
1022
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1023
|
+
:rtype: str
|
|
1024
|
+
"""
|
|
874
1025
|
return self._Product
|
|
875
1026
|
|
|
876
1027
|
@Product.setter
|
|
@@ -879,6 +1030,10 @@ class InstanceInfo(AbstractModel):
|
|
|
879
1030
|
|
|
880
1031
|
@property
|
|
881
1032
|
def Networks(self):
|
|
1033
|
+
"""网络信息。
|
|
1034
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1035
|
+
:rtype: list of Network
|
|
1036
|
+
"""
|
|
882
1037
|
return self._Networks
|
|
883
1038
|
|
|
884
1039
|
@Networks.setter
|
|
@@ -887,6 +1042,10 @@ class InstanceInfo(AbstractModel):
|
|
|
887
1042
|
|
|
888
1043
|
@property
|
|
889
1044
|
def ShardNum(self):
|
|
1045
|
+
"""分片信息。
|
|
1046
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1047
|
+
:rtype: int
|
|
1048
|
+
"""
|
|
890
1049
|
return self._ShardNum
|
|
891
1050
|
|
|
892
1051
|
@ShardNum.setter
|
|
@@ -895,6 +1054,10 @@ class InstanceInfo(AbstractModel):
|
|
|
895
1054
|
|
|
896
1055
|
@property
|
|
897
1056
|
def ReplicaNum(self):
|
|
1057
|
+
"""副本数。
|
|
1058
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1059
|
+
:rtype: int
|
|
1060
|
+
"""
|
|
898
1061
|
return self._ReplicaNum
|
|
899
1062
|
|
|
900
1063
|
@ReplicaNum.setter
|
|
@@ -903,6 +1066,10 @@ class InstanceInfo(AbstractModel):
|
|
|
903
1066
|
|
|
904
1067
|
@property
|
|
905
1068
|
def Cpu(self):
|
|
1069
|
+
"""CPU.
|
|
1070
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1071
|
+
:rtype: float
|
|
1072
|
+
"""
|
|
906
1073
|
return self._Cpu
|
|
907
1074
|
|
|
908
1075
|
@Cpu.setter
|
|
@@ -911,6 +1078,10 @@ class InstanceInfo(AbstractModel):
|
|
|
911
1078
|
|
|
912
1079
|
@property
|
|
913
1080
|
def Memory(self):
|
|
1081
|
+
"""内存。
|
|
1082
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1083
|
+
:rtype: float
|
|
1084
|
+
"""
|
|
914
1085
|
return self._Memory
|
|
915
1086
|
|
|
916
1087
|
@Memory.setter
|
|
@@ -919,6 +1090,10 @@ class InstanceInfo(AbstractModel):
|
|
|
919
1090
|
|
|
920
1091
|
@property
|
|
921
1092
|
def Disk(self):
|
|
1093
|
+
"""磁盘。
|
|
1094
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1095
|
+
:rtype: int
|
|
1096
|
+
"""
|
|
922
1097
|
return self._Disk
|
|
923
1098
|
|
|
924
1099
|
@Disk.setter
|
|
@@ -927,6 +1102,10 @@ class InstanceInfo(AbstractModel):
|
|
|
927
1102
|
|
|
928
1103
|
@property
|
|
929
1104
|
def HealthScore(self):
|
|
1105
|
+
"""健康得分。
|
|
1106
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1107
|
+
:rtype: float
|
|
1108
|
+
"""
|
|
930
1109
|
return self._HealthScore
|
|
931
1110
|
|
|
932
1111
|
@HealthScore.setter
|
|
@@ -935,6 +1114,10 @@ class InstanceInfo(AbstractModel):
|
|
|
935
1114
|
|
|
936
1115
|
@property
|
|
937
1116
|
def Warning(self):
|
|
1117
|
+
"""异常告警。
|
|
1118
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1119
|
+
:rtype: int
|
|
1120
|
+
"""
|
|
938
1121
|
return self._Warning
|
|
939
1122
|
|
|
940
1123
|
@Warning.setter
|
|
@@ -943,6 +1126,10 @@ class InstanceInfo(AbstractModel):
|
|
|
943
1126
|
|
|
944
1127
|
@property
|
|
945
1128
|
def Project(self):
|
|
1129
|
+
"""所属项目。
|
|
1130
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1131
|
+
:rtype: str
|
|
1132
|
+
"""
|
|
946
1133
|
return self._Project
|
|
947
1134
|
|
|
948
1135
|
@Project.setter
|
|
@@ -951,6 +1138,10 @@ class InstanceInfo(AbstractModel):
|
|
|
951
1138
|
|
|
952
1139
|
@property
|
|
953
1140
|
def ResourceTags(self):
|
|
1141
|
+
"""所属标签。
|
|
1142
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1143
|
+
:rtype: list of Tag
|
|
1144
|
+
"""
|
|
954
1145
|
return self._ResourceTags
|
|
955
1146
|
|
|
956
1147
|
@ResourceTags.setter
|
|
@@ -959,6 +1150,10 @@ class InstanceInfo(AbstractModel):
|
|
|
959
1150
|
|
|
960
1151
|
@property
|
|
961
1152
|
def CreatedAt(self):
|
|
1153
|
+
"""创建时间。
|
|
1154
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1155
|
+
:rtype: str
|
|
1156
|
+
"""
|
|
962
1157
|
return self._CreatedAt
|
|
963
1158
|
|
|
964
1159
|
@CreatedAt.setter
|
|
@@ -967,6 +1162,10 @@ class InstanceInfo(AbstractModel):
|
|
|
967
1162
|
|
|
968
1163
|
@property
|
|
969
1164
|
def Status(self):
|
|
1165
|
+
"""资源状态。
|
|
1166
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1167
|
+
:rtype: str
|
|
1168
|
+
"""
|
|
970
1169
|
return self._Status
|
|
971
1170
|
|
|
972
1171
|
@Status.setter
|
|
@@ -975,6 +1174,10 @@ class InstanceInfo(AbstractModel):
|
|
|
975
1174
|
|
|
976
1175
|
@property
|
|
977
1176
|
def EngineName(self):
|
|
1177
|
+
"""引擎名称。
|
|
1178
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1179
|
+
:rtype: str
|
|
1180
|
+
"""
|
|
978
1181
|
return self._EngineName
|
|
979
1182
|
|
|
980
1183
|
@EngineName.setter
|
|
@@ -983,14 +1186,34 @@ class InstanceInfo(AbstractModel):
|
|
|
983
1186
|
|
|
984
1187
|
@property
|
|
985
1188
|
def EngineVersion(self):
|
|
1189
|
+
"""引擎版本。
|
|
1190
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1191
|
+
:rtype: str
|
|
1192
|
+
"""
|
|
986
1193
|
return self._EngineVersion
|
|
987
1194
|
|
|
988
1195
|
@EngineVersion.setter
|
|
989
1196
|
def EngineVersion(self, EngineVersion):
|
|
990
1197
|
self._EngineVersion = EngineVersion
|
|
991
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
|
+
|
|
992
1211
|
@property
|
|
993
1212
|
def PayMode(self):
|
|
1213
|
+
"""计费模式。
|
|
1214
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1215
|
+
:rtype: int
|
|
1216
|
+
"""
|
|
994
1217
|
return self._PayMode
|
|
995
1218
|
|
|
996
1219
|
@PayMode.setter
|
|
@@ -999,6 +1222,10 @@ class InstanceInfo(AbstractModel):
|
|
|
999
1222
|
|
|
1000
1223
|
@property
|
|
1001
1224
|
def Extend(self):
|
|
1225
|
+
"""差异化扩展信息, json格式。
|
|
1226
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1227
|
+
:rtype: str
|
|
1228
|
+
"""
|
|
1002
1229
|
return self._Extend
|
|
1003
1230
|
|
|
1004
1231
|
@Extend.setter
|
|
@@ -1007,6 +1234,10 @@ class InstanceInfo(AbstractModel):
|
|
|
1007
1234
|
|
|
1008
1235
|
@property
|
|
1009
1236
|
def ExpiredAt(self):
|
|
1237
|
+
"""过期时间。
|
|
1238
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1239
|
+
:rtype: str
|
|
1240
|
+
"""
|
|
1010
1241
|
return self._ExpiredAt
|
|
1011
1242
|
|
|
1012
1243
|
@ExpiredAt.setter
|
|
@@ -1015,6 +1246,10 @@ class InstanceInfo(AbstractModel):
|
|
|
1015
1246
|
|
|
1016
1247
|
@property
|
|
1017
1248
|
def IsNoExpired(self):
|
|
1249
|
+
"""是否不过期(永久)。
|
|
1250
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1251
|
+
:rtype: bool
|
|
1252
|
+
"""
|
|
1018
1253
|
return self._IsNoExpired
|
|
1019
1254
|
|
|
1020
1255
|
@IsNoExpired.setter
|
|
@@ -1023,6 +1258,10 @@ class InstanceInfo(AbstractModel):
|
|
|
1023
1258
|
|
|
1024
1259
|
@property
|
|
1025
1260
|
def WanAddress(self):
|
|
1261
|
+
"""外网地址。
|
|
1262
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1263
|
+
:rtype: str
|
|
1264
|
+
"""
|
|
1026
1265
|
return self._WanAddress
|
|
1027
1266
|
|
|
1028
1267
|
@WanAddress.setter
|
|
@@ -1031,6 +1270,10 @@ class InstanceInfo(AbstractModel):
|
|
|
1031
1270
|
|
|
1032
1271
|
@property
|
|
1033
1272
|
def IsolateAt(self):
|
|
1273
|
+
"""隔离时间
|
|
1274
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1275
|
+
:rtype: str
|
|
1276
|
+
"""
|
|
1034
1277
|
return self._IsolateAt
|
|
1035
1278
|
|
|
1036
1279
|
@IsolateAt.setter
|
|
@@ -1039,6 +1282,10 @@ class InstanceInfo(AbstractModel):
|
|
|
1039
1282
|
|
|
1040
1283
|
@property
|
|
1041
1284
|
def AutoRenew(self):
|
|
1285
|
+
"""是否自动续费。0: 不自动续费(可以支持特权不停服);1:自动续费;2:到期不续费.
|
|
1286
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1287
|
+
:rtype: int
|
|
1288
|
+
"""
|
|
1042
1289
|
return self._AutoRenew
|
|
1043
1290
|
|
|
1044
1291
|
@AutoRenew.setter
|
|
@@ -1077,6 +1324,7 @@ class InstanceInfo(AbstractModel):
|
|
|
1077
1324
|
self._Status = params.get("Status")
|
|
1078
1325
|
self._EngineName = params.get("EngineName")
|
|
1079
1326
|
self._EngineVersion = params.get("EngineVersion")
|
|
1327
|
+
self._ApiVersion = params.get("ApiVersion")
|
|
1080
1328
|
self._PayMode = params.get("PayMode")
|
|
1081
1329
|
self._Extend = params.get("Extend")
|
|
1082
1330
|
self._ExpiredAt = params.get("ExpiredAt")
|
|
@@ -1111,6 +1359,9 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
|
1111
1359
|
|
|
1112
1360
|
@property
|
|
1113
1361
|
def SecurityGroupIds(self):
|
|
1362
|
+
"""要修改的安全组ID列表,一个或者多个安全组 ID 组成的数组。
|
|
1363
|
+
:rtype: list of str
|
|
1364
|
+
"""
|
|
1114
1365
|
return self._SecurityGroupIds
|
|
1115
1366
|
|
|
1116
1367
|
@SecurityGroupIds.setter
|
|
@@ -1119,6 +1370,9 @@ class ModifyDBInstanceSecurityGroupsRequest(AbstractModel):
|
|
|
1119
1370
|
|
|
1120
1371
|
@property
|
|
1121
1372
|
def InstanceIds(self):
|
|
1373
|
+
"""实例ID,格式如:vdb-c9s3****。
|
|
1374
|
+
:rtype: list of str
|
|
1375
|
+
"""
|
|
1122
1376
|
return self._InstanceIds
|
|
1123
1377
|
|
|
1124
1378
|
@InstanceIds.setter
|
|
@@ -1153,6 +1407,9 @@ class ModifyDBInstanceSecurityGroupsResponse(AbstractModel):
|
|
|
1153
1407
|
|
|
1154
1408
|
@property
|
|
1155
1409
|
def RequestId(self):
|
|
1410
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1411
|
+
:rtype: str
|
|
1412
|
+
"""
|
|
1156
1413
|
return self._RequestId
|
|
1157
1414
|
|
|
1158
1415
|
@RequestId.setter
|
|
@@ -1191,6 +1448,10 @@ class Network(AbstractModel):
|
|
|
1191
1448
|
|
|
1192
1449
|
@property
|
|
1193
1450
|
def VpcId(self):
|
|
1451
|
+
"""VpcId(VPC网络下有效)
|
|
1452
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1453
|
+
:rtype: str
|
|
1454
|
+
"""
|
|
1194
1455
|
return self._VpcId
|
|
1195
1456
|
|
|
1196
1457
|
@VpcId.setter
|
|
@@ -1199,6 +1460,10 @@ class Network(AbstractModel):
|
|
|
1199
1460
|
|
|
1200
1461
|
@property
|
|
1201
1462
|
def SubnetId(self):
|
|
1463
|
+
"""子网Id(VPC网络下有效)。
|
|
1464
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1465
|
+
:rtype: str
|
|
1466
|
+
"""
|
|
1202
1467
|
return self._SubnetId
|
|
1203
1468
|
|
|
1204
1469
|
@SubnetId.setter
|
|
@@ -1207,6 +1472,10 @@ class Network(AbstractModel):
|
|
|
1207
1472
|
|
|
1208
1473
|
@property
|
|
1209
1474
|
def Vip(self):
|
|
1475
|
+
"""内网访问IP。
|
|
1476
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1477
|
+
:rtype: str
|
|
1478
|
+
"""
|
|
1210
1479
|
return self._Vip
|
|
1211
1480
|
|
|
1212
1481
|
@Vip.setter
|
|
@@ -1215,6 +1484,10 @@ class Network(AbstractModel):
|
|
|
1215
1484
|
|
|
1216
1485
|
@property
|
|
1217
1486
|
def Port(self):
|
|
1487
|
+
"""内网访问Port。
|
|
1488
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1489
|
+
:rtype: int
|
|
1490
|
+
"""
|
|
1218
1491
|
return self._Port
|
|
1219
1492
|
|
|
1220
1493
|
@Port.setter
|
|
@@ -1252,6 +1525,10 @@ class NodeInfo(AbstractModel):
|
|
|
1252
1525
|
|
|
1253
1526
|
@property
|
|
1254
1527
|
def Name(self):
|
|
1528
|
+
"""Pod名称。
|
|
1529
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1530
|
+
:rtype: str
|
|
1531
|
+
"""
|
|
1255
1532
|
return self._Name
|
|
1256
1533
|
|
|
1257
1534
|
@Name.setter
|
|
@@ -1306,6 +1583,9 @@ class Outbound(AbstractModel):
|
|
|
1306
1583
|
|
|
1307
1584
|
@property
|
|
1308
1585
|
def Action(self):
|
|
1586
|
+
"""策略,ACCEPT或者DROP。
|
|
1587
|
+
:rtype: str
|
|
1588
|
+
"""
|
|
1309
1589
|
return self._Action
|
|
1310
1590
|
|
|
1311
1591
|
@Action.setter
|
|
@@ -1314,6 +1594,9 @@ class Outbound(AbstractModel):
|
|
|
1314
1594
|
|
|
1315
1595
|
@property
|
|
1316
1596
|
def AddressModule(self):
|
|
1597
|
+
"""地址组id代表的地址集合。
|
|
1598
|
+
:rtype: str
|
|
1599
|
+
"""
|
|
1317
1600
|
return self._AddressModule
|
|
1318
1601
|
|
|
1319
1602
|
@AddressModule.setter
|
|
@@ -1322,6 +1605,9 @@ class Outbound(AbstractModel):
|
|
|
1322
1605
|
|
|
1323
1606
|
@property
|
|
1324
1607
|
def CidrIp(self):
|
|
1608
|
+
"""来源Ip或Ip段,例如192.168.0.0/16。
|
|
1609
|
+
:rtype: str
|
|
1610
|
+
"""
|
|
1325
1611
|
return self._CidrIp
|
|
1326
1612
|
|
|
1327
1613
|
@CidrIp.setter
|
|
@@ -1330,6 +1616,9 @@ class Outbound(AbstractModel):
|
|
|
1330
1616
|
|
|
1331
1617
|
@property
|
|
1332
1618
|
def Desc(self):
|
|
1619
|
+
"""描述。
|
|
1620
|
+
:rtype: str
|
|
1621
|
+
"""
|
|
1333
1622
|
return self._Desc
|
|
1334
1623
|
|
|
1335
1624
|
@Desc.setter
|
|
@@ -1338,6 +1627,9 @@ class Outbound(AbstractModel):
|
|
|
1338
1627
|
|
|
1339
1628
|
@property
|
|
1340
1629
|
def IpProtocol(self):
|
|
1630
|
+
"""网络协议,支持udp、tcp等。
|
|
1631
|
+
:rtype: str
|
|
1632
|
+
"""
|
|
1341
1633
|
return self._IpProtocol
|
|
1342
1634
|
|
|
1343
1635
|
@IpProtocol.setter
|
|
@@ -1346,6 +1638,9 @@ class Outbound(AbstractModel):
|
|
|
1346
1638
|
|
|
1347
1639
|
@property
|
|
1348
1640
|
def PortRange(self):
|
|
1641
|
+
"""端口。
|
|
1642
|
+
:rtype: str
|
|
1643
|
+
"""
|
|
1349
1644
|
return self._PortRange
|
|
1350
1645
|
|
|
1351
1646
|
@PortRange.setter
|
|
@@ -1354,6 +1649,9 @@ class Outbound(AbstractModel):
|
|
|
1354
1649
|
|
|
1355
1650
|
@property
|
|
1356
1651
|
def ServiceModule(self):
|
|
1652
|
+
"""服务组id代表的协议和端口集合。
|
|
1653
|
+
:rtype: str
|
|
1654
|
+
"""
|
|
1357
1655
|
return self._ServiceModule
|
|
1358
1656
|
|
|
1359
1657
|
@ServiceModule.setter
|
|
@@ -1362,6 +1660,9 @@ class Outbound(AbstractModel):
|
|
|
1362
1660
|
|
|
1363
1661
|
@property
|
|
1364
1662
|
def Id(self):
|
|
1663
|
+
"""安全组id代表的地址集合。
|
|
1664
|
+
:rtype: str
|
|
1665
|
+
"""
|
|
1365
1666
|
return self._Id
|
|
1366
1667
|
|
|
1367
1668
|
@Id.setter
|
|
@@ -1423,6 +1724,9 @@ class SecurityGroup(AbstractModel):
|
|
|
1423
1724
|
|
|
1424
1725
|
@property
|
|
1425
1726
|
def CreateTime(self):
|
|
1727
|
+
"""创建时间,时间格式:yyyy-mm-dd hh:mm:ss。
|
|
1728
|
+
:rtype: str
|
|
1729
|
+
"""
|
|
1426
1730
|
return self._CreateTime
|
|
1427
1731
|
|
|
1428
1732
|
@CreateTime.setter
|
|
@@ -1431,6 +1735,9 @@ class SecurityGroup(AbstractModel):
|
|
|
1431
1735
|
|
|
1432
1736
|
@property
|
|
1433
1737
|
def ProjectId(self):
|
|
1738
|
+
"""项目ID。
|
|
1739
|
+
:rtype: str
|
|
1740
|
+
"""
|
|
1434
1741
|
return self._ProjectId
|
|
1435
1742
|
|
|
1436
1743
|
@ProjectId.setter
|
|
@@ -1439,6 +1746,9 @@ class SecurityGroup(AbstractModel):
|
|
|
1439
1746
|
|
|
1440
1747
|
@property
|
|
1441
1748
|
def SecurityGroupId(self):
|
|
1749
|
+
"""安全组ID。
|
|
1750
|
+
:rtype: str
|
|
1751
|
+
"""
|
|
1442
1752
|
return self._SecurityGroupId
|
|
1443
1753
|
|
|
1444
1754
|
@SecurityGroupId.setter
|
|
@@ -1447,6 +1757,9 @@ class SecurityGroup(AbstractModel):
|
|
|
1447
1757
|
|
|
1448
1758
|
@property
|
|
1449
1759
|
def SecurityGroupName(self):
|
|
1760
|
+
"""安全组名称。
|
|
1761
|
+
:rtype: str
|
|
1762
|
+
"""
|
|
1450
1763
|
return self._SecurityGroupName
|
|
1451
1764
|
|
|
1452
1765
|
@SecurityGroupName.setter
|
|
@@ -1455,6 +1768,9 @@ class SecurityGroup(AbstractModel):
|
|
|
1455
1768
|
|
|
1456
1769
|
@property
|
|
1457
1770
|
def SecurityGroupRemark(self):
|
|
1771
|
+
"""安全组备注。
|
|
1772
|
+
:rtype: str
|
|
1773
|
+
"""
|
|
1458
1774
|
return self._SecurityGroupRemark
|
|
1459
1775
|
|
|
1460
1776
|
@SecurityGroupRemark.setter
|
|
@@ -1463,6 +1779,9 @@ class SecurityGroup(AbstractModel):
|
|
|
1463
1779
|
|
|
1464
1780
|
@property
|
|
1465
1781
|
def Outbound(self):
|
|
1782
|
+
"""出站规则。
|
|
1783
|
+
:rtype: list of Outbound
|
|
1784
|
+
"""
|
|
1466
1785
|
return self._Outbound
|
|
1467
1786
|
|
|
1468
1787
|
@Outbound.setter
|
|
@@ -1471,6 +1790,9 @@ class SecurityGroup(AbstractModel):
|
|
|
1471
1790
|
|
|
1472
1791
|
@property
|
|
1473
1792
|
def Inbound(self):
|
|
1793
|
+
"""入站规则。
|
|
1794
|
+
:rtype: list of Inbound
|
|
1795
|
+
"""
|
|
1474
1796
|
return self._Inbound
|
|
1475
1797
|
|
|
1476
1798
|
@Inbound.setter
|
|
@@ -1479,6 +1801,9 @@ class SecurityGroup(AbstractModel):
|
|
|
1479
1801
|
|
|
1480
1802
|
@property
|
|
1481
1803
|
def UpdateTime(self):
|
|
1804
|
+
"""修改时间,时间格式:yyyy-mm-dd hh:mm:ss。
|
|
1805
|
+
:rtype: str
|
|
1806
|
+
"""
|
|
1482
1807
|
return self._UpdateTime
|
|
1483
1808
|
|
|
1484
1809
|
@UpdateTime.setter
|
|
@@ -1534,6 +1859,10 @@ class Tag(AbstractModel):
|
|
|
1534
1859
|
|
|
1535
1860
|
@property
|
|
1536
1861
|
def TagKey(self):
|
|
1862
|
+
"""标签键
|
|
1863
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1864
|
+
:rtype: str
|
|
1865
|
+
"""
|
|
1537
1866
|
return self._TagKey
|
|
1538
1867
|
|
|
1539
1868
|
@TagKey.setter
|
|
@@ -1542,6 +1871,10 @@ class Tag(AbstractModel):
|
|
|
1542
1871
|
|
|
1543
1872
|
@property
|
|
1544
1873
|
def TagValue(self):
|
|
1874
|
+
"""标签值
|
|
1875
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1876
|
+
:rtype: str
|
|
1877
|
+
"""
|
|
1545
1878
|
return self._TagValue
|
|
1546
1879
|
|
|
1547
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.1274
|
|
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.1274)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=VCDjAsN_03z8otdJoEP5GRpyf2Rsh6QgM6KyEZO8pTE,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.1274.dist-info/METADATA,sha256=y8h5AR2sYnf9GX8TrOZELcqe_4LFjZdteVKY1T7aCAg,1496
|
|
8
|
+
tencentcloud_sdk_python_vdb-3.0.1274.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_vdb-3.0.1274.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_vdb-3.0.1274.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=b1-xCRBvYL85Ro49AlTIv9vwZvARGn8ktEozcHY1Qb0,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=JK3bZTLJvw4UBbsiPSLSGJRL-vROGKsfaxZzTg5H9Jo,44222
|
|
6
|
-
tencentcloud/vdb/v20230616/vdb_client.py,sha256=VQuqL3skHxrsbMy7wt4_Ja3EaJcahb29zafYz-F9qnw,6684
|
|
7
|
-
tencentcloud_sdk_python_vdb-3.0.1234.dist-info/METADATA,sha256=7fgjsU8abRgLCQ0qch5O3tCIxLiNM0oQWTqWkjGAdxw,1492
|
|
8
|
-
tencentcloud_sdk_python_vdb-3.0.1234.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_vdb-3.0.1234.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_vdb-3.0.1234.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|