tencentcloud-sdk-python 3.0.1307__py2.py3-none-any.whl → 3.0.1309__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/asr/v20190614/models.py +4 -0
- tencentcloud/bi/v20220105/models.py +124 -2
- tencentcloud/cdwdoris/v20211228/models.py +84 -82
- tencentcloud/cfg/v20210820/models.py +45 -0
- tencentcloud/cwp/v20180228/cwp_client.py +0 -50
- tencentcloud/cwp/v20180228/models.py +0 -717
- tencentcloud/dbbrain/v20210527/models.py +15 -0
- tencentcloud/dlc/v20210125/errorcodes.py +3 -0
- tencentcloud/dlc/v20210125/models.py +6 -6
- tencentcloud/essbasic/v20210526/essbasic_client.py +28 -0
- tencentcloud/essbasic/v20210526/models.py +209 -0
- tencentcloud/hunyuan/v20230901/models.py +19 -0
- tencentcloud/lke/v20231130/models.py +1413 -48
- tencentcloud/ocr/v20181119/models.py +352 -0
- tencentcloud/ocr/v20181119/ocr_client.py +23 -0
- tencentcloud/rum/v20210622/models.py +168 -32
- tencentcloud/scf/v20180416/models.py +4 -4
- tencentcloud/ssl/v20191205/models.py +81 -0
- tencentcloud/ssl/v20191205/ssl_client.py +23 -0
- tencentcloud/tccatalog/__init__.py +0 -0
- tencentcloud/tccatalog/v20241024/__init__.py +0 -0
- tencentcloud/tccatalog/v20241024/errorcodes.py +36 -0
- tencentcloud/tccatalog/v20241024/models.py +917 -0
- tencentcloud/tccatalog/v20241024/tccatalog_client.py +118 -0
- tencentcloud/tdmq/v20200217/models.py +2 -2
- tencentcloud/teo/v20220901/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +5864 -351
- tencentcloud/teo/v20220901/teo_client.py +144 -6
- {tencentcloud_sdk_python-3.0.1307.dist-info → tencentcloud_sdk_python-3.0.1309.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1307.dist-info → tencentcloud_sdk_python-3.0.1309.dist-info}/RECORD +34 -29
- {tencentcloud_sdk_python-3.0.1307.dist-info → tencentcloud_sdk_python-3.0.1309.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1307.dist-info → tencentcloud_sdk_python-3.0.1309.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1307.dist-info → tencentcloud_sdk_python-3.0.1309.dist-info}/top_level.txt +0 -0
@@ -226,7 +226,6 @@ class BackUpJobDisplay(AbstractModel):
|
|
226
226
|
:param _BackUpSize: 备份数据量
|
227
227
|
:type BackUpSize: int
|
228
228
|
:param _BackUpSingleSize: 备份单副本数据量
|
229
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
230
229
|
:type BackUpSingleSize: int
|
231
230
|
:param _BackUpTime: 实例创建时间
|
232
231
|
:type BackUpTime: str
|
@@ -235,23 +234,19 @@ class BackUpJobDisplay(AbstractModel):
|
|
235
234
|
:param _JobStatus: 实例状态
|
236
235
|
:type JobStatus: str
|
237
236
|
:param _BackupType: 0为默认。1时是对远端的doris进行备份,不周期,一次性
|
238
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
239
237
|
:type BackupType: int
|
240
238
|
:param _BackupTimeType: 0为默认。1时是立即备份。2时是迁移
|
241
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
242
239
|
:type BackupTimeType: int
|
243
240
|
:param _DorisSourceInfo: 远端doris的连接信息
|
244
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
245
241
|
:type DorisSourceInfo: :class:`tencentcloud.cdwdoris.v20211228.models.DorisSourceInfo`
|
246
242
|
:param _JobStatusNum: 实例状态对应的数值
|
247
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
248
243
|
:type JobStatusNum: int
|
249
244
|
:param _BackupCosInfo: 备份实例中关于cos的信息
|
250
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
251
245
|
:type BackupCosInfo: :class:`tencentcloud.cdwdoris.v20211228.models.BackupCosInfo`
|
252
246
|
:param _IsUserDefineBucket: 是否使用的自定义桶
|
253
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
254
247
|
:type IsUserDefineBucket: bool
|
248
|
+
:param _ErrorReason: 错误原因
|
249
|
+
:type ErrorReason: str
|
255
250
|
"""
|
256
251
|
self._JobId = None
|
257
252
|
self._Snapshot = None
|
@@ -266,6 +261,7 @@ class BackUpJobDisplay(AbstractModel):
|
|
266
261
|
self._JobStatusNum = None
|
267
262
|
self._BackupCosInfo = None
|
268
263
|
self._IsUserDefineBucket = None
|
264
|
+
self._ErrorReason = None
|
269
265
|
|
270
266
|
@property
|
271
267
|
def JobId(self):
|
@@ -303,7 +299,6 @@ class BackUpJobDisplay(AbstractModel):
|
|
303
299
|
@property
|
304
300
|
def BackUpSingleSize(self):
|
305
301
|
"""备份单副本数据量
|
306
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
307
302
|
:rtype: int
|
308
303
|
"""
|
309
304
|
return self._BackUpSingleSize
|
@@ -348,7 +343,6 @@ class BackUpJobDisplay(AbstractModel):
|
|
348
343
|
@property
|
349
344
|
def BackupType(self):
|
350
345
|
"""0为默认。1时是对远端的doris进行备份,不周期,一次性
|
351
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
352
346
|
:rtype: int
|
353
347
|
"""
|
354
348
|
return self._BackupType
|
@@ -360,7 +354,6 @@ class BackUpJobDisplay(AbstractModel):
|
|
360
354
|
@property
|
361
355
|
def BackupTimeType(self):
|
362
356
|
"""0为默认。1时是立即备份。2时是迁移
|
363
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
364
357
|
:rtype: int
|
365
358
|
"""
|
366
359
|
return self._BackupTimeType
|
@@ -372,7 +365,6 @@ class BackUpJobDisplay(AbstractModel):
|
|
372
365
|
@property
|
373
366
|
def DorisSourceInfo(self):
|
374
367
|
"""远端doris的连接信息
|
375
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
376
368
|
:rtype: :class:`tencentcloud.cdwdoris.v20211228.models.DorisSourceInfo`
|
377
369
|
"""
|
378
370
|
return self._DorisSourceInfo
|
@@ -384,7 +376,6 @@ class BackUpJobDisplay(AbstractModel):
|
|
384
376
|
@property
|
385
377
|
def JobStatusNum(self):
|
386
378
|
"""实例状态对应的数值
|
387
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
388
379
|
:rtype: int
|
389
380
|
"""
|
390
381
|
return self._JobStatusNum
|
@@ -396,7 +387,6 @@ class BackUpJobDisplay(AbstractModel):
|
|
396
387
|
@property
|
397
388
|
def BackupCosInfo(self):
|
398
389
|
"""备份实例中关于cos的信息
|
399
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
400
390
|
:rtype: :class:`tencentcloud.cdwdoris.v20211228.models.BackupCosInfo`
|
401
391
|
"""
|
402
392
|
return self._BackupCosInfo
|
@@ -408,7 +398,6 @@ class BackUpJobDisplay(AbstractModel):
|
|
408
398
|
@property
|
409
399
|
def IsUserDefineBucket(self):
|
410
400
|
"""是否使用的自定义桶
|
411
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
412
401
|
:rtype: bool
|
413
402
|
"""
|
414
403
|
return self._IsUserDefineBucket
|
@@ -417,6 +406,17 @@ class BackUpJobDisplay(AbstractModel):
|
|
417
406
|
def IsUserDefineBucket(self, IsUserDefineBucket):
|
418
407
|
self._IsUserDefineBucket = IsUserDefineBucket
|
419
408
|
|
409
|
+
@property
|
410
|
+
def ErrorReason(self):
|
411
|
+
"""错误原因
|
412
|
+
:rtype: str
|
413
|
+
"""
|
414
|
+
return self._ErrorReason
|
415
|
+
|
416
|
+
@ErrorReason.setter
|
417
|
+
def ErrorReason(self, ErrorReason):
|
418
|
+
self._ErrorReason = ErrorReason
|
419
|
+
|
420
420
|
|
421
421
|
def _deserialize(self, params):
|
422
422
|
self._JobId = params.get("JobId")
|
@@ -436,6 +436,7 @@ class BackUpJobDisplay(AbstractModel):
|
|
436
436
|
self._BackupCosInfo = BackupCosInfo()
|
437
437
|
self._BackupCosInfo._deserialize(params.get("BackupCosInfo"))
|
438
438
|
self._IsUserDefineBucket = params.get("IsUserDefineBucket")
|
439
|
+
self._ErrorReason = params.get("ErrorReason")
|
439
440
|
memeber_set = set(params.keys())
|
440
441
|
for name, value in vars(self).items():
|
441
442
|
property_name = name[1:]
|
@@ -2435,6 +2436,8 @@ class CreateInstanceNewRequest(AbstractModel):
|
|
2435
2436
|
:type EnableMultiZones: bool
|
2436
2437
|
:param _UserMultiZoneInfos: 开启多可用区后,用户的所有可用区和子网信息
|
2437
2438
|
:type UserMultiZoneInfos: :class:`tencentcloud.cdwdoris.v20211228.models.NetworkInfo`
|
2439
|
+
:param _UserMultiZoneInfoArr: 开启多可用区后,用户的所有可用区和子网信息
|
2440
|
+
:type UserMultiZoneInfoArr: list of NetworkInfo
|
2438
2441
|
"""
|
2439
2442
|
self._Zone = None
|
2440
2443
|
self._FeSpec = None
|
@@ -2451,6 +2454,7 @@ class CreateInstanceNewRequest(AbstractModel):
|
|
2451
2454
|
self._CaseSensitive = None
|
2452
2455
|
self._EnableMultiZones = None
|
2453
2456
|
self._UserMultiZoneInfos = None
|
2457
|
+
self._UserMultiZoneInfoArr = None
|
2454
2458
|
|
2455
2459
|
@property
|
2456
2460
|
def Zone(self):
|
@@ -2611,6 +2615,8 @@ class CreateInstanceNewRequest(AbstractModel):
|
|
2611
2615
|
|
2612
2616
|
@property
|
2613
2617
|
def UserMultiZoneInfos(self):
|
2618
|
+
warnings.warn("parameter `UserMultiZoneInfos` is deprecated", DeprecationWarning)
|
2619
|
+
|
2614
2620
|
"""开启多可用区后,用户的所有可用区和子网信息
|
2615
2621
|
:rtype: :class:`tencentcloud.cdwdoris.v20211228.models.NetworkInfo`
|
2616
2622
|
"""
|
@@ -2618,8 +2624,21 @@ class CreateInstanceNewRequest(AbstractModel):
|
|
2618
2624
|
|
2619
2625
|
@UserMultiZoneInfos.setter
|
2620
2626
|
def UserMultiZoneInfos(self, UserMultiZoneInfos):
|
2627
|
+
warnings.warn("parameter `UserMultiZoneInfos` is deprecated", DeprecationWarning)
|
2628
|
+
|
2621
2629
|
self._UserMultiZoneInfos = UserMultiZoneInfos
|
2622
2630
|
|
2631
|
+
@property
|
2632
|
+
def UserMultiZoneInfoArr(self):
|
2633
|
+
"""开启多可用区后,用户的所有可用区和子网信息
|
2634
|
+
:rtype: list of NetworkInfo
|
2635
|
+
"""
|
2636
|
+
return self._UserMultiZoneInfoArr
|
2637
|
+
|
2638
|
+
@UserMultiZoneInfoArr.setter
|
2639
|
+
def UserMultiZoneInfoArr(self, UserMultiZoneInfoArr):
|
2640
|
+
self._UserMultiZoneInfoArr = UserMultiZoneInfoArr
|
2641
|
+
|
2623
2642
|
|
2624
2643
|
def _deserialize(self, params):
|
2625
2644
|
self._Zone = params.get("Zone")
|
@@ -2650,6 +2669,12 @@ class CreateInstanceNewRequest(AbstractModel):
|
|
2650
2669
|
if params.get("UserMultiZoneInfos") is not None:
|
2651
2670
|
self._UserMultiZoneInfos = NetworkInfo()
|
2652
2671
|
self._UserMultiZoneInfos._deserialize(params.get("UserMultiZoneInfos"))
|
2672
|
+
if params.get("UserMultiZoneInfoArr") is not None:
|
2673
|
+
self._UserMultiZoneInfoArr = []
|
2674
|
+
for item in params.get("UserMultiZoneInfoArr"):
|
2675
|
+
obj = NetworkInfo()
|
2676
|
+
obj._deserialize(item)
|
2677
|
+
self._UserMultiZoneInfoArr.append(obj)
|
2653
2678
|
memeber_set = set(params.keys())
|
2654
2679
|
for name, value in vars(self).items():
|
2655
2680
|
property_name = name[1:]
|
@@ -3375,10 +3400,8 @@ class DescribeAreaRegionResponse(AbstractModel):
|
|
3375
3400
|
:param _Items: 地域列表
|
3376
3401
|
:type Items: list of RegionAreaInfo
|
3377
3402
|
:param _FrontEndRules: 前端规则描述
|
3378
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3379
3403
|
:type FrontEndRules: list of FrontEndRule
|
3380
3404
|
:param _AvailableWhiteListNames: 返回可用的白名单名称
|
3381
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3382
3405
|
:type AvailableWhiteListNames: list of str
|
3383
3406
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3384
3407
|
:type RequestId: str
|
@@ -3402,7 +3425,6 @@ class DescribeAreaRegionResponse(AbstractModel):
|
|
3402
3425
|
@property
|
3403
3426
|
def FrontEndRules(self):
|
3404
3427
|
"""前端规则描述
|
3405
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3406
3428
|
:rtype: list of FrontEndRule
|
3407
3429
|
"""
|
3408
3430
|
return self._FrontEndRules
|
@@ -3414,7 +3436,6 @@ class DescribeAreaRegionResponse(AbstractModel):
|
|
3414
3436
|
@property
|
3415
3437
|
def AvailableWhiteListNames(self):
|
3416
3438
|
"""返回可用的白名单名称
|
3417
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3418
3439
|
:rtype: list of str
|
3419
3440
|
"""
|
3420
3441
|
return self._AvailableWhiteListNames
|
@@ -3511,18 +3532,25 @@ class DescribeBackUpJobDetailResponse(AbstractModel):
|
|
3511
3532
|
def __init__(self):
|
3512
3533
|
r"""
|
3513
3534
|
:param _TableContents: 备份表详情
|
3514
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3515
3535
|
:type TableContents: list of BackupTableContent
|
3536
|
+
:param _ErrorMsg: 错误信息
|
3537
|
+
:type ErrorMsg: str
|
3538
|
+
:param _IsUnknownVersion: 是否是未知版本
|
3539
|
+
:type IsUnknownVersion: bool
|
3540
|
+
:param _Msg: 返回对象用字符串表示
|
3541
|
+
:type Msg: str
|
3516
3542
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3517
3543
|
:type RequestId: str
|
3518
3544
|
"""
|
3519
3545
|
self._TableContents = None
|
3546
|
+
self._ErrorMsg = None
|
3547
|
+
self._IsUnknownVersion = None
|
3548
|
+
self._Msg = None
|
3520
3549
|
self._RequestId = None
|
3521
3550
|
|
3522
3551
|
@property
|
3523
3552
|
def TableContents(self):
|
3524
3553
|
"""备份表详情
|
3525
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3526
3554
|
:rtype: list of BackupTableContent
|
3527
3555
|
"""
|
3528
3556
|
return self._TableContents
|
@@ -3531,6 +3559,39 @@ class DescribeBackUpJobDetailResponse(AbstractModel):
|
|
3531
3559
|
def TableContents(self, TableContents):
|
3532
3560
|
self._TableContents = TableContents
|
3533
3561
|
|
3562
|
+
@property
|
3563
|
+
def ErrorMsg(self):
|
3564
|
+
"""错误信息
|
3565
|
+
:rtype: str
|
3566
|
+
"""
|
3567
|
+
return self._ErrorMsg
|
3568
|
+
|
3569
|
+
@ErrorMsg.setter
|
3570
|
+
def ErrorMsg(self, ErrorMsg):
|
3571
|
+
self._ErrorMsg = ErrorMsg
|
3572
|
+
|
3573
|
+
@property
|
3574
|
+
def IsUnknownVersion(self):
|
3575
|
+
"""是否是未知版本
|
3576
|
+
:rtype: bool
|
3577
|
+
"""
|
3578
|
+
return self._IsUnknownVersion
|
3579
|
+
|
3580
|
+
@IsUnknownVersion.setter
|
3581
|
+
def IsUnknownVersion(self, IsUnknownVersion):
|
3582
|
+
self._IsUnknownVersion = IsUnknownVersion
|
3583
|
+
|
3584
|
+
@property
|
3585
|
+
def Msg(self):
|
3586
|
+
"""返回对象用字符串表示
|
3587
|
+
:rtype: str
|
3588
|
+
"""
|
3589
|
+
return self._Msg
|
3590
|
+
|
3591
|
+
@Msg.setter
|
3592
|
+
def Msg(self, Msg):
|
3593
|
+
self._Msg = Msg
|
3594
|
+
|
3534
3595
|
@property
|
3535
3596
|
def RequestId(self):
|
3536
3597
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -3550,6 +3611,9 @@ class DescribeBackUpJobDetailResponse(AbstractModel):
|
|
3550
3611
|
obj = BackupTableContent()
|
3551
3612
|
obj._deserialize(item)
|
3552
3613
|
self._TableContents.append(obj)
|
3614
|
+
self._ErrorMsg = params.get("ErrorMsg")
|
3615
|
+
self._IsUnknownVersion = params.get("IsUnknownVersion")
|
3616
|
+
self._Msg = params.get("Msg")
|
3553
3617
|
self._RequestId = params.get("RequestId")
|
3554
3618
|
|
3555
3619
|
|
@@ -3693,13 +3757,10 @@ class DescribeBackUpJobResponse(AbstractModel):
|
|
3693
3757
|
def __init__(self):
|
3694
3758
|
r"""
|
3695
3759
|
:param _BackUpJobs: 任务列表
|
3696
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3697
3760
|
:type BackUpJobs: list of BackUpJobDisplay
|
3698
3761
|
:param _ErrorMsg: 错误信息
|
3699
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3700
3762
|
:type ErrorMsg: str
|
3701
3763
|
:param _TotalCount: 总数
|
3702
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3703
3764
|
:type TotalCount: int
|
3704
3765
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3705
3766
|
:type RequestId: str
|
@@ -3712,7 +3773,6 @@ class DescribeBackUpJobResponse(AbstractModel):
|
|
3712
3773
|
@property
|
3713
3774
|
def BackUpJobs(self):
|
3714
3775
|
"""任务列表
|
3715
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3716
3776
|
:rtype: list of BackUpJobDisplay
|
3717
3777
|
"""
|
3718
3778
|
return self._BackUpJobs
|
@@ -3724,7 +3784,6 @@ class DescribeBackUpJobResponse(AbstractModel):
|
|
3724
3784
|
@property
|
3725
3785
|
def ErrorMsg(self):
|
3726
3786
|
"""错误信息
|
3727
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3728
3787
|
:rtype: str
|
3729
3788
|
"""
|
3730
3789
|
return self._ErrorMsg
|
@@ -3736,7 +3795,6 @@ class DescribeBackUpJobResponse(AbstractModel):
|
|
3736
3795
|
@property
|
3737
3796
|
def TotalCount(self):
|
3738
3797
|
"""总数
|
3739
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3740
3798
|
:rtype: int
|
3741
3799
|
"""
|
3742
3800
|
return self._TotalCount
|
@@ -3934,13 +3992,10 @@ class DescribeBackUpTablesResponse(AbstractModel):
|
|
3934
3992
|
:param _AvailableTables: 可备份表列表
|
3935
3993
|
:type AvailableTables: list of BackupTableContent
|
3936
3994
|
:param _Msg: msg
|
3937
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3938
3995
|
:type Msg: str
|
3939
3996
|
:param _IsUnknownVersion: 未知version
|
3940
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3941
3997
|
:type IsUnknownVersion: bool
|
3942
3998
|
:param _ErrorMsg: 错误信息
|
3943
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3944
3999
|
:type ErrorMsg: str
|
3945
4000
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3946
4001
|
:type RequestId: str
|
@@ -3965,7 +4020,6 @@ class DescribeBackUpTablesResponse(AbstractModel):
|
|
3965
4020
|
@property
|
3966
4021
|
def Msg(self):
|
3967
4022
|
"""msg
|
3968
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3969
4023
|
:rtype: str
|
3970
4024
|
"""
|
3971
4025
|
return self._Msg
|
@@ -3977,7 +4031,6 @@ class DescribeBackUpTablesResponse(AbstractModel):
|
|
3977
4031
|
@property
|
3978
4032
|
def IsUnknownVersion(self):
|
3979
4033
|
"""未知version
|
3980
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3981
4034
|
:rtype: bool
|
3982
4035
|
"""
|
3983
4036
|
return self._IsUnknownVersion
|
@@ -3989,7 +4042,6 @@ class DescribeBackUpTablesResponse(AbstractModel):
|
|
3989
4042
|
@property
|
3990
4043
|
def ErrorMsg(self):
|
3991
4044
|
"""错误信息
|
3992
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3993
4045
|
:rtype: str
|
3994
4046
|
"""
|
3995
4047
|
return self._ErrorMsg
|
@@ -4082,10 +4134,8 @@ class DescribeBackUpTaskDetailResponse(AbstractModel):
|
|
4082
4134
|
def __init__(self):
|
4083
4135
|
r"""
|
4084
4136
|
:param _BackupStatus: 备份任务进度详情
|
4085
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4086
4137
|
:type BackupStatus: list of BackupStatus
|
4087
4138
|
:param _ErrorMsg: 错误信息
|
4088
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4089
4139
|
:type ErrorMsg: str
|
4090
4140
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4091
4141
|
:type RequestId: str
|
@@ -4097,7 +4147,6 @@ class DescribeBackUpTaskDetailResponse(AbstractModel):
|
|
4097
4147
|
@property
|
4098
4148
|
def BackupStatus(self):
|
4099
4149
|
"""备份任务进度详情
|
4100
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4101
4150
|
:rtype: list of BackupStatus
|
4102
4151
|
"""
|
4103
4152
|
return self._BackupStatus
|
@@ -4109,7 +4158,6 @@ class DescribeBackUpTaskDetailResponse(AbstractModel):
|
|
4109
4158
|
@property
|
4110
4159
|
def ErrorMsg(self):
|
4111
4160
|
"""错误信息
|
4112
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4113
4161
|
:rtype: str
|
4114
4162
|
"""
|
4115
4163
|
return self._ErrorMsg
|
@@ -4425,7 +4473,6 @@ class DescribeClusterConfigsResponse(AbstractModel):
|
|
4425
4473
|
:param _BuildVersion: 返回当前内核版本 如果不存在则返回空字符串
|
4426
4474
|
:type BuildVersion: str
|
4427
4475
|
:param _ErrorMsg: 错误信息
|
4428
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4429
4476
|
:type ErrorMsg: str
|
4430
4477
|
:param _HasCN: 是否包含CN节点
|
4431
4478
|
:type HasCN: bool
|
@@ -4463,7 +4510,6 @@ class DescribeClusterConfigsResponse(AbstractModel):
|
|
4463
4510
|
@property
|
4464
4511
|
def ErrorMsg(self):
|
4465
4512
|
"""错误信息
|
4466
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4467
4513
|
:rtype: str
|
4468
4514
|
"""
|
4469
4515
|
return self._ErrorMsg
|
@@ -4552,10 +4598,8 @@ class DescribeCoolDownBackendsResponse(AbstractModel):
|
|
4552
4598
|
def __init__(self):
|
4553
4599
|
r"""
|
4554
4600
|
:param _ErrorMsg: 错误信息
|
4555
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4556
4601
|
:type ErrorMsg: str
|
4557
4602
|
:param _List: 节点信息列表
|
4558
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4559
4603
|
:type List: list of CoolDownBackend
|
4560
4604
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4561
4605
|
:type RequestId: str
|
@@ -4567,7 +4611,6 @@ class DescribeCoolDownBackendsResponse(AbstractModel):
|
|
4567
4611
|
@property
|
4568
4612
|
def ErrorMsg(self):
|
4569
4613
|
"""错误信息
|
4570
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4571
4614
|
:rtype: str
|
4572
4615
|
"""
|
4573
4616
|
return self._ErrorMsg
|
@@ -4579,7 +4622,6 @@ class DescribeCoolDownBackendsResponse(AbstractModel):
|
|
4579
4622
|
@property
|
4580
4623
|
def List(self):
|
4581
4624
|
"""节点信息列表
|
4582
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4583
4625
|
:rtype: list of CoolDownBackend
|
4584
4626
|
"""
|
4585
4627
|
return self._List
|
@@ -4655,10 +4697,8 @@ class DescribeCoolDownPoliciesResponse(AbstractModel):
|
|
4655
4697
|
def __init__(self):
|
4656
4698
|
r"""
|
4657
4699
|
:param _ErrorMsg: 错误信息
|
4658
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4659
4700
|
:type ErrorMsg: str
|
4660
4701
|
:param _List: 冷热分层策略列表
|
4661
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4662
4702
|
:type List: list of CoolDownPolicyInfo
|
4663
4703
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4664
4704
|
:type RequestId: str
|
@@ -4670,7 +4710,6 @@ class DescribeCoolDownPoliciesResponse(AbstractModel):
|
|
4670
4710
|
@property
|
4671
4711
|
def ErrorMsg(self):
|
4672
4712
|
"""错误信息
|
4673
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4674
4713
|
:rtype: str
|
4675
4714
|
"""
|
4676
4715
|
return self._ErrorMsg
|
@@ -4682,7 +4721,6 @@ class DescribeCoolDownPoliciesResponse(AbstractModel):
|
|
4682
4721
|
@property
|
4683
4722
|
def List(self):
|
4684
4723
|
"""冷热分层策略列表
|
4685
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4686
4724
|
:rtype: list of CoolDownPolicyInfo
|
4687
4725
|
"""
|
4688
4726
|
return self._List
|
@@ -4773,10 +4811,8 @@ class DescribeCoolDownTableDataResponse(AbstractModel):
|
|
4773
4811
|
def __init__(self):
|
4774
4812
|
r"""
|
4775
4813
|
:param _ErrorMsg: 错误信息
|
4776
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4777
4814
|
:type ErrorMsg: str
|
4778
4815
|
:param _List: 冷热分层Table数据列表
|
4779
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4780
4816
|
:type List: list of CoolDownTableDataInfo
|
4781
4817
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4782
4818
|
:type RequestId: str
|
@@ -4788,7 +4824,6 @@ class DescribeCoolDownTableDataResponse(AbstractModel):
|
|
4788
4824
|
@property
|
4789
4825
|
def ErrorMsg(self):
|
4790
4826
|
"""错误信息
|
4791
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4792
4827
|
:rtype: str
|
4793
4828
|
"""
|
4794
4829
|
return self._ErrorMsg
|
@@ -4800,7 +4835,6 @@ class DescribeCoolDownTableDataResponse(AbstractModel):
|
|
4800
4835
|
@property
|
4801
4836
|
def List(self):
|
4802
4837
|
"""冷热分层Table数据列表
|
4803
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4804
4838
|
:rtype: list of CoolDownTableDataInfo
|
4805
4839
|
"""
|
4806
4840
|
return self._List
|
@@ -5506,18 +5540,14 @@ class DescribeInstanceNodesInfoResponse(AbstractModel):
|
|
5506
5540
|
def __init__(self):
|
5507
5541
|
r"""
|
5508
5542
|
:param _BeNodes: Be节点
|
5509
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5510
5543
|
:type BeNodes: list of str
|
5511
5544
|
:param _FeNodes: Fe节点
|
5512
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5513
5545
|
:type FeNodes: list of str
|
5514
5546
|
:param _FeMaster: Fe master节点
|
5515
5547
|
:type FeMaster: str
|
5516
5548
|
:param _BeNodeInfos: Be节点信息
|
5517
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5518
5549
|
:type BeNodeInfos: list of NodeInfo
|
5519
5550
|
:param _FeNodeInfos: Fe节点信息
|
5520
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5521
5551
|
:type FeNodeInfos: list of NodeInfo
|
5522
5552
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5523
5553
|
:type RequestId: str
|
@@ -5532,7 +5562,6 @@ class DescribeInstanceNodesInfoResponse(AbstractModel):
|
|
5532
5562
|
@property
|
5533
5563
|
def BeNodes(self):
|
5534
5564
|
"""Be节点
|
5535
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5536
5565
|
:rtype: list of str
|
5537
5566
|
"""
|
5538
5567
|
return self._BeNodes
|
@@ -5544,7 +5573,6 @@ class DescribeInstanceNodesInfoResponse(AbstractModel):
|
|
5544
5573
|
@property
|
5545
5574
|
def FeNodes(self):
|
5546
5575
|
"""Fe节点
|
5547
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5548
5576
|
:rtype: list of str
|
5549
5577
|
"""
|
5550
5578
|
return self._FeNodes
|
@@ -5567,7 +5595,6 @@ class DescribeInstanceNodesInfoResponse(AbstractModel):
|
|
5567
5595
|
@property
|
5568
5596
|
def BeNodeInfos(self):
|
5569
5597
|
"""Be节点信息
|
5570
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5571
5598
|
:rtype: list of NodeInfo
|
5572
5599
|
"""
|
5573
5600
|
return self._BeNodeInfos
|
@@ -5579,7 +5606,6 @@ class DescribeInstanceNodesInfoResponse(AbstractModel):
|
|
5579
5606
|
@property
|
5580
5607
|
def FeNodeInfos(self):
|
5581
5608
|
"""Fe节点信息
|
5582
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5583
5609
|
:rtype: list of NodeInfo
|
5584
5610
|
"""
|
5585
5611
|
return self._FeNodeInfos
|
@@ -5725,7 +5751,6 @@ class DescribeInstanceNodesResponse(AbstractModel):
|
|
5725
5751
|
:param _TotalCount: 总数
|
5726
5752
|
:type TotalCount: int
|
5727
5753
|
:param _InstanceNodesList: 实例节点总数
|
5728
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5729
5754
|
:type InstanceNodesList: list of InstanceNode
|
5730
5755
|
:param _NodeRoles: 节点类型
|
5731
5756
|
:type NodeRoles: list of str
|
@@ -5751,7 +5776,6 @@ class DescribeInstanceNodesResponse(AbstractModel):
|
|
5751
5776
|
@property
|
5752
5777
|
def InstanceNodesList(self):
|
5753
5778
|
"""实例节点总数
|
5754
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5755
5779
|
:rtype: list of InstanceNode
|
5756
5780
|
"""
|
5757
5781
|
return self._InstanceNodesList
|
@@ -6030,7 +6054,6 @@ class DescribeInstanceOperationsResponse(AbstractModel):
|
|
6030
6054
|
:param _TotalCount: 操作记录总数
|
6031
6055
|
:type TotalCount: int
|
6032
6056
|
:param _Operations: 操作记录具体数据
|
6033
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6034
6057
|
:type Operations: list of InstanceOperation
|
6035
6058
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6036
6059
|
:type RequestId: str
|
@@ -6053,7 +6076,6 @@ class DescribeInstanceOperationsResponse(AbstractModel):
|
|
6053
6076
|
@property
|
6054
6077
|
def Operations(self):
|
6055
6078
|
"""操作记录具体数据
|
6056
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6057
6079
|
:rtype: list of InstanceOperation
|
6058
6080
|
"""
|
6059
6081
|
return self._Operations
|
@@ -6212,19 +6234,14 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
6212
6234
|
:param _InstanceState: 集群状态,例如:Serving
|
6213
6235
|
:type InstanceState: str
|
6214
6236
|
:param _FlowCreateTime: 集群操作创建时间
|
6215
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6216
6237
|
:type FlowCreateTime: str
|
6217
6238
|
:param _FlowName: 集群操作名称
|
6218
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6219
6239
|
:type FlowName: str
|
6220
6240
|
:param _FlowProgress: 集群操作进度
|
6221
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6222
6241
|
:type FlowProgress: float
|
6223
6242
|
:param _InstanceStateDesc: 集群状态描述,例如:运行中
|
6224
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6225
6243
|
:type InstanceStateDesc: str
|
6226
6244
|
:param _FlowMsg: 集群流程错误信息,例如:“创建失败,资源不足”
|
6227
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6228
6245
|
:type FlowMsg: str
|
6229
6246
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6230
6247
|
:type RequestId: str
|
@@ -6251,7 +6268,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
6251
6268
|
@property
|
6252
6269
|
def FlowCreateTime(self):
|
6253
6270
|
"""集群操作创建时间
|
6254
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6255
6271
|
:rtype: str
|
6256
6272
|
"""
|
6257
6273
|
return self._FlowCreateTime
|
@@ -6263,7 +6279,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
6263
6279
|
@property
|
6264
6280
|
def FlowName(self):
|
6265
6281
|
"""集群操作名称
|
6266
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6267
6282
|
:rtype: str
|
6268
6283
|
"""
|
6269
6284
|
return self._FlowName
|
@@ -6275,7 +6290,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
6275
6290
|
@property
|
6276
6291
|
def FlowProgress(self):
|
6277
6292
|
"""集群操作进度
|
6278
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6279
6293
|
:rtype: float
|
6280
6294
|
"""
|
6281
6295
|
return self._FlowProgress
|
@@ -6287,7 +6301,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
6287
6301
|
@property
|
6288
6302
|
def InstanceStateDesc(self):
|
6289
6303
|
"""集群状态描述,例如:运行中
|
6290
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6291
6304
|
:rtype: str
|
6292
6305
|
"""
|
6293
6306
|
return self._InstanceStateDesc
|
@@ -6299,7 +6312,6 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
6299
6312
|
@property
|
6300
6313
|
def FlowMsg(self):
|
6301
6314
|
"""集群流程错误信息,例如:“创建失败,资源不足”
|
6302
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6303
6315
|
:rtype: str
|
6304
6316
|
"""
|
6305
6317
|
return self._FlowMsg
|
@@ -6374,10 +6386,8 @@ class DescribeInstanceUsedSubnetsResponse(AbstractModel):
|
|
6374
6386
|
def __init__(self):
|
6375
6387
|
r"""
|
6376
6388
|
:param _VpcId: 集群使用的vpc信息
|
6377
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6378
6389
|
:type VpcId: str
|
6379
6390
|
:param _UsedSubnets: 集群使用的subnet信息
|
6380
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6381
6391
|
:type UsedSubnets: list of str
|
6382
6392
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6383
6393
|
:type RequestId: str
|
@@ -6389,7 +6399,6 @@ class DescribeInstanceUsedSubnetsResponse(AbstractModel):
|
|
6389
6399
|
@property
|
6390
6400
|
def VpcId(self):
|
6391
6401
|
"""集群使用的vpc信息
|
6392
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6393
6402
|
:rtype: str
|
6394
6403
|
"""
|
6395
6404
|
return self._VpcId
|
@@ -6401,7 +6410,6 @@ class DescribeInstanceUsedSubnetsResponse(AbstractModel):
|
|
6401
6410
|
@property
|
6402
6411
|
def UsedSubnets(self):
|
6403
6412
|
"""集群使用的subnet信息
|
6404
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6405
6413
|
:rtype: list of str
|
6406
6414
|
"""
|
6407
6415
|
return self._UsedSubnets
|
@@ -6491,7 +6499,6 @@ class DescribeInstancesHealthStateResponse(AbstractModel):
|
|
6491
6499
|
def __init__(self):
|
6492
6500
|
r"""
|
6493
6501
|
:param _Data: base64编码后的数据,包含了集群的健康信息
|
6494
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6495
6502
|
:type Data: str
|
6496
6503
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6497
6504
|
:type RequestId: str
|
@@ -6502,7 +6509,6 @@ class DescribeInstancesHealthStateResponse(AbstractModel):
|
|
6502
6509
|
@property
|
6503
6510
|
def Data(self):
|
6504
6511
|
"""base64编码后的数据,包含了集群的健康信息
|
6505
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6506
6512
|
:rtype: str
|
6507
6513
|
"""
|
6508
6514
|
return self._Data
|
@@ -6751,10 +6757,8 @@ class DescribeRestoreTaskDetailResponse(AbstractModel):
|
|
6751
6757
|
def __init__(self):
|
6752
6758
|
r"""
|
6753
6759
|
:param _RestoreStatus: 恢复任务进度详情
|
6754
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6755
6760
|
:type RestoreStatus: list of RestoreStatus
|
6756
6761
|
:param _ErrorMsg: 错误信息
|
6757
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6758
6762
|
:type ErrorMsg: str
|
6759
6763
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6760
6764
|
:type RequestId: str
|
@@ -6766,7 +6770,6 @@ class DescribeRestoreTaskDetailResponse(AbstractModel):
|
|
6766
6770
|
@property
|
6767
6771
|
def RestoreStatus(self):
|
6768
6772
|
"""恢复任务进度详情
|
6769
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6770
6773
|
:rtype: list of RestoreStatus
|
6771
6774
|
"""
|
6772
6775
|
return self._RestoreStatus
|
@@ -6778,7 +6781,6 @@ class DescribeRestoreTaskDetailResponse(AbstractModel):
|
|
6778
6781
|
@property
|
6779
6782
|
def ErrorMsg(self):
|
6780
6783
|
"""错误信息
|
6781
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6782
6784
|
:rtype: str
|
6783
6785
|
"""
|
6784
6786
|
return self._ErrorMsg
|