tencentcloud-sdk-python 3.0.1297__py2.py3-none-any.whl → 3.0.1299__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/aca/v20210323/models.py +2 -2
- tencentcloud/autoscaling/v20180419/models.py +21 -0
- tencentcloud/bh/v20230418/models.py +4 -4
- tencentcloud/billing/v20180709/models.py +90 -0
- tencentcloud/cam/v20190116/models.py +2 -2
- tencentcloud/ccc/v20200210/models.py +121 -0
- tencentcloud/cfs/v20190719/errorcodes.py +1 -1
- tencentcloud/clb/v20180317/models.py +68 -0
- tencentcloud/cloudapp/v20220530/errorcodes.py +3 -0
- tencentcloud/cloudapp/v20220530/models.py +66 -17
- tencentcloud/cls/v20201016/models.py +24 -2
- tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
- tencentcloud/cynosdb/v20190107/models.py +113 -0
- tencentcloud/dbbrain/v20210527/models.py +17 -2
- tencentcloud/dc/v20180410/models.py +50 -121
- tencentcloud/drm/v20181115/models.py +17 -0
- tencentcloud/dts/v20211206/models.py +68 -2
- tencentcloud/emr/v20190103/models.py +136 -340
- tencentcloud/ess/v20201111/models.py +96 -156
- tencentcloud/essbasic/v20210526/models.py +44 -108
- tencentcloud/gaap/v20180529/gaap_client.py +9 -3
- tencentcloud/gwlb/v20240906/models.py +2 -2
- tencentcloud/hai/v20230812/errorcodes.py +6 -0
- tencentcloud/hai/v20230812/hai_client.py +23 -0
- tencentcloud/hai/v20230812/models.py +109 -0
- tencentcloud/hunyuan/v20230901/models.py +7 -7
- tencentcloud/keewidb/v20220308/models.py +1 -1
- tencentcloud/lcic/v20220817/models.py +12 -6
- tencentcloud/lkeap/v20240522/lkeap_client.py +24 -0
- tencentcloud/lkeap/v20240522/models.py +167 -0
- tencentcloud/mongodb/v20180408/errorcodes.py +3 -0
- tencentcloud/mongodb/v20180408/models.py +36 -20
- tencentcloud/mongodb/v20180408/mongodb_client.py +1 -1
- tencentcloud/mongodb/v20190725/models.py +45 -112
- tencentcloud/ocr/v20181119/models.py +14 -14
- tencentcloud/ocr/v20181119/ocr_client.py +3 -3
- tencentcloud/postgres/v20170312/models.py +233 -0
- tencentcloud/postgres/v20170312/postgres_client.py +46 -0
- tencentcloud/redis/v20180412/models.py +6 -6
- tencentcloud/redis/v20180412/redis_client.py +8 -8
- tencentcloud/scf/v20180416/models.py +44 -4
- tencentcloud/ssl/v20191205/models.py +66 -10
- tencentcloud/ssl/v20191205/ssl_client.py +8 -1
- tencentcloud/tcb/v20180608/models.py +219 -345
- tencentcloud/tcb/v20180608/tcb_client.py +1 -1
- tencentcloud/tcbr/v20220217/models.py +51 -6
- tencentcloud/tdmq/v20200217/models.py +205 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/tione/v20211111/models.py +34 -0
- tencentcloud/trtc/v20190722/models.py +4 -16
- tencentcloud/vpc/v20170312/models.py +63 -29
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/RECORD +57 -57
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/top_level.txt +0 -0
@@ -252,8 +252,11 @@ class BackupDownloadTask(AbstractModel):
|
|
252
252
|
:param _BackupMethod: 备份文件备份类型,0-逻辑备份,1-物理备份
|
253
253
|
:type BackupMethod: int
|
254
254
|
:param _BackupDesc: 发起备份时指定的备注信息
|
255
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
256
255
|
:type BackupDesc: str
|
256
|
+
:param _Region: 地区信息。
|
257
|
+
:type Region: str
|
258
|
+
:param _Bucket: Bucket信息。
|
259
|
+
:type Bucket: str
|
257
260
|
"""
|
258
261
|
self._CreateTime = None
|
259
262
|
self._BackupName = None
|
@@ -265,6 +268,8 @@ class BackupDownloadTask(AbstractModel):
|
|
265
268
|
self._Url = None
|
266
269
|
self._BackupMethod = None
|
267
270
|
self._BackupDesc = None
|
271
|
+
self._Region = None
|
272
|
+
self._Bucket = None
|
268
273
|
|
269
274
|
@property
|
270
275
|
def CreateTime(self):
|
@@ -368,7 +373,6 @@ class BackupDownloadTask(AbstractModel):
|
|
368
373
|
@property
|
369
374
|
def BackupDesc(self):
|
370
375
|
"""发起备份时指定的备注信息
|
371
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
372
376
|
:rtype: str
|
373
377
|
"""
|
374
378
|
return self._BackupDesc
|
@@ -377,6 +381,28 @@ class BackupDownloadTask(AbstractModel):
|
|
377
381
|
def BackupDesc(self, BackupDesc):
|
378
382
|
self._BackupDesc = BackupDesc
|
379
383
|
|
384
|
+
@property
|
385
|
+
def Region(self):
|
386
|
+
"""地区信息。
|
387
|
+
:rtype: str
|
388
|
+
"""
|
389
|
+
return self._Region
|
390
|
+
|
391
|
+
@Region.setter
|
392
|
+
def Region(self, Region):
|
393
|
+
self._Region = Region
|
394
|
+
|
395
|
+
@property
|
396
|
+
def Bucket(self):
|
397
|
+
"""Bucket信息。
|
398
|
+
:rtype: str
|
399
|
+
"""
|
400
|
+
return self._Bucket
|
401
|
+
|
402
|
+
@Bucket.setter
|
403
|
+
def Bucket(self, Bucket):
|
404
|
+
self._Bucket = Bucket
|
405
|
+
|
380
406
|
|
381
407
|
def _deserialize(self, params):
|
382
408
|
self._CreateTime = params.get("CreateTime")
|
@@ -389,6 +415,8 @@ class BackupDownloadTask(AbstractModel):
|
|
389
415
|
self._Url = params.get("Url")
|
390
416
|
self._BackupMethod = params.get("BackupMethod")
|
391
417
|
self._BackupDesc = params.get("BackupDesc")
|
418
|
+
self._Region = params.get("Region")
|
419
|
+
self._Bucket = params.get("Bucket")
|
392
420
|
memeber_set = set(params.keys())
|
393
421
|
for name, value in vars(self).items():
|
394
422
|
property_name = name[1:]
|
@@ -464,16 +492,12 @@ class BackupInfo(AbstractModel):
|
|
464
492
|
:param _BackupName: 备份名称
|
465
493
|
:type BackupName: str
|
466
494
|
:param _BackupDesc: 备份备注
|
467
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
468
495
|
:type BackupDesc: str
|
469
496
|
:param _BackupSize: 备份文件大小,单位KB
|
470
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
471
497
|
:type BackupSize: int
|
472
498
|
:param _StartTime: 备份开始时间
|
473
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
474
499
|
:type StartTime: str
|
475
500
|
:param _EndTime: 备份结束时间
|
476
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
477
501
|
:type EndTime: str
|
478
502
|
:param _Status: 备份状态,1-备份中,2-备份成功
|
479
503
|
:type Status: int
|
@@ -484,7 +508,6 @@ class BackupInfo(AbstractModel):
|
|
484
508
|
:param _DeleteTime: 备份删除时间
|
485
509
|
:type DeleteTime: str
|
486
510
|
:param _BackupRegion: 异地备份地域
|
487
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
488
511
|
:type BackupRegion: str
|
489
512
|
"""
|
490
513
|
self._InstanceId = None
|
@@ -536,7 +559,6 @@ class BackupInfo(AbstractModel):
|
|
536
559
|
@property
|
537
560
|
def BackupDesc(self):
|
538
561
|
"""备份备注
|
539
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
540
562
|
:rtype: str
|
541
563
|
"""
|
542
564
|
return self._BackupDesc
|
@@ -548,7 +570,6 @@ class BackupInfo(AbstractModel):
|
|
548
570
|
@property
|
549
571
|
def BackupSize(self):
|
550
572
|
"""备份文件大小,单位KB
|
551
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
552
573
|
:rtype: int
|
553
574
|
"""
|
554
575
|
return self._BackupSize
|
@@ -560,7 +581,6 @@ class BackupInfo(AbstractModel):
|
|
560
581
|
@property
|
561
582
|
def StartTime(self):
|
562
583
|
"""备份开始时间
|
563
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
564
584
|
:rtype: str
|
565
585
|
"""
|
566
586
|
return self._StartTime
|
@@ -572,7 +592,6 @@ class BackupInfo(AbstractModel):
|
|
572
592
|
@property
|
573
593
|
def EndTime(self):
|
574
594
|
"""备份结束时间
|
575
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
576
595
|
:rtype: str
|
577
596
|
"""
|
578
597
|
return self._EndTime
|
@@ -628,7 +647,6 @@ class BackupInfo(AbstractModel):
|
|
628
647
|
@property
|
629
648
|
def BackupRegion(self):
|
630
649
|
"""异地备份地域
|
631
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
632
650
|
:rtype: str
|
633
651
|
"""
|
634
652
|
return self._BackupRegion
|
@@ -2428,32 +2446,24 @@ class CurrentOp(AbstractModel):
|
|
2428
2446
|
def __init__(self):
|
2429
2447
|
r"""
|
2430
2448
|
:param _OpId: 操作序号。
|
2431
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2432
2449
|
:type OpId: int
|
2433
2450
|
:param _Ns: 操作所在的命名空间,形式如db.collection。
|
2434
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2435
2451
|
:type Ns: str
|
2436
2452
|
:param _Query: 操作执行语句。
|
2437
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2438
2453
|
:type Query: str
|
2439
2454
|
:param _Op: 操作类型,可能的取值:aggregate、count、delete、distinct、find、findAndModify、getMore、insert、mapReduce、update和command。
|
2440
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2441
2455
|
:type Op: str
|
2442
2456
|
:param _ReplicaSetName: 操作所在的分片名称。
|
2443
2457
|
:type ReplicaSetName: str
|
2444
2458
|
:param _NodeName: 操作所在的节点名称。
|
2445
2459
|
:type NodeName: str
|
2446
2460
|
:param _Operation: 操作详细信息。
|
2447
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2448
2461
|
:type Operation: str
|
2449
2462
|
:param _State: 筛选条件,节点状态,可能的取值为:Primary、Secondary。
|
2450
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2451
2463
|
:type State: str
|
2452
2464
|
:param _MicrosecsRunning: 操作已执行时间(ms)。
|
2453
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2454
2465
|
:type MicrosecsRunning: int
|
2455
2466
|
:param _ExecNode: 当前操作所在节点信息。
|
2456
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2457
2467
|
:type ExecNode: str
|
2458
2468
|
"""
|
2459
2469
|
self._OpId = None
|
@@ -2470,7 +2480,6 @@ class CurrentOp(AbstractModel):
|
|
2470
2480
|
@property
|
2471
2481
|
def OpId(self):
|
2472
2482
|
"""操作序号。
|
2473
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2474
2483
|
:rtype: int
|
2475
2484
|
"""
|
2476
2485
|
return self._OpId
|
@@ -2482,7 +2491,6 @@ class CurrentOp(AbstractModel):
|
|
2482
2491
|
@property
|
2483
2492
|
def Ns(self):
|
2484
2493
|
"""操作所在的命名空间,形式如db.collection。
|
2485
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2486
2494
|
:rtype: str
|
2487
2495
|
"""
|
2488
2496
|
return self._Ns
|
@@ -2494,7 +2502,6 @@ class CurrentOp(AbstractModel):
|
|
2494
2502
|
@property
|
2495
2503
|
def Query(self):
|
2496
2504
|
"""操作执行语句。
|
2497
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2498
2505
|
:rtype: str
|
2499
2506
|
"""
|
2500
2507
|
return self._Query
|
@@ -2506,7 +2513,6 @@ class CurrentOp(AbstractModel):
|
|
2506
2513
|
@property
|
2507
2514
|
def Op(self):
|
2508
2515
|
"""操作类型,可能的取值:aggregate、count、delete、distinct、find、findAndModify、getMore、insert、mapReduce、update和command。
|
2509
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2510
2516
|
:rtype: str
|
2511
2517
|
"""
|
2512
2518
|
return self._Op
|
@@ -2540,7 +2546,6 @@ class CurrentOp(AbstractModel):
|
|
2540
2546
|
@property
|
2541
2547
|
def Operation(self):
|
2542
2548
|
"""操作详细信息。
|
2543
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2544
2549
|
:rtype: str
|
2545
2550
|
"""
|
2546
2551
|
return self._Operation
|
@@ -2552,7 +2557,6 @@ class CurrentOp(AbstractModel):
|
|
2552
2557
|
@property
|
2553
2558
|
def State(self):
|
2554
2559
|
"""筛选条件,节点状态,可能的取值为:Primary、Secondary。
|
2555
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2556
2560
|
:rtype: str
|
2557
2561
|
"""
|
2558
2562
|
return self._State
|
@@ -2564,7 +2568,6 @@ class CurrentOp(AbstractModel):
|
|
2564
2568
|
@property
|
2565
2569
|
def MicrosecsRunning(self):
|
2566
2570
|
"""操作已执行时间(ms)。
|
2567
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2568
2571
|
:rtype: int
|
2569
2572
|
"""
|
2570
2573
|
return self._MicrosecsRunning
|
@@ -2576,7 +2579,6 @@ class CurrentOp(AbstractModel):
|
|
2576
2579
|
@property
|
2577
2580
|
def ExecNode(self):
|
2578
2581
|
"""当前操作所在节点信息。
|
2579
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2580
2582
|
:rtype: str
|
2581
2583
|
"""
|
2582
2584
|
return self._ExecNode
|
@@ -2666,7 +2668,6 @@ class DBInstancePrice(AbstractModel):
|
|
2666
2668
|
def __init__(self):
|
2667
2669
|
r"""
|
2668
2670
|
:param _UnitPrice: 单价
|
2669
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2670
2671
|
:type UnitPrice: float
|
2671
2672
|
:param _OriginalPrice: 原价
|
2672
2673
|
:type OriginalPrice: float
|
@@ -2680,7 +2681,6 @@ class DBInstancePrice(AbstractModel):
|
|
2680
2681
|
@property
|
2681
2682
|
def UnitPrice(self):
|
2682
2683
|
"""单价
|
2683
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2684
2684
|
:rtype: float
|
2685
2685
|
"""
|
2686
2686
|
return self._UnitPrice
|
@@ -4131,7 +4131,6 @@ class DescribeDBInstanceNodePropertyResponse(AbstractModel):
|
|
4131
4131
|
def __init__(self):
|
4132
4132
|
r"""
|
4133
4133
|
:param _Mongos: Mongos节点属性。
|
4134
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4135
4134
|
:type Mongos: list of NodeProperty
|
4136
4135
|
:param _ReplicateSets: 副本集节点信息。
|
4137
4136
|
:type ReplicateSets: list of ReplicateSetInfo
|
@@ -4145,7 +4144,6 @@ class DescribeDBInstanceNodePropertyResponse(AbstractModel):
|
|
4145
4144
|
@property
|
4146
4145
|
def Mongos(self):
|
4147
4146
|
"""Mongos节点属性。
|
4148
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4149
4147
|
:rtype: list of NodeProperty
|
4150
4148
|
"""
|
4151
4149
|
return self._Mongos
|
@@ -4252,28 +4250,20 @@ class DescribeDBInstanceParamTplDetailResponse(AbstractModel):
|
|
4252
4250
|
def __init__(self):
|
4253
4251
|
r"""
|
4254
4252
|
:param _InstanceEnumParams: 枚举类参数详情列表。
|
4255
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4256
4253
|
:type InstanceEnumParams: list of InstanceEnumParam
|
4257
4254
|
:param _InstanceIntegerParams: 整形参数详情列表。
|
4258
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4259
4255
|
:type InstanceIntegerParams: list of InstanceIntegerParam
|
4260
4256
|
:param _InstanceTextParams: 文本参数详情列表。
|
4261
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4262
4257
|
:type InstanceTextParams: list of InstanceTextParam
|
4263
4258
|
:param _InstanceMultiParams: 多值参数详情列表。
|
4264
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4265
4259
|
:type InstanceMultiParams: list of InstanceMultiParam
|
4266
4260
|
:param _TotalCount: 参数总个数。
|
4267
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4268
4261
|
:type TotalCount: int
|
4269
4262
|
:param _MongoVersion: 模板适配实例版本。
|
4270
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4271
4263
|
:type MongoVersion: str
|
4272
4264
|
:param _ClusterType: 模板适配集群类型,副本集或分片。。
|
4273
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4274
4265
|
:type ClusterType: str
|
4275
4266
|
:param _TplName: 参数模板名称。
|
4276
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4277
4267
|
:type TplName: str
|
4278
4268
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4279
4269
|
:type RequestId: str
|
@@ -4291,7 +4281,6 @@ class DescribeDBInstanceParamTplDetailResponse(AbstractModel):
|
|
4291
4281
|
@property
|
4292
4282
|
def InstanceEnumParams(self):
|
4293
4283
|
"""枚举类参数详情列表。
|
4294
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4295
4284
|
:rtype: list of InstanceEnumParam
|
4296
4285
|
"""
|
4297
4286
|
return self._InstanceEnumParams
|
@@ -4303,7 +4292,6 @@ class DescribeDBInstanceParamTplDetailResponse(AbstractModel):
|
|
4303
4292
|
@property
|
4304
4293
|
def InstanceIntegerParams(self):
|
4305
4294
|
"""整形参数详情列表。
|
4306
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4307
4295
|
:rtype: list of InstanceIntegerParam
|
4308
4296
|
"""
|
4309
4297
|
return self._InstanceIntegerParams
|
@@ -4315,7 +4303,6 @@ class DescribeDBInstanceParamTplDetailResponse(AbstractModel):
|
|
4315
4303
|
@property
|
4316
4304
|
def InstanceTextParams(self):
|
4317
4305
|
"""文本参数详情列表。
|
4318
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4319
4306
|
:rtype: list of InstanceTextParam
|
4320
4307
|
"""
|
4321
4308
|
return self._InstanceTextParams
|
@@ -4327,7 +4314,6 @@ class DescribeDBInstanceParamTplDetailResponse(AbstractModel):
|
|
4327
4314
|
@property
|
4328
4315
|
def InstanceMultiParams(self):
|
4329
4316
|
"""多值参数详情列表。
|
4330
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4331
4317
|
:rtype: list of InstanceMultiParam
|
4332
4318
|
"""
|
4333
4319
|
return self._InstanceMultiParams
|
@@ -4339,7 +4325,6 @@ class DescribeDBInstanceParamTplDetailResponse(AbstractModel):
|
|
4339
4325
|
@property
|
4340
4326
|
def TotalCount(self):
|
4341
4327
|
"""参数总个数。
|
4342
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4343
4328
|
:rtype: int
|
4344
4329
|
"""
|
4345
4330
|
return self._TotalCount
|
@@ -4351,7 +4336,6 @@ class DescribeDBInstanceParamTplDetailResponse(AbstractModel):
|
|
4351
4336
|
@property
|
4352
4337
|
def MongoVersion(self):
|
4353
4338
|
"""模板适配实例版本。
|
4354
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4355
4339
|
:rtype: str
|
4356
4340
|
"""
|
4357
4341
|
return self._MongoVersion
|
@@ -4363,7 +4347,6 @@ class DescribeDBInstanceParamTplDetailResponse(AbstractModel):
|
|
4363
4347
|
@property
|
4364
4348
|
def ClusterType(self):
|
4365
4349
|
"""模板适配集群类型,副本集或分片。。
|
4366
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4367
4350
|
:rtype: str
|
4368
4351
|
"""
|
4369
4352
|
return self._ClusterType
|
@@ -4375,7 +4358,6 @@ class DescribeDBInstanceParamTplDetailResponse(AbstractModel):
|
|
4375
4358
|
@property
|
4376
4359
|
def TplName(self):
|
4377
4360
|
"""参数模板名称。
|
4378
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4379
4361
|
:rtype: str
|
4380
4362
|
"""
|
4381
4363
|
return self._TplName
|
@@ -4517,10 +4499,8 @@ class DescribeDBInstanceParamTplResponse(AbstractModel):
|
|
4517
4499
|
def __init__(self):
|
4518
4500
|
r"""
|
4519
4501
|
:param _ParamTpls: 参数模板列表信息。
|
4520
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4521
4502
|
:type ParamTpls: list of ParamTpl
|
4522
4503
|
:param _TotalCount: 参数模板总数。
|
4523
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4524
4504
|
:type TotalCount: int
|
4525
4505
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4526
4506
|
:type RequestId: str
|
@@ -4532,7 +4512,6 @@ class DescribeDBInstanceParamTplResponse(AbstractModel):
|
|
4532
4512
|
@property
|
4533
4513
|
def ParamTpls(self):
|
4534
4514
|
"""参数模板列表信息。
|
4535
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4536
4515
|
:rtype: list of ParamTpl
|
4537
4516
|
"""
|
4538
4517
|
return self._ParamTpls
|
@@ -4544,7 +4523,6 @@ class DescribeDBInstanceParamTplResponse(AbstractModel):
|
|
4544
4523
|
@property
|
4545
4524
|
def TotalCount(self):
|
4546
4525
|
"""参数模板总数。
|
4547
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4548
4526
|
:rtype: int
|
4549
4527
|
"""
|
4550
4528
|
return self._TotalCount
|
@@ -5455,7 +5433,6 @@ class DescribeSlowLogsResponse(AbstractModel):
|
|
5455
5433
|
:param _Count: 慢日志总数
|
5456
5434
|
:type Count: int
|
5457
5435
|
:param _SlowLogs: 慢日志详情
|
5458
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5459
5436
|
:type SlowLogs: list of str
|
5460
5437
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5461
5438
|
:type RequestId: str
|
@@ -5478,7 +5455,6 @@ class DescribeSlowLogsResponse(AbstractModel):
|
|
5478
5455
|
@property
|
5479
5456
|
def SlowLogs(self):
|
5480
5457
|
"""慢日志详情
|
5481
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5482
5458
|
:rtype: list of str
|
5483
5459
|
"""
|
5484
5460
|
return self._SlowLogs
|
@@ -6992,31 +6968,22 @@ class InstanceDetail(AbstractModel):
|
|
6992
6968
|
:param _RealInstanceId: 实例对应的物理实例id,回档并替换过的实例有不同的InstanceId和RealInstanceId,从barad获取监控数据等场景下需要用物理id获取
|
6993
6969
|
:type RealInstanceId: str
|
6994
6970
|
:param _ZoneList: 实例当前可用区信息。
|
6995
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6996
6971
|
:type ZoneList: list of str
|
6997
6972
|
:param _MongosNodeNum: mongos节点个数。
|
6998
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6999
6973
|
:type MongosNodeNum: int
|
7000
6974
|
:param _MongosMemory: mongos节点内存。
|
7001
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7002
6975
|
:type MongosMemory: int
|
7003
6976
|
:param _MongosCpuNum: mongos节点CPU核数。
|
7004
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7005
6977
|
:type MongosCpuNum: int
|
7006
6978
|
:param _ConfigServerNodeNum: Config Server节点个数。
|
7007
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7008
6979
|
:type ConfigServerNodeNum: int
|
7009
6980
|
:param _ConfigServerMemory: Config Server节点内存。
|
7010
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7011
6981
|
:type ConfigServerMemory: int
|
7012
6982
|
:param _ConfigServerVolume: Config Server节点磁盘大小。
|
7013
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7014
6983
|
:type ConfigServerVolume: int
|
7015
6984
|
:param _ConfigServerCpuNum: Config Server节点CPU核数。
|
7016
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7017
6985
|
:type ConfigServerCpuNum: int
|
7018
6986
|
:param _ReadonlyNodeNum: readonly节点个数。
|
7019
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7020
6987
|
:type ReadonlyNodeNum: int
|
7021
6988
|
"""
|
7022
6989
|
self._InstanceId = None
|
@@ -7488,7 +7455,6 @@ class InstanceDetail(AbstractModel):
|
|
7488
7455
|
@property
|
7489
7456
|
def ZoneList(self):
|
7490
7457
|
"""实例当前可用区信息。
|
7491
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7492
7458
|
:rtype: list of str
|
7493
7459
|
"""
|
7494
7460
|
return self._ZoneList
|
@@ -7500,7 +7466,6 @@ class InstanceDetail(AbstractModel):
|
|
7500
7466
|
@property
|
7501
7467
|
def MongosNodeNum(self):
|
7502
7468
|
"""mongos节点个数。
|
7503
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7504
7469
|
:rtype: int
|
7505
7470
|
"""
|
7506
7471
|
return self._MongosNodeNum
|
@@ -7512,7 +7477,6 @@ class InstanceDetail(AbstractModel):
|
|
7512
7477
|
@property
|
7513
7478
|
def MongosMemory(self):
|
7514
7479
|
"""mongos节点内存。
|
7515
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7516
7480
|
:rtype: int
|
7517
7481
|
"""
|
7518
7482
|
return self._MongosMemory
|
@@ -7524,7 +7488,6 @@ class InstanceDetail(AbstractModel):
|
|
7524
7488
|
@property
|
7525
7489
|
def MongosCpuNum(self):
|
7526
7490
|
"""mongos节点CPU核数。
|
7527
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7528
7491
|
:rtype: int
|
7529
7492
|
"""
|
7530
7493
|
return self._MongosCpuNum
|
@@ -7536,7 +7499,6 @@ class InstanceDetail(AbstractModel):
|
|
7536
7499
|
@property
|
7537
7500
|
def ConfigServerNodeNum(self):
|
7538
7501
|
"""Config Server节点个数。
|
7539
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7540
7502
|
:rtype: int
|
7541
7503
|
"""
|
7542
7504
|
return self._ConfigServerNodeNum
|
@@ -7548,7 +7510,6 @@ class InstanceDetail(AbstractModel):
|
|
7548
7510
|
@property
|
7549
7511
|
def ConfigServerMemory(self):
|
7550
7512
|
"""Config Server节点内存。
|
7551
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7552
7513
|
:rtype: int
|
7553
7514
|
"""
|
7554
7515
|
return self._ConfigServerMemory
|
@@ -7560,7 +7521,6 @@ class InstanceDetail(AbstractModel):
|
|
7560
7521
|
@property
|
7561
7522
|
def ConfigServerVolume(self):
|
7562
7523
|
"""Config Server节点磁盘大小。
|
7563
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7564
7524
|
:rtype: int
|
7565
7525
|
"""
|
7566
7526
|
return self._ConfigServerVolume
|
@@ -7572,7 +7532,6 @@ class InstanceDetail(AbstractModel):
|
|
7572
7532
|
@property
|
7573
7533
|
def ConfigServerCpuNum(self):
|
7574
7534
|
"""Config Server节点CPU核数。
|
7575
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7576
7535
|
:rtype: int
|
7577
7536
|
"""
|
7578
7537
|
return self._ConfigServerCpuNum
|
@@ -7584,7 +7543,6 @@ class InstanceDetail(AbstractModel):
|
|
7584
7543
|
@property
|
7585
7544
|
def ReadonlyNodeNum(self):
|
7586
7545
|
"""readonly节点个数。
|
7587
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7588
7546
|
:rtype: int
|
7589
7547
|
"""
|
7590
7548
|
return self._ReadonlyNodeNum
|
@@ -8388,22 +8346,16 @@ class KMSInfoDetail(AbstractModel):
|
|
8388
8346
|
def __init__(self):
|
8389
8347
|
r"""
|
8390
8348
|
:param _KeyId: 主密钥 ID。
|
8391
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8392
8349
|
:type KeyId: str
|
8393
8350
|
:param _KeyName: 主密钥名称。
|
8394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8395
8351
|
:type KeyName: str
|
8396
8352
|
:param _CreateTime: 实例与密钥绑定时间。
|
8397
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8398
8353
|
:type CreateTime: str
|
8399
8354
|
:param _Status: 密钥状态。
|
8400
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8401
8355
|
:type Status: str
|
8402
8356
|
:param _KeyUsage: 密钥用途。
|
8403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8404
8357
|
:type KeyUsage: str
|
8405
8358
|
:param _KeyOrigin: 密钥来源。
|
8406
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8407
8359
|
:type KeyOrigin: str
|
8408
8360
|
:param _KmsRegion: kms所在地域。
|
8409
8361
|
:type KmsRegion: str
|
@@ -8419,7 +8371,6 @@ class KMSInfoDetail(AbstractModel):
|
|
8419
8371
|
@property
|
8420
8372
|
def KeyId(self):
|
8421
8373
|
"""主密钥 ID。
|
8422
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8423
8374
|
:rtype: str
|
8424
8375
|
"""
|
8425
8376
|
return self._KeyId
|
@@ -8431,7 +8382,6 @@ class KMSInfoDetail(AbstractModel):
|
|
8431
8382
|
@property
|
8432
8383
|
def KeyName(self):
|
8433
8384
|
"""主密钥名称。
|
8434
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8435
8385
|
:rtype: str
|
8436
8386
|
"""
|
8437
8387
|
return self._KeyName
|
@@ -8443,7 +8393,6 @@ class KMSInfoDetail(AbstractModel):
|
|
8443
8393
|
@property
|
8444
8394
|
def CreateTime(self):
|
8445
8395
|
"""实例与密钥绑定时间。
|
8446
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8447
8396
|
:rtype: str
|
8448
8397
|
"""
|
8449
8398
|
return self._CreateTime
|
@@ -8455,7 +8404,6 @@ class KMSInfoDetail(AbstractModel):
|
|
8455
8404
|
@property
|
8456
8405
|
def Status(self):
|
8457
8406
|
"""密钥状态。
|
8458
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8459
8407
|
:rtype: str
|
8460
8408
|
"""
|
8461
8409
|
return self._Status
|
@@ -8467,7 +8415,6 @@ class KMSInfoDetail(AbstractModel):
|
|
8467
8415
|
@property
|
8468
8416
|
def KeyUsage(self):
|
8469
8417
|
"""密钥用途。
|
8470
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8471
8418
|
:rtype: str
|
8472
8419
|
"""
|
8473
8420
|
return self._KeyUsage
|
@@ -8479,7 +8426,6 @@ class KMSInfoDetail(AbstractModel):
|
|
8479
8426
|
@property
|
8480
8427
|
def KeyOrigin(self):
|
8481
8428
|
"""密钥来源。
|
8482
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8483
8429
|
:rtype: str
|
8484
8430
|
"""
|
8485
8431
|
return self._KeyOrigin
|
@@ -9454,42 +9400,34 @@ class NodeProperty(AbstractModel):
|
|
9454
9400
|
def __init__(self):
|
9455
9401
|
r"""
|
9456
9402
|
:param _Zone: 节点所在的可用区。
|
9457
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9458
9403
|
:type Zone: str
|
9459
9404
|
:param _NodeName: 节点名称。
|
9460
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9461
9405
|
:type NodeName: str
|
9462
9406
|
:param _Address: 节点访问地址。
|
9463
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9464
9407
|
:type Address: str
|
9408
|
+
:param _WanServiceAddress: 节点公网访问外网地址(IP或域名,示例为IP方式)。
|
9409
|
+
:type WanServiceAddress: str
|
9465
9410
|
:param _Role: 角色。
|
9466
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9467
9411
|
:type Role: str
|
9468
9412
|
:param _Hidden: 是否为Hidden节点
|
9469
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9470
9413
|
:type Hidden: bool
|
9471
9414
|
:param _Status: 节点状态,包括:ORMAL/STARTUP/RECOVERING/STARTUP2/UNKNOWN/DOWN/ROLLBACK/REMOVED等。
|
9472
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9473
9415
|
:type Status: str
|
9474
9416
|
:param _SlaveDelay: 主从延迟,单位秒。
|
9475
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9476
9417
|
:type SlaveDelay: int
|
9477
9418
|
:param _Priority: 节点优先级。
|
9478
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9479
9419
|
:type Priority: int
|
9480
9420
|
:param _Votes: 节点投票权。
|
9481
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9482
9421
|
:type Votes: int
|
9483
9422
|
:param _Tags: 节点标签。
|
9484
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9485
9423
|
:type Tags: list of NodeTag
|
9486
9424
|
:param _ReplicateSetId: 副本集Id。
|
9487
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9488
9425
|
:type ReplicateSetId: str
|
9489
9426
|
"""
|
9490
9427
|
self._Zone = None
|
9491
9428
|
self._NodeName = None
|
9492
9429
|
self._Address = None
|
9430
|
+
self._WanServiceAddress = None
|
9493
9431
|
self._Role = None
|
9494
9432
|
self._Hidden = None
|
9495
9433
|
self._Status = None
|
@@ -9502,7 +9440,6 @@ class NodeProperty(AbstractModel):
|
|
9502
9440
|
@property
|
9503
9441
|
def Zone(self):
|
9504
9442
|
"""节点所在的可用区。
|
9505
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9506
9443
|
:rtype: str
|
9507
9444
|
"""
|
9508
9445
|
return self._Zone
|
@@ -9514,7 +9451,6 @@ class NodeProperty(AbstractModel):
|
|
9514
9451
|
@property
|
9515
9452
|
def NodeName(self):
|
9516
9453
|
"""节点名称。
|
9517
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9518
9454
|
:rtype: str
|
9519
9455
|
"""
|
9520
9456
|
return self._NodeName
|
@@ -9526,7 +9462,6 @@ class NodeProperty(AbstractModel):
|
|
9526
9462
|
@property
|
9527
9463
|
def Address(self):
|
9528
9464
|
"""节点访问地址。
|
9529
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9530
9465
|
:rtype: str
|
9531
9466
|
"""
|
9532
9467
|
return self._Address
|
@@ -9535,10 +9470,20 @@ class NodeProperty(AbstractModel):
|
|
9535
9470
|
def Address(self, Address):
|
9536
9471
|
self._Address = Address
|
9537
9472
|
|
9473
|
+
@property
|
9474
|
+
def WanServiceAddress(self):
|
9475
|
+
"""节点公网访问外网地址(IP或域名,示例为IP方式)。
|
9476
|
+
:rtype: str
|
9477
|
+
"""
|
9478
|
+
return self._WanServiceAddress
|
9479
|
+
|
9480
|
+
@WanServiceAddress.setter
|
9481
|
+
def WanServiceAddress(self, WanServiceAddress):
|
9482
|
+
self._WanServiceAddress = WanServiceAddress
|
9483
|
+
|
9538
9484
|
@property
|
9539
9485
|
def Role(self):
|
9540
9486
|
"""角色。
|
9541
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9542
9487
|
:rtype: str
|
9543
9488
|
"""
|
9544
9489
|
return self._Role
|
@@ -9550,7 +9495,6 @@ class NodeProperty(AbstractModel):
|
|
9550
9495
|
@property
|
9551
9496
|
def Hidden(self):
|
9552
9497
|
"""是否为Hidden节点
|
9553
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9554
9498
|
:rtype: bool
|
9555
9499
|
"""
|
9556
9500
|
return self._Hidden
|
@@ -9562,7 +9506,6 @@ class NodeProperty(AbstractModel):
|
|
9562
9506
|
@property
|
9563
9507
|
def Status(self):
|
9564
9508
|
"""节点状态,包括:ORMAL/STARTUP/RECOVERING/STARTUP2/UNKNOWN/DOWN/ROLLBACK/REMOVED等。
|
9565
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9566
9509
|
:rtype: str
|
9567
9510
|
"""
|
9568
9511
|
return self._Status
|
@@ -9574,7 +9517,6 @@ class NodeProperty(AbstractModel):
|
|
9574
9517
|
@property
|
9575
9518
|
def SlaveDelay(self):
|
9576
9519
|
"""主从延迟,单位秒。
|
9577
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9578
9520
|
:rtype: int
|
9579
9521
|
"""
|
9580
9522
|
return self._SlaveDelay
|
@@ -9586,7 +9528,6 @@ class NodeProperty(AbstractModel):
|
|
9586
9528
|
@property
|
9587
9529
|
def Priority(self):
|
9588
9530
|
"""节点优先级。
|
9589
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9590
9531
|
:rtype: int
|
9591
9532
|
"""
|
9592
9533
|
return self._Priority
|
@@ -9598,7 +9539,6 @@ class NodeProperty(AbstractModel):
|
|
9598
9539
|
@property
|
9599
9540
|
def Votes(self):
|
9600
9541
|
"""节点投票权。
|
9601
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9602
9542
|
:rtype: int
|
9603
9543
|
"""
|
9604
9544
|
return self._Votes
|
@@ -9610,7 +9550,6 @@ class NodeProperty(AbstractModel):
|
|
9610
9550
|
@property
|
9611
9551
|
def Tags(self):
|
9612
9552
|
"""节点标签。
|
9613
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9614
9553
|
:rtype: list of NodeTag
|
9615
9554
|
"""
|
9616
9555
|
return self._Tags
|
@@ -9622,7 +9561,6 @@ class NodeProperty(AbstractModel):
|
|
9622
9561
|
@property
|
9623
9562
|
def ReplicateSetId(self):
|
9624
9563
|
"""副本集Id。
|
9625
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9626
9564
|
:rtype: str
|
9627
9565
|
"""
|
9628
9566
|
return self._ReplicateSetId
|
@@ -9636,6 +9574,7 @@ class NodeProperty(AbstractModel):
|
|
9636
9574
|
self._Zone = params.get("Zone")
|
9637
9575
|
self._NodeName = params.get("NodeName")
|
9638
9576
|
self._Address = params.get("Address")
|
9577
|
+
self._WanServiceAddress = params.get("WanServiceAddress")
|
9639
9578
|
self._Role = params.get("Role")
|
9640
9579
|
self._Hidden = params.get("Hidden")
|
9641
9580
|
self._Status = params.get("Status")
|
@@ -9667,10 +9606,8 @@ class NodeTag(AbstractModel):
|
|
9667
9606
|
def __init__(self):
|
9668
9607
|
r"""
|
9669
9608
|
:param _TagKey: 节点Tag key
|
9670
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9671
9609
|
:type TagKey: str
|
9672
9610
|
:param _TagValue: 节点Tag Value
|
9673
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9674
9611
|
:type TagValue: str
|
9675
9612
|
"""
|
9676
9613
|
self._TagKey = None
|
@@ -9679,7 +9616,6 @@ class NodeTag(AbstractModel):
|
|
9679
9616
|
@property
|
9680
9617
|
def TagKey(self):
|
9681
9618
|
"""节点Tag key
|
9682
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9683
9619
|
:rtype: str
|
9684
9620
|
"""
|
9685
9621
|
return self._TagKey
|
@@ -9691,7 +9627,6 @@ class NodeTag(AbstractModel):
|
|
9691
9627
|
@property
|
9692
9628
|
def TagValue(self):
|
9693
9629
|
"""节点Tag Value
|
9694
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9695
9630
|
:rtype: str
|
9696
9631
|
"""
|
9697
9632
|
return self._TagValue
|
@@ -10307,7 +10242,6 @@ class ReplicateSetInfo(AbstractModel):
|
|
10307
10242
|
def __init__(self):
|
10308
10243
|
r"""
|
10309
10244
|
:param _Nodes: 节点属性
|
10310
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10311
10245
|
:type Nodes: list of NodeProperty
|
10312
10246
|
"""
|
10313
10247
|
self._Nodes = None
|
@@ -10315,7 +10249,6 @@ class ReplicateSetInfo(AbstractModel):
|
|
10315
10249
|
@property
|
10316
10250
|
def Nodes(self):
|
10317
10251
|
"""节点属性
|
10318
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10319
10252
|
:rtype: list of NodeProperty
|
10320
10253
|
"""
|
10321
10254
|
return self._Nodes
|