tencentcloud-sdk-python 3.0.1352__py2.py3-none-any.whl → 3.0.1354__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/batch/v20170312/batch_client.py +0 -46
- tencentcloud/batch/v20170312/errorcodes.py +0 -9
- tencentcloud/batch/v20170312/models.py +21 -962
- tencentcloud/bh/v20230418/models.py +15 -0
- tencentcloud/bi/v20220105/models.py +145 -0
- tencentcloud/cam/v20190116/errorcodes.py +3 -0
- tencentcloud/cam/v20190116/models.py +0 -82
- tencentcloud/cbs/v20170312/models.py +6 -14
- tencentcloud/cdn/v20180606/models.py +0 -46
- tencentcloud/chdfs/v20201112/models.py +2 -2
- tencentcloud/ckafka/v20190819/models.py +4 -4
- tencentcloud/clb/v20180317/models.py +19 -0
- tencentcloud/controlcenter/v20230110/models.py +0 -58
- tencentcloud/dbbrain/v20191016/dbbrain_client.py +23 -0
- tencentcloud/dbbrain/v20191016/models.py +375 -0
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +46 -0
- tencentcloud/dbbrain/v20210527/models.py +701 -26
- tencentcloud/dcdb/v20180411/models.py +175 -2
- tencentcloud/dnspod/v20210323/models.py +0 -70
- tencentcloud/dts/v20211206/models.py +92 -0
- tencentcloud/facefusion/v20220927/models.py +4 -2
- tencentcloud/gs/v20191118/models.py +16 -4
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
- tencentcloud/iotexplorer/v20190423/models.py +49 -416
- tencentcloud/lkeap/v20240522/models.py +12 -6
- tencentcloud/mariadb/v20170312/models.py +151 -2
- tencentcloud/mps/v20190612/models.py +2 -2
- tencentcloud/mqtt/v20240516/models.py +8 -2
- tencentcloud/ocr/v20181119/errorcodes.py +0 -3
- tencentcloud/ocr/v20181119/models.py +0 -558
- tencentcloud/ocr/v20181119/ocr_client.py +0 -23
- tencentcloud/organization/v20210331/models.py +15 -0
- tencentcloud/sqlserver/v20180328/models.py +15 -0
- tencentcloud/tcb/v20180608/models.py +20 -0
- tencentcloud/teo/v20220106/teo_client.py +6 -2
- tencentcloud/teo/v20220901/errorcodes.py +3 -0
- tencentcloud/tione/v20211111/models.py +35 -3
- tencentcloud/tse/v20201207/models.py +0 -530
- tencentcloud/vod/v20240718/models.py +0 -2
- tencentcloud/vpc/v20170312/models.py +300 -0
- tencentcloud/vpc/v20170312/vpc_client.py +26 -0
- tencentcloud/wedata/v20210820/models.py +32 -0
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1354.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1354.dist-info}/RECORD +48 -48
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1354.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1354.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1354.dist-info}/top_level.txt +0 -0
@@ -209,10 +209,8 @@ class AutoScalerBehavior(AbstractModel):
|
|
209
209
|
def __init__(self):
|
210
210
|
r"""
|
211
211
|
:param _ScaleUp: 扩容行为配置
|
212
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
213
212
|
:type ScaleUp: :class:`tencentcloud.tse.v20201207.models.AutoScalerRules`
|
214
213
|
:param _ScaleDown: 缩容行为配置
|
215
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
216
214
|
:type ScaleDown: :class:`tencentcloud.tse.v20201207.models.AutoScalerRules`
|
217
215
|
"""
|
218
216
|
self._ScaleUp = None
|
@@ -221,7 +219,6 @@ class AutoScalerBehavior(AbstractModel):
|
|
221
219
|
@property
|
222
220
|
def ScaleUp(self):
|
223
221
|
"""扩容行为配置
|
224
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
225
222
|
:rtype: :class:`tencentcloud.tse.v20201207.models.AutoScalerRules`
|
226
223
|
"""
|
227
224
|
return self._ScaleUp
|
@@ -233,7 +230,6 @@ class AutoScalerBehavior(AbstractModel):
|
|
233
230
|
@property
|
234
231
|
def ScaleDown(self):
|
235
232
|
"""缩容行为配置
|
236
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
237
233
|
:rtype: :class:`tencentcloud.tse.v20201207.models.AutoScalerRules`
|
238
234
|
"""
|
239
235
|
return self._ScaleDown
|
@@ -268,13 +264,10 @@ class AutoScalerPolicy(AbstractModel):
|
|
268
264
|
def __init__(self):
|
269
265
|
r"""
|
270
266
|
:param _Type: 类型,Pods
|
271
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
272
267
|
:type Type: str
|
273
268
|
:param _Value: 数量
|
274
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
275
269
|
:type Value: int
|
276
270
|
:param _PeriodSeconds: 扩容周期
|
277
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
278
271
|
:type PeriodSeconds: int
|
279
272
|
"""
|
280
273
|
self._Type = None
|
@@ -284,7 +277,6 @@ class AutoScalerPolicy(AbstractModel):
|
|
284
277
|
@property
|
285
278
|
def Type(self):
|
286
279
|
"""类型,Pods
|
287
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
288
280
|
:rtype: str
|
289
281
|
"""
|
290
282
|
return self._Type
|
@@ -296,7 +288,6 @@ class AutoScalerPolicy(AbstractModel):
|
|
296
288
|
@property
|
297
289
|
def Value(self):
|
298
290
|
"""数量
|
299
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
300
291
|
:rtype: int
|
301
292
|
"""
|
302
293
|
return self._Value
|
@@ -308,7 +299,6 @@ class AutoScalerPolicy(AbstractModel):
|
|
308
299
|
@property
|
309
300
|
def PeriodSeconds(self):
|
310
301
|
"""扩容周期
|
311
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
312
302
|
:rtype: int
|
313
303
|
"""
|
314
304
|
return self._PeriodSeconds
|
@@ -340,13 +330,10 @@ class AutoScalerRules(AbstractModel):
|
|
340
330
|
def __init__(self):
|
341
331
|
r"""
|
342
332
|
:param _StabilizationWindowSeconds: 稳定窗口时间,扩容时默认0,缩容时默认300
|
343
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
344
333
|
:type StabilizationWindowSeconds: int
|
345
334
|
:param _SelectPolicy: 选择策略依据
|
346
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
347
335
|
:type SelectPolicy: str
|
348
336
|
:param _Policies: 扩缩容策略
|
349
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
350
337
|
:type Policies: list of AutoScalerPolicy
|
351
338
|
"""
|
352
339
|
self._StabilizationWindowSeconds = None
|
@@ -356,7 +343,6 @@ class AutoScalerRules(AbstractModel):
|
|
356
343
|
@property
|
357
344
|
def StabilizationWindowSeconds(self):
|
358
345
|
"""稳定窗口时间,扩容时默认0,缩容时默认300
|
359
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
360
346
|
:rtype: int
|
361
347
|
"""
|
362
348
|
return self._StabilizationWindowSeconds
|
@@ -368,7 +354,6 @@ class AutoScalerRules(AbstractModel):
|
|
368
354
|
@property
|
369
355
|
def SelectPolicy(self):
|
370
356
|
"""选择策略依据
|
371
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
372
357
|
:rtype: str
|
373
358
|
"""
|
374
359
|
return self._SelectPolicy
|
@@ -380,7 +365,6 @@ class AutoScalerRules(AbstractModel):
|
|
380
365
|
@property
|
381
366
|
def Policies(self):
|
382
367
|
"""扩缩容策略
|
383
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
384
368
|
:rtype: list of AutoScalerPolicy
|
385
369
|
"""
|
386
370
|
return self._Policies
|
@@ -528,13 +512,10 @@ class BoundK8SInfo(AbstractModel):
|
|
528
512
|
:param _BoundClusterId: 绑定的kubernetes集群ID
|
529
513
|
:type BoundClusterId: str
|
530
514
|
:param _BoundClusterType: 绑定的kubernetes的集群类型,分tke和eks两种
|
531
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
532
515
|
:type BoundClusterType: str
|
533
516
|
:param _SyncMode: 服务同步模式,all为全量同步,demand为按需同步
|
534
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
535
517
|
:type SyncMode: str
|
536
518
|
:param _BindRegion: 绑定的kubernetes集群所在地域
|
537
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
538
519
|
:type BindRegion: str
|
539
520
|
"""
|
540
521
|
self._BoundClusterId = None
|
@@ -556,7 +537,6 @@ class BoundK8SInfo(AbstractModel):
|
|
556
537
|
@property
|
557
538
|
def BoundClusterType(self):
|
558
539
|
"""绑定的kubernetes的集群类型,分tke和eks两种
|
559
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
560
540
|
:rtype: str
|
561
541
|
"""
|
562
542
|
return self._BoundClusterType
|
@@ -568,7 +548,6 @@ class BoundK8SInfo(AbstractModel):
|
|
568
548
|
@property
|
569
549
|
def SyncMode(self):
|
570
550
|
"""服务同步模式,all为全量同步,demand为按需同步
|
571
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
572
551
|
:rtype: str
|
573
552
|
"""
|
574
553
|
return self._SyncMode
|
@@ -580,7 +559,6 @@ class BoundK8SInfo(AbstractModel):
|
|
580
559
|
@property
|
581
560
|
def BindRegion(self):
|
582
561
|
"""绑定的kubernetes集群所在地域
|
583
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
584
562
|
:rtype: str
|
585
563
|
"""
|
586
564
|
return self._BindRegion
|
@@ -613,13 +591,10 @@ class CLBMultiRegion(AbstractModel):
|
|
613
591
|
def __init__(self):
|
614
592
|
r"""
|
615
593
|
:param _CLBMultiZoneFlag: 是否启用多可用区
|
616
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
617
594
|
:type CLBMultiZoneFlag: bool
|
618
595
|
:param _CLBMasterZone: 主可用区信息
|
619
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
620
596
|
:type CLBMasterZone: str
|
621
597
|
:param _CLBSlaveZone: 备可用区信息
|
622
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
623
598
|
:type CLBSlaveZone: str
|
624
599
|
"""
|
625
600
|
self._CLBMultiZoneFlag = None
|
@@ -629,7 +604,6 @@ class CLBMultiRegion(AbstractModel):
|
|
629
604
|
@property
|
630
605
|
def CLBMultiZoneFlag(self):
|
631
606
|
"""是否启用多可用区
|
632
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
633
607
|
:rtype: bool
|
634
608
|
"""
|
635
609
|
return self._CLBMultiZoneFlag
|
@@ -641,7 +615,6 @@ class CLBMultiRegion(AbstractModel):
|
|
641
615
|
@property
|
642
616
|
def CLBMasterZone(self):
|
643
617
|
"""主可用区信息
|
644
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
645
618
|
:rtype: str
|
646
619
|
"""
|
647
620
|
return self._CLBMasterZone
|
@@ -653,7 +626,6 @@ class CLBMultiRegion(AbstractModel):
|
|
653
626
|
@property
|
654
627
|
def CLBSlaveZone(self):
|
655
628
|
"""备可用区信息
|
656
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
657
629
|
:rtype: str
|
658
630
|
"""
|
659
631
|
return self._CLBSlaveZone
|
@@ -738,7 +710,6 @@ class CertificateInfo(AbstractModel):
|
|
738
710
|
def __init__(self):
|
739
711
|
r"""
|
740
712
|
:param _Id: 唯一id
|
741
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
742
713
|
:type Id: str
|
743
714
|
"""
|
744
715
|
self._Id = None
|
@@ -746,7 +717,6 @@ class CertificateInfo(AbstractModel):
|
|
746
717
|
@property
|
747
718
|
def Id(self):
|
748
719
|
"""唯一id
|
749
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
750
720
|
:rtype: str
|
751
721
|
"""
|
752
722
|
return self._Id
|
@@ -2518,7 +2488,6 @@ class CloudNativeAPIGatewayStrategyAutoScalerConfig(AbstractModel):
|
|
2518
2488
|
def __init__(self):
|
2519
2489
|
r"""
|
2520
2490
|
:param _MaxReplicas: 最大副本数
|
2521
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2522
2491
|
:type MaxReplicas: int
|
2523
2492
|
:param _Metrics: 指标列表
|
2524
2493
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -2554,7 +2523,6 @@ class CloudNativeAPIGatewayStrategyAutoScalerConfig(AbstractModel):
|
|
2554
2523
|
@property
|
2555
2524
|
def MaxReplicas(self):
|
2556
2525
|
"""最大副本数
|
2557
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2558
2526
|
:rtype: int
|
2559
2527
|
"""
|
2560
2528
|
return self._MaxReplicas
|
@@ -2707,13 +2675,10 @@ class CloudNativeAPIGatewayStrategyAutoScalerConfigMetric(AbstractModel):
|
|
2707
2675
|
:param _ResourceName: 指标资源名称
|
2708
2676
|
- cpu
|
2709
2677
|
- memory
|
2710
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2711
2678
|
:type ResourceName: str
|
2712
2679
|
:param _TargetType: 指标目标类型,目前只支持百分比Utilization
|
2713
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2714
2680
|
:type TargetType: str
|
2715
2681
|
:param _TargetValue: 指标目标值
|
2716
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2717
2682
|
:type TargetValue: int
|
2718
2683
|
"""
|
2719
2684
|
self._Type = None
|
@@ -2738,7 +2703,6 @@ class CloudNativeAPIGatewayStrategyAutoScalerConfigMetric(AbstractModel):
|
|
2738
2703
|
"""指标资源名称
|
2739
2704
|
- cpu
|
2740
2705
|
- memory
|
2741
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2742
2706
|
:rtype: str
|
2743
2707
|
"""
|
2744
2708
|
return self._ResourceName
|
@@ -2750,7 +2714,6 @@ class CloudNativeAPIGatewayStrategyAutoScalerConfigMetric(AbstractModel):
|
|
2750
2714
|
@property
|
2751
2715
|
def TargetType(self):
|
2752
2716
|
"""指标目标类型,目前只支持百分比Utilization
|
2753
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2754
2717
|
:rtype: str
|
2755
2718
|
"""
|
2756
2719
|
return self._TargetType
|
@@ -2762,7 +2725,6 @@ class CloudNativeAPIGatewayStrategyAutoScalerConfigMetric(AbstractModel):
|
|
2762
2725
|
@property
|
2763
2726
|
def TargetValue(self):
|
2764
2727
|
"""指标目标值
|
2765
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2766
2728
|
:rtype: int
|
2767
2729
|
"""
|
2768
2730
|
return self._TargetValue
|
@@ -3030,16 +2992,12 @@ class CloudNativeAPIGatewayStrategyCronScalerConfigParam(AbstractModel):
|
|
3030
2992
|
def __init__(self):
|
3031
2993
|
r"""
|
3032
2994
|
:param _Period: 定时伸缩周期
|
3033
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3034
2995
|
:type Period: str
|
3035
2996
|
:param _StartAt: 定时伸缩开始时间
|
3036
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3037
2997
|
:type StartAt: str
|
3038
2998
|
:param _TargetReplicas: 定时伸缩目标节点数,不超过指标伸缩中定义的最大节点数
|
3039
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3040
2999
|
:type TargetReplicas: int
|
3041
3000
|
:param _Crontab: 定时伸缩cron表达式,无需输入
|
3042
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3043
3001
|
:type Crontab: str
|
3044
3002
|
"""
|
3045
3003
|
self._Period = None
|
@@ -3050,7 +3008,6 @@ class CloudNativeAPIGatewayStrategyCronScalerConfigParam(AbstractModel):
|
|
3050
3008
|
@property
|
3051
3009
|
def Period(self):
|
3052
3010
|
"""定时伸缩周期
|
3053
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3054
3011
|
:rtype: str
|
3055
3012
|
"""
|
3056
3013
|
return self._Period
|
@@ -3062,7 +3019,6 @@ class CloudNativeAPIGatewayStrategyCronScalerConfigParam(AbstractModel):
|
|
3062
3019
|
@property
|
3063
3020
|
def StartAt(self):
|
3064
3021
|
"""定时伸缩开始时间
|
3065
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3066
3022
|
:rtype: str
|
3067
3023
|
"""
|
3068
3024
|
return self._StartAt
|
@@ -3074,7 +3030,6 @@ class CloudNativeAPIGatewayStrategyCronScalerConfigParam(AbstractModel):
|
|
3074
3030
|
@property
|
3075
3031
|
def TargetReplicas(self):
|
3076
3032
|
"""定时伸缩目标节点数,不超过指标伸缩中定义的最大节点数
|
3077
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3078
3033
|
:rtype: int
|
3079
3034
|
"""
|
3080
3035
|
return self._TargetReplicas
|
@@ -3086,7 +3041,6 @@ class CloudNativeAPIGatewayStrategyCronScalerConfigParam(AbstractModel):
|
|
3086
3041
|
@property
|
3087
3042
|
def Crontab(self):
|
3088
3043
|
"""定时伸缩cron表达式,无需输入
|
3089
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3090
3044
|
:rtype: str
|
3091
3045
|
"""
|
3092
3046
|
return self._Crontab
|
@@ -3457,58 +3411,40 @@ class ConfigFileGroup(AbstractModel):
|
|
3457
3411
|
def __init__(self):
|
3458
3412
|
r"""
|
3459
3413
|
:param _Id: 配置文件组id
|
3460
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3461
3414
|
:type Id: int
|
3462
3415
|
:param _Name: 配置文件组名称
|
3463
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3464
3416
|
:type Name: str
|
3465
3417
|
:param _Namespace: 命名空间
|
3466
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3467
3418
|
:type Namespace: str
|
3468
3419
|
:param _Comment: 备注
|
3469
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3470
3420
|
:type Comment: str
|
3471
3421
|
:param _CreateTime: 创建时间
|
3472
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3473
3422
|
:type CreateTime: str
|
3474
3423
|
:param _CreateBy: 创建者
|
3475
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3476
3424
|
:type CreateBy: str
|
3477
3425
|
:param _ModifyTime: 修改时间
|
3478
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3479
3426
|
:type ModifyTime: str
|
3480
3427
|
:param _ModifyBy: 修改者
|
3481
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3482
3428
|
:type ModifyBy: str
|
3483
3429
|
:param _FileCount: 文件数
|
3484
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3485
3430
|
:type FileCount: int
|
3486
3431
|
:param _UserIds: 关联用户,link_users
|
3487
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3488
3432
|
:type UserIds: list of str
|
3489
3433
|
:param _GroupIds: 组id,link_groups
|
3490
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3491
3434
|
:type GroupIds: list of str
|
3492
3435
|
:param _RemoveUserIds: remove_link_users
|
3493
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3494
3436
|
:type RemoveUserIds: list of str
|
3495
3437
|
:param _RemoveGroupIds: remove_link_groups
|
3496
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3497
3438
|
:type RemoveGroupIds: list of str
|
3498
3439
|
:param _Editable: 是否可编辑
|
3499
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3500
3440
|
:type Editable: bool
|
3501
3441
|
:param _Owner: 归属者
|
3502
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3503
3442
|
:type Owner: str
|
3504
3443
|
:param _Department: 部门
|
3505
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3506
3444
|
:type Department: str
|
3507
3445
|
:param _Business: 业务
|
3508
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3509
3446
|
:type Business: str
|
3510
3447
|
:param _ConfigFileGroupTags: 配置文件组标签
|
3511
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3512
3448
|
:type ConfigFileGroupTags: list of ConfigFileGroupTag
|
3513
3449
|
"""
|
3514
3450
|
self._Id = None
|
@@ -3533,7 +3469,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3533
3469
|
@property
|
3534
3470
|
def Id(self):
|
3535
3471
|
"""配置文件组id
|
3536
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3537
3472
|
:rtype: int
|
3538
3473
|
"""
|
3539
3474
|
return self._Id
|
@@ -3545,7 +3480,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3545
3480
|
@property
|
3546
3481
|
def Name(self):
|
3547
3482
|
"""配置文件组名称
|
3548
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3549
3483
|
:rtype: str
|
3550
3484
|
"""
|
3551
3485
|
return self._Name
|
@@ -3557,7 +3491,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3557
3491
|
@property
|
3558
3492
|
def Namespace(self):
|
3559
3493
|
"""命名空间
|
3560
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3561
3494
|
:rtype: str
|
3562
3495
|
"""
|
3563
3496
|
return self._Namespace
|
@@ -3569,7 +3502,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3569
3502
|
@property
|
3570
3503
|
def Comment(self):
|
3571
3504
|
"""备注
|
3572
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3573
3505
|
:rtype: str
|
3574
3506
|
"""
|
3575
3507
|
return self._Comment
|
@@ -3581,7 +3513,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3581
3513
|
@property
|
3582
3514
|
def CreateTime(self):
|
3583
3515
|
"""创建时间
|
3584
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3585
3516
|
:rtype: str
|
3586
3517
|
"""
|
3587
3518
|
return self._CreateTime
|
@@ -3593,7 +3524,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3593
3524
|
@property
|
3594
3525
|
def CreateBy(self):
|
3595
3526
|
"""创建者
|
3596
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3597
3527
|
:rtype: str
|
3598
3528
|
"""
|
3599
3529
|
return self._CreateBy
|
@@ -3605,7 +3535,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3605
3535
|
@property
|
3606
3536
|
def ModifyTime(self):
|
3607
3537
|
"""修改时间
|
3608
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3609
3538
|
:rtype: str
|
3610
3539
|
"""
|
3611
3540
|
return self._ModifyTime
|
@@ -3617,7 +3546,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3617
3546
|
@property
|
3618
3547
|
def ModifyBy(self):
|
3619
3548
|
"""修改者
|
3620
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3621
3549
|
:rtype: str
|
3622
3550
|
"""
|
3623
3551
|
return self._ModifyBy
|
@@ -3629,7 +3557,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3629
3557
|
@property
|
3630
3558
|
def FileCount(self):
|
3631
3559
|
"""文件数
|
3632
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3633
3560
|
:rtype: int
|
3634
3561
|
"""
|
3635
3562
|
return self._FileCount
|
@@ -3641,7 +3568,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3641
3568
|
@property
|
3642
3569
|
def UserIds(self):
|
3643
3570
|
"""关联用户,link_users
|
3644
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3645
3571
|
:rtype: list of str
|
3646
3572
|
"""
|
3647
3573
|
return self._UserIds
|
@@ -3653,7 +3579,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3653
3579
|
@property
|
3654
3580
|
def GroupIds(self):
|
3655
3581
|
"""组id,link_groups
|
3656
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3657
3582
|
:rtype: list of str
|
3658
3583
|
"""
|
3659
3584
|
return self._GroupIds
|
@@ -3665,7 +3590,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3665
3590
|
@property
|
3666
3591
|
def RemoveUserIds(self):
|
3667
3592
|
"""remove_link_users
|
3668
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3669
3593
|
:rtype: list of str
|
3670
3594
|
"""
|
3671
3595
|
return self._RemoveUserIds
|
@@ -3677,7 +3601,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3677
3601
|
@property
|
3678
3602
|
def RemoveGroupIds(self):
|
3679
3603
|
"""remove_link_groups
|
3680
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3681
3604
|
:rtype: list of str
|
3682
3605
|
"""
|
3683
3606
|
return self._RemoveGroupIds
|
@@ -3689,7 +3612,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3689
3612
|
@property
|
3690
3613
|
def Editable(self):
|
3691
3614
|
"""是否可编辑
|
3692
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3693
3615
|
:rtype: bool
|
3694
3616
|
"""
|
3695
3617
|
return self._Editable
|
@@ -3701,7 +3623,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3701
3623
|
@property
|
3702
3624
|
def Owner(self):
|
3703
3625
|
"""归属者
|
3704
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3705
3626
|
:rtype: str
|
3706
3627
|
"""
|
3707
3628
|
return self._Owner
|
@@ -3713,7 +3634,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3713
3634
|
@property
|
3714
3635
|
def Department(self):
|
3715
3636
|
"""部门
|
3716
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3717
3637
|
:rtype: str
|
3718
3638
|
"""
|
3719
3639
|
return self._Department
|
@@ -3725,7 +3645,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3725
3645
|
@property
|
3726
3646
|
def Business(self):
|
3727
3647
|
"""业务
|
3728
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3729
3648
|
:rtype: str
|
3730
3649
|
"""
|
3731
3650
|
return self._Business
|
@@ -3737,7 +3656,6 @@ class ConfigFileGroup(AbstractModel):
|
|
3737
3656
|
@property
|
3738
3657
|
def ConfigFileGroupTags(self):
|
3739
3658
|
"""配置文件组标签
|
3740
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3741
3659
|
:rtype: list of ConfigFileGroupTag
|
3742
3660
|
"""
|
3743
3661
|
return self._ConfigFileGroupTags
|
@@ -3789,10 +3707,8 @@ class ConfigFileGroupTag(AbstractModel):
|
|
3789
3707
|
def __init__(self):
|
3790
3708
|
r"""
|
3791
3709
|
:param _Key: key-value 键
|
3792
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3793
3710
|
:type Key: str
|
3794
3711
|
:param _Value: key-value 值
|
3795
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3796
3712
|
:type Value: str
|
3797
3713
|
"""
|
3798
3714
|
self._Key = None
|
@@ -3801,7 +3717,6 @@ class ConfigFileGroupTag(AbstractModel):
|
|
3801
3717
|
@property
|
3802
3718
|
def Key(self):
|
3803
3719
|
"""key-value 键
|
3804
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3805
3720
|
:rtype: str
|
3806
3721
|
"""
|
3807
3722
|
return self._Key
|
@@ -3813,7 +3728,6 @@ class ConfigFileGroupTag(AbstractModel):
|
|
3813
3728
|
@property
|
3814
3729
|
def Value(self):
|
3815
3730
|
"""key-value 值
|
3816
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3817
3731
|
:rtype: str
|
3818
3732
|
"""
|
3819
3733
|
return self._Value
|
@@ -4394,19 +4308,14 @@ class ConfigFileReleaseDeletion(AbstractModel):
|
|
4394
4308
|
def __init__(self):
|
4395
4309
|
r"""
|
4396
4310
|
:param _Namespace: 命名空间
|
4397
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4398
4311
|
:type Namespace: str
|
4399
4312
|
:param _Group: 配置分组
|
4400
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4401
4313
|
:type Group: str
|
4402
4314
|
:param _FileName: 文件名称
|
4403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4404
4315
|
:type FileName: str
|
4405
4316
|
:param _ReleaseVersion: 发布版本
|
4406
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4407
4317
|
:type ReleaseVersion: str
|
4408
4318
|
:param _Id: 配置发布ID
|
4409
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4410
4319
|
:type Id: int
|
4411
4320
|
"""
|
4412
4321
|
self._Namespace = None
|
@@ -4418,7 +4327,6 @@ class ConfigFileReleaseDeletion(AbstractModel):
|
|
4418
4327
|
@property
|
4419
4328
|
def Namespace(self):
|
4420
4329
|
"""命名空间
|
4421
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4422
4330
|
:rtype: str
|
4423
4331
|
"""
|
4424
4332
|
return self._Namespace
|
@@ -4430,7 +4338,6 @@ class ConfigFileReleaseDeletion(AbstractModel):
|
|
4430
4338
|
@property
|
4431
4339
|
def Group(self):
|
4432
4340
|
"""配置分组
|
4433
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4434
4341
|
:rtype: str
|
4435
4342
|
"""
|
4436
4343
|
return self._Group
|
@@ -4442,7 +4349,6 @@ class ConfigFileReleaseDeletion(AbstractModel):
|
|
4442
4349
|
@property
|
4443
4350
|
def FileName(self):
|
4444
4351
|
"""文件名称
|
4445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4446
4352
|
:rtype: str
|
4447
4353
|
"""
|
4448
4354
|
return self._FileName
|
@@ -4454,7 +4360,6 @@ class ConfigFileReleaseDeletion(AbstractModel):
|
|
4454
4360
|
@property
|
4455
4361
|
def ReleaseVersion(self):
|
4456
4362
|
"""发布版本
|
4457
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4458
4363
|
:rtype: str
|
4459
4364
|
"""
|
4460
4365
|
return self._ReleaseVersion
|
@@ -4466,7 +4371,6 @@ class ConfigFileReleaseDeletion(AbstractModel):
|
|
4466
4371
|
@property
|
4467
4372
|
def Id(self):
|
4468
4373
|
"""配置发布ID
|
4469
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4470
4374
|
:rtype: int
|
4471
4375
|
"""
|
4472
4376
|
return self._Id
|
@@ -4881,31 +4785,22 @@ class ConfigFileTemplate(AbstractModel):
|
|
4881
4785
|
def __init__(self):
|
4882
4786
|
r"""
|
4883
4787
|
:param _Id: 配置文件模板id
|
4884
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4885
4788
|
:type Id: int
|
4886
4789
|
:param _Name: 配置文件模板名称
|
4887
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4888
4790
|
:type Name: str
|
4889
4791
|
:param _Content: 配置文件模板内容
|
4890
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4891
4792
|
:type Content: str
|
4892
4793
|
:param _Format: 配置文件模板格式
|
4893
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4894
4794
|
:type Format: str
|
4895
4795
|
:param _Comment: 配置文件模板注释
|
4896
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4897
4796
|
:type Comment: str
|
4898
4797
|
:param _CreateTime: 配置文件模板创建时间
|
4899
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4900
4798
|
:type CreateTime: str
|
4901
4799
|
:param _CreateBy: 配置文件模板创建者
|
4902
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4903
4800
|
:type CreateBy: str
|
4904
4801
|
:param _ModifyTime: 配置文件模板修改时间
|
4905
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4906
4802
|
:type ModifyTime: str
|
4907
4803
|
:param _ModifyBy: 配置文件模板修改者
|
4908
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4909
4804
|
:type ModifyBy: str
|
4910
4805
|
"""
|
4911
4806
|
self._Id = None
|
@@ -4921,7 +4816,6 @@ class ConfigFileTemplate(AbstractModel):
|
|
4921
4816
|
@property
|
4922
4817
|
def Id(self):
|
4923
4818
|
"""配置文件模板id
|
4924
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4925
4819
|
:rtype: int
|
4926
4820
|
"""
|
4927
4821
|
return self._Id
|
@@ -4933,7 +4827,6 @@ class ConfigFileTemplate(AbstractModel):
|
|
4933
4827
|
@property
|
4934
4828
|
def Name(self):
|
4935
4829
|
"""配置文件模板名称
|
4936
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4937
4830
|
:rtype: str
|
4938
4831
|
"""
|
4939
4832
|
return self._Name
|
@@ -4945,7 +4838,6 @@ class ConfigFileTemplate(AbstractModel):
|
|
4945
4838
|
@property
|
4946
4839
|
def Content(self):
|
4947
4840
|
"""配置文件模板内容
|
4948
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4949
4841
|
:rtype: str
|
4950
4842
|
"""
|
4951
4843
|
return self._Content
|
@@ -4957,7 +4849,6 @@ class ConfigFileTemplate(AbstractModel):
|
|
4957
4849
|
@property
|
4958
4850
|
def Format(self):
|
4959
4851
|
"""配置文件模板格式
|
4960
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4961
4852
|
:rtype: str
|
4962
4853
|
"""
|
4963
4854
|
return self._Format
|
@@ -4969,7 +4860,6 @@ class ConfigFileTemplate(AbstractModel):
|
|
4969
4860
|
@property
|
4970
4861
|
def Comment(self):
|
4971
4862
|
"""配置文件模板注释
|
4972
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4973
4863
|
:rtype: str
|
4974
4864
|
"""
|
4975
4865
|
return self._Comment
|
@@ -4981,7 +4871,6 @@ class ConfigFileTemplate(AbstractModel):
|
|
4981
4871
|
@property
|
4982
4872
|
def CreateTime(self):
|
4983
4873
|
"""配置文件模板创建时间
|
4984
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4985
4874
|
:rtype: str
|
4986
4875
|
"""
|
4987
4876
|
return self._CreateTime
|
@@ -4993,7 +4882,6 @@ class ConfigFileTemplate(AbstractModel):
|
|
4993
4882
|
@property
|
4994
4883
|
def CreateBy(self):
|
4995
4884
|
"""配置文件模板创建者
|
4996
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4997
4885
|
:rtype: str
|
4998
4886
|
"""
|
4999
4887
|
return self._CreateBy
|
@@ -5005,7 +4893,6 @@ class ConfigFileTemplate(AbstractModel):
|
|
5005
4893
|
@property
|
5006
4894
|
def ModifyTime(self):
|
5007
4895
|
"""配置文件模板修改时间
|
5008
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5009
4896
|
:rtype: str
|
5010
4897
|
"""
|
5011
4898
|
return self._ModifyTime
|
@@ -5017,7 +4904,6 @@ class ConfigFileTemplate(AbstractModel):
|
|
5017
4904
|
@property
|
5018
4905
|
def ModifyBy(self):
|
5019
4906
|
"""配置文件模板修改者
|
5020
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5021
4907
|
:rtype: str
|
5022
4908
|
"""
|
5023
4909
|
return self._ModifyBy
|
@@ -5197,7 +5083,6 @@ class CreateAutoScalerResourceStrategyResponse(AbstractModel):
|
|
5197
5083
|
:param _Result: 是否成功
|
5198
5084
|
:type Result: bool
|
5199
5085
|
:param _StrategyId: 策略Id
|
5200
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5201
5086
|
:type StrategyId: str
|
5202
5087
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5203
5088
|
:type RequestId: str
|
@@ -5224,7 +5109,6 @@ class CreateAutoScalerResourceStrategyResponse(AbstractModel):
|
|
5224
5109
|
@property
|
5225
5110
|
def StrategyId(self):
|
5226
5111
|
"""策略Id
|
5227
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5228
5112
|
:rtype: str
|
5229
5113
|
"""
|
5230
5114
|
return self._StrategyId
|
@@ -5494,7 +5378,6 @@ class CreateCloudNativeAPIGatewayCertificateResponse(AbstractModel):
|
|
5494
5378
|
def __init__(self):
|
5495
5379
|
r"""
|
5496
5380
|
:param _Result: 创建证书结果
|
5497
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5498
5381
|
:type Result: :class:`tencentcloud.tse.v20201207.models.CertificateInfo`
|
5499
5382
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5500
5383
|
:type RequestId: str
|
@@ -5505,7 +5388,6 @@ class CreateCloudNativeAPIGatewayCertificateResponse(AbstractModel):
|
|
5505
5388
|
@property
|
5506
5389
|
def Result(self):
|
5507
5390
|
"""创建证书结果
|
5508
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5509
5391
|
:rtype: :class:`tencentcloud.tse.v20201207.models.CertificateInfo`
|
5510
5392
|
"""
|
5511
5393
|
return self._Result
|
@@ -5609,7 +5491,6 @@ class CreateCloudNativeAPIGatewayPublicNetworkResponse(AbstractModel):
|
|
5609
5491
|
def __init__(self):
|
5610
5492
|
r"""
|
5611
5493
|
:param _Result: 返回结果
|
5612
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5613
5494
|
:type Result: :class:`tencentcloud.tse.v20201207.models.CreatePublicNetworkResult`
|
5614
5495
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5615
5496
|
:type RequestId: str
|
@@ -5620,7 +5501,6 @@ class CreateCloudNativeAPIGatewayPublicNetworkResponse(AbstractModel):
|
|
5620
5501
|
@property
|
5621
5502
|
def Result(self):
|
5622
5503
|
"""返回结果
|
5623
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5624
5504
|
:rtype: :class:`tencentcloud.tse.v20201207.models.CreatePublicNetworkResult`
|
5625
5505
|
"""
|
5626
5506
|
return self._Result
|
@@ -7012,7 +6892,6 @@ class CreateConfigFileResponse(AbstractModel):
|
|
7012
6892
|
:param _Result: 是否创建成功
|
7013
6893
|
:type Result: bool
|
7014
6894
|
:param _ConfigFileId: 创建的配置文件Id
|
7015
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7016
6895
|
:type ConfigFileId: str
|
7017
6896
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7018
6897
|
:type RequestId: str
|
@@ -7035,7 +6914,6 @@ class CreateConfigFileResponse(AbstractModel):
|
|
7035
6914
|
@property
|
7036
6915
|
def ConfigFileId(self):
|
7037
6916
|
"""创建的配置文件Id
|
7038
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7039
6917
|
:rtype: str
|
7040
6918
|
"""
|
7041
6919
|
return self._ConfigFileId
|
@@ -7584,7 +7462,6 @@ class CreateGatewayServiceResult(AbstractModel):
|
|
7584
7462
|
def __init__(self):
|
7585
7463
|
r"""
|
7586
7464
|
:param _ServiceId: 网关服务ID
|
7587
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7588
7465
|
:type ServiceId: str
|
7589
7466
|
"""
|
7590
7467
|
self._ServiceId = None
|
@@ -7592,7 +7469,6 @@ class CreateGatewayServiceResult(AbstractModel):
|
|
7592
7469
|
@property
|
7593
7470
|
def ServiceId(self):
|
7594
7471
|
"""网关服务ID
|
7595
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7596
7472
|
:rtype: str
|
7597
7473
|
"""
|
7598
7474
|
return self._ServiceId
|
@@ -8485,10 +8361,8 @@ class CreateOrUpdateConfigFileAndReleaseResponse(AbstractModel):
|
|
8485
8361
|
:param _Result: 操作是否成功
|
8486
8362
|
:type Result: bool
|
8487
8363
|
:param _ConfigFileReleaseId: 配置发布Id
|
8488
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8489
8364
|
:type ConfigFileReleaseId: str
|
8490
8365
|
:param _ConfigFileId: 配置文件Id
|
8491
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8492
8366
|
:type ConfigFileId: str
|
8493
8367
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8494
8368
|
:type RequestId: str
|
@@ -8512,7 +8386,6 @@ class CreateOrUpdateConfigFileAndReleaseResponse(AbstractModel):
|
|
8512
8386
|
@property
|
8513
8387
|
def ConfigFileReleaseId(self):
|
8514
8388
|
"""配置发布Id
|
8515
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8516
8389
|
:rtype: str
|
8517
8390
|
"""
|
8518
8391
|
return self._ConfigFileReleaseId
|
@@ -8524,7 +8397,6 @@ class CreateOrUpdateConfigFileAndReleaseResponse(AbstractModel):
|
|
8524
8397
|
@property
|
8525
8398
|
def ConfigFileId(self):
|
8526
8399
|
"""配置文件Id
|
8527
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8528
8400
|
:rtype: str
|
8529
8401
|
"""
|
8530
8402
|
return self._ConfigFileId
|
@@ -8560,13 +8432,10 @@ class CreatePublicNetworkResult(AbstractModel):
|
|
8560
8432
|
def __init__(self):
|
8561
8433
|
r"""
|
8562
8434
|
:param _GatewayId: 网关实例ID
|
8563
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8564
8435
|
:type GatewayId: str
|
8565
8436
|
:param _GroupId: 分组ID
|
8566
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8567
8437
|
:type GroupId: str
|
8568
8438
|
:param _NetworkId: 客户端公网网络ID
|
8569
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8570
8439
|
:type NetworkId: str
|
8571
8440
|
"""
|
8572
8441
|
self._GatewayId = None
|
@@ -8576,7 +8445,6 @@ class CreatePublicNetworkResult(AbstractModel):
|
|
8576
8445
|
@property
|
8577
8446
|
def GatewayId(self):
|
8578
8447
|
"""网关实例ID
|
8579
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8580
8448
|
:rtype: str
|
8581
8449
|
"""
|
8582
8450
|
return self._GatewayId
|
@@ -8588,7 +8456,6 @@ class CreatePublicNetworkResult(AbstractModel):
|
|
8588
8456
|
@property
|
8589
8457
|
def GroupId(self):
|
8590
8458
|
"""分组ID
|
8591
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8592
8459
|
:rtype: str
|
8593
8460
|
"""
|
8594
8461
|
return self._GroupId
|
@@ -8600,7 +8467,6 @@ class CreatePublicNetworkResult(AbstractModel):
|
|
8600
8467
|
@property
|
8601
8468
|
def NetworkId(self):
|
8602
8469
|
"""客户端公网网络ID
|
8603
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8604
8470
|
:rtype: str
|
8605
8471
|
"""
|
8606
8472
|
return self._NetworkId
|
@@ -14326,7 +14192,6 @@ class DescribeConfigFileResponse(AbstractModel):
|
|
14326
14192
|
def __init__(self):
|
14327
14193
|
r"""
|
14328
14194
|
:param _ConfigFile: 配置文件
|
14329
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14330
14195
|
:type ConfigFile: :class:`tencentcloud.tse.v20201207.models.ConfigFile`
|
14331
14196
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14332
14197
|
:type RequestId: str
|
@@ -14337,7 +14202,6 @@ class DescribeConfigFileResponse(AbstractModel):
|
|
14337
14202
|
@property
|
14338
14203
|
def ConfigFile(self):
|
14339
14204
|
"""配置文件
|
14340
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14341
14205
|
:rtype: :class:`tencentcloud.tse.v20201207.models.ConfigFile`
|
14342
14206
|
"""
|
14343
14207
|
return self._ConfigFile
|
@@ -15726,7 +15590,6 @@ class DescribeGovernanceServiceContractsResponse(AbstractModel):
|
|
15726
15590
|
:param _Size: 返回条数
|
15727
15591
|
:type Size: int
|
15728
15592
|
:param _ServiceContracts: 契约定义列表
|
15729
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15730
15593
|
:type ServiceContracts: list of GovernanceServiceContract
|
15731
15594
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15732
15595
|
:type RequestId: str
|
@@ -15761,7 +15624,6 @@ class DescribeGovernanceServiceContractsResponse(AbstractModel):
|
|
15761
15624
|
@property
|
15762
15625
|
def ServiceContracts(self):
|
15763
15626
|
"""契约定义列表
|
15764
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15765
15627
|
:rtype: list of GovernanceServiceContract
|
15766
15628
|
"""
|
15767
15629
|
return self._ServiceContracts
|
@@ -16111,31 +15973,22 @@ class DescribeInstanceRegionInfo(AbstractModel):
|
|
16111
15973
|
def __init__(self):
|
16112
15974
|
r"""
|
16113
15975
|
:param _EngineRegion: 引擎部署地域信息
|
16114
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16115
15976
|
:type EngineRegion: str
|
16116
15977
|
:param _Replica: 引擎在该地域的副本数
|
16117
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16118
15978
|
:type Replica: int
|
16119
15979
|
:param _SpecId: 引擎在该地域的规格id
|
16120
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16121
15980
|
:type SpecId: str
|
16122
15981
|
:param _IntranetVpcInfos: 客户端内网的网络信息
|
16123
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16124
15982
|
:type IntranetVpcInfos: list of VpcInfo
|
16125
15983
|
:param _ConsoleIntranetVpcInfos: 控制台内网的网络信息
|
16126
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16127
15984
|
:type ConsoleIntranetVpcInfos: list of VpcInfo
|
16128
15985
|
:param _EnableClientInternet: 是否开公网
|
16129
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16130
15986
|
:type EnableClientInternet: bool
|
16131
15987
|
:param _LimiterIntranetVpcInfos: 限流客户端内网的网络信息
|
16132
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16133
15988
|
:type LimiterIntranetVpcInfos: list of VpcInfo
|
16134
15989
|
:param _MainRegion: 是否为主地域,仅在服务治理中心多地域有效
|
16135
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16136
15990
|
:type MainRegion: bool
|
16137
15991
|
:param _EKSClusterID: 该地域所在的EKS集群
|
16138
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16139
15992
|
:type EKSClusterID: str
|
16140
15993
|
"""
|
16141
15994
|
self._EngineRegion = None
|
@@ -16151,7 +16004,6 @@ class DescribeInstanceRegionInfo(AbstractModel):
|
|
16151
16004
|
@property
|
16152
16005
|
def EngineRegion(self):
|
16153
16006
|
"""引擎部署地域信息
|
16154
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16155
16007
|
:rtype: str
|
16156
16008
|
"""
|
16157
16009
|
return self._EngineRegion
|
@@ -16163,7 +16015,6 @@ class DescribeInstanceRegionInfo(AbstractModel):
|
|
16163
16015
|
@property
|
16164
16016
|
def Replica(self):
|
16165
16017
|
"""引擎在该地域的副本数
|
16166
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16167
16018
|
:rtype: int
|
16168
16019
|
"""
|
16169
16020
|
return self._Replica
|
@@ -16175,7 +16026,6 @@ class DescribeInstanceRegionInfo(AbstractModel):
|
|
16175
16026
|
@property
|
16176
16027
|
def SpecId(self):
|
16177
16028
|
"""引擎在该地域的规格id
|
16178
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16179
16029
|
:rtype: str
|
16180
16030
|
"""
|
16181
16031
|
return self._SpecId
|
@@ -16187,7 +16037,6 @@ class DescribeInstanceRegionInfo(AbstractModel):
|
|
16187
16037
|
@property
|
16188
16038
|
def IntranetVpcInfos(self):
|
16189
16039
|
"""客户端内网的网络信息
|
16190
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16191
16040
|
:rtype: list of VpcInfo
|
16192
16041
|
"""
|
16193
16042
|
return self._IntranetVpcInfos
|
@@ -16199,7 +16048,6 @@ class DescribeInstanceRegionInfo(AbstractModel):
|
|
16199
16048
|
@property
|
16200
16049
|
def ConsoleIntranetVpcInfos(self):
|
16201
16050
|
"""控制台内网的网络信息
|
16202
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16203
16051
|
:rtype: list of VpcInfo
|
16204
16052
|
"""
|
16205
16053
|
return self._ConsoleIntranetVpcInfos
|
@@ -16211,7 +16059,6 @@ class DescribeInstanceRegionInfo(AbstractModel):
|
|
16211
16059
|
@property
|
16212
16060
|
def EnableClientInternet(self):
|
16213
16061
|
"""是否开公网
|
16214
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16215
16062
|
:rtype: bool
|
16216
16063
|
"""
|
16217
16064
|
return self._EnableClientInternet
|
@@ -16223,7 +16070,6 @@ class DescribeInstanceRegionInfo(AbstractModel):
|
|
16223
16070
|
@property
|
16224
16071
|
def LimiterIntranetVpcInfos(self):
|
16225
16072
|
"""限流客户端内网的网络信息
|
16226
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16227
16073
|
:rtype: list of VpcInfo
|
16228
16074
|
"""
|
16229
16075
|
return self._LimiterIntranetVpcInfos
|
@@ -16235,7 +16081,6 @@ class DescribeInstanceRegionInfo(AbstractModel):
|
|
16235
16081
|
@property
|
16236
16082
|
def MainRegion(self):
|
16237
16083
|
"""是否为主地域,仅在服务治理中心多地域有效
|
16238
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16239
16084
|
:rtype: bool
|
16240
16085
|
"""
|
16241
16086
|
return self._MainRegion
|
@@ -16247,7 +16092,6 @@ class DescribeInstanceRegionInfo(AbstractModel):
|
|
16247
16092
|
@property
|
16248
16093
|
def EKSClusterID(self):
|
16249
16094
|
"""该地域所在的EKS集群
|
16250
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16251
16095
|
:rtype: str
|
16252
16096
|
"""
|
16253
16097
|
return self._EKSClusterID
|
@@ -16467,7 +16311,6 @@ class DescribeNacosReplicasResponse(AbstractModel):
|
|
16467
16311
|
:param _Replicas: 引擎实例副本信息
|
16468
16312
|
:type Replicas: list of NacosReplica
|
16469
16313
|
:param _TotalCount: 副本个数
|
16470
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16471
16314
|
:type TotalCount: int
|
16472
16315
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16473
16316
|
:type RequestId: str
|
@@ -16490,7 +16333,6 @@ class DescribeNacosReplicasResponse(AbstractModel):
|
|
16490
16333
|
@property
|
16491
16334
|
def TotalCount(self):
|
16492
16335
|
"""副本个数
|
16493
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16494
16336
|
:rtype: int
|
16495
16337
|
"""
|
16496
16338
|
return self._TotalCount
|
@@ -17537,22 +17379,17 @@ class DescribeSREInstanceAccessAddressResponse(AbstractModel):
|
|
17537
17379
|
:param _EnvAddressInfos: apollo多环境公网ip
|
17538
17380
|
:type EnvAddressInfos: list of EnvAddressInfo
|
17539
17381
|
:param _ConsoleInternetAddress: 控制台公网访问地址
|
17540
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17541
17382
|
:type ConsoleInternetAddress: str
|
17542
17383
|
:param _ConsoleIntranetAddress: 控制台内网访问地址
|
17543
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17544
17384
|
:type ConsoleIntranetAddress: str
|
17545
17385
|
:param _InternetBandWidth: 客户端公网带宽
|
17546
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17547
17386
|
:type InternetBandWidth: int
|
17548
17387
|
:param _ConsoleInternetBandWidth: 控制台公网带宽
|
17549
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17550
17388
|
:type ConsoleInternetBandWidth: int
|
17551
17389
|
:param _LimiterAddressInfos: 北极星限流server节点接入IP
|
17552
17390
|
注意:此字段可能返回 null,表示取不到有效值。
|
17553
17391
|
:type LimiterAddressInfos: list of PolarisLimiterAddress
|
17554
17392
|
:param _CLBMultiRegion: InternetAddress 的公网 CLB 多可用区信息
|
17555
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17556
17393
|
:type CLBMultiRegion: :class:`tencentcloud.tse.v20201207.models.CLBMultiRegion`
|
17557
17394
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
17558
17395
|
:type RequestId: str
|
@@ -17604,7 +17441,6 @@ class DescribeSREInstanceAccessAddressResponse(AbstractModel):
|
|
17604
17441
|
@property
|
17605
17442
|
def ConsoleInternetAddress(self):
|
17606
17443
|
"""控制台公网访问地址
|
17607
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17608
17444
|
:rtype: str
|
17609
17445
|
"""
|
17610
17446
|
return self._ConsoleInternetAddress
|
@@ -17616,7 +17452,6 @@ class DescribeSREInstanceAccessAddressResponse(AbstractModel):
|
|
17616
17452
|
@property
|
17617
17453
|
def ConsoleIntranetAddress(self):
|
17618
17454
|
"""控制台内网访问地址
|
17619
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17620
17455
|
:rtype: str
|
17621
17456
|
"""
|
17622
17457
|
return self._ConsoleIntranetAddress
|
@@ -17628,7 +17463,6 @@ class DescribeSREInstanceAccessAddressResponse(AbstractModel):
|
|
17628
17463
|
@property
|
17629
17464
|
def InternetBandWidth(self):
|
17630
17465
|
"""客户端公网带宽
|
17631
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17632
17466
|
:rtype: int
|
17633
17467
|
"""
|
17634
17468
|
return self._InternetBandWidth
|
@@ -17640,7 +17474,6 @@ class DescribeSREInstanceAccessAddressResponse(AbstractModel):
|
|
17640
17474
|
@property
|
17641
17475
|
def ConsoleInternetBandWidth(self):
|
17642
17476
|
"""控制台公网带宽
|
17643
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17644
17477
|
:rtype: int
|
17645
17478
|
"""
|
17646
17479
|
return self._ConsoleInternetBandWidth
|
@@ -17664,7 +17497,6 @@ class DescribeSREInstanceAccessAddressResponse(AbstractModel):
|
|
17664
17497
|
@property
|
17665
17498
|
def CLBMultiRegion(self):
|
17666
17499
|
"""InternetAddress 的公网 CLB 多可用区信息
|
17667
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17668
17500
|
:rtype: :class:`tencentcloud.tse.v20201207.models.CLBMultiRegion`
|
17669
17501
|
"""
|
17670
17502
|
return self._CLBMultiRegion
|
@@ -18391,7 +18223,6 @@ class DescribeZookeeperReplicasResponse(AbstractModel):
|
|
18391
18223
|
:param _Replicas: 注册引擎实例副本信息
|
18392
18224
|
:type Replicas: list of ZookeeperReplica
|
18393
18225
|
:param _TotalCount: 副本个数
|
18394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18395
18226
|
:type TotalCount: int
|
18396
18227
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18397
18228
|
:type RequestId: str
|
@@ -18414,7 +18245,6 @@ class DescribeZookeeperReplicasResponse(AbstractModel):
|
|
18414
18245
|
@property
|
18415
18246
|
def TotalCount(self):
|
18416
18247
|
"""副本个数
|
18417
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18418
18248
|
:rtype: int
|
18419
18249
|
"""
|
18420
18250
|
return self._TotalCount
|
@@ -18758,16 +18588,12 @@ class EnvAddressInfo(AbstractModel):
|
|
18758
18588
|
:param _ConfigInternetServiceIp: config公网ip
|
18759
18589
|
:type ConfigInternetServiceIp: str
|
18760
18590
|
:param _ConfigIntranetAddress: config内网访问地址
|
18761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18762
18591
|
:type ConfigIntranetAddress: str
|
18763
18592
|
:param _EnableConfigIntranet: 是否开启config内网clb
|
18764
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18765
18593
|
:type EnableConfigIntranet: bool
|
18766
18594
|
:param _InternetBandWidth: 客户端公网带宽
|
18767
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18768
18595
|
:type InternetBandWidth: int
|
18769
18596
|
:param _CLBMultiRegion: 客户端公网CLB多可用区信息
|
18770
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18771
18597
|
:type CLBMultiRegion: :class:`tencentcloud.tse.v20201207.models.CLBMultiRegion`
|
18772
18598
|
"""
|
18773
18599
|
self._EnvName = None
|
@@ -18814,7 +18640,6 @@ class EnvAddressInfo(AbstractModel):
|
|
18814
18640
|
@property
|
18815
18641
|
def ConfigIntranetAddress(self):
|
18816
18642
|
"""config内网访问地址
|
18817
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18818
18643
|
:rtype: str
|
18819
18644
|
"""
|
18820
18645
|
return self._ConfigIntranetAddress
|
@@ -18826,7 +18651,6 @@ class EnvAddressInfo(AbstractModel):
|
|
18826
18651
|
@property
|
18827
18652
|
def EnableConfigIntranet(self):
|
18828
18653
|
"""是否开启config内网clb
|
18829
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18830
18654
|
:rtype: bool
|
18831
18655
|
"""
|
18832
18656
|
return self._EnableConfigIntranet
|
@@ -18838,7 +18662,6 @@ class EnvAddressInfo(AbstractModel):
|
|
18838
18662
|
@property
|
18839
18663
|
def InternetBandWidth(self):
|
18840
18664
|
"""客户端公网带宽
|
18841
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18842
18665
|
:rtype: int
|
18843
18666
|
"""
|
18844
18667
|
return self._InternetBandWidth
|
@@ -18850,7 +18673,6 @@ class EnvAddressInfo(AbstractModel):
|
|
18850
18673
|
@property
|
18851
18674
|
def CLBMultiRegion(self):
|
18852
18675
|
"""客户端公网CLB多可用区信息
|
18853
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18854
18676
|
:rtype: :class:`tencentcloud.tse.v20201207.models.CLBMultiRegion`
|
18855
18677
|
"""
|
18856
18678
|
return self._CLBMultiRegion
|
@@ -18916,7 +18738,6 @@ class EnvInfo(AbstractModel):
|
|
18916
18738
|
:param _ClientBandWidth: 客户端带宽
|
18917
18739
|
:type ClientBandWidth: int
|
18918
18740
|
:param _EnableConfigIntranet: 客户端内网开关
|
18919
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18920
18741
|
:type EnableConfigIntranet: bool
|
18921
18742
|
"""
|
18922
18743
|
self._EnvName = None
|
@@ -19092,7 +18913,6 @@ class EnvInfo(AbstractModel):
|
|
19092
18913
|
@property
|
19093
18914
|
def EnableConfigIntranet(self):
|
19094
18915
|
"""客户端内网开关
|
19095
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19096
18916
|
:rtype: bool
|
19097
18917
|
"""
|
19098
18918
|
return self._EnableConfigIntranet
|
@@ -19344,19 +19164,14 @@ class GovernanceAlias(AbstractModel):
|
|
19344
19164
|
:param _Namespace: 服务别名指向的服务命名空间
|
19345
19165
|
:type Namespace: str
|
19346
19166
|
:param _Comment: 服务别名的描述信息
|
19347
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19348
19167
|
:type Comment: str
|
19349
19168
|
:param _CreateTime: 服务别名创建时间
|
19350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19351
19169
|
:type CreateTime: str
|
19352
19170
|
:param _ModifyTime: 服务别名修改时间
|
19353
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19354
19171
|
:type ModifyTime: str
|
19355
19172
|
:param _Id: 服务别名ID
|
19356
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19357
19173
|
:type Id: str
|
19358
19174
|
:param _Editable: 该服务别名是否可以编辑
|
19359
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19360
19175
|
:type Editable: bool
|
19361
19176
|
"""
|
19362
19177
|
self._Alias = None
|
@@ -19416,7 +19231,6 @@ class GovernanceAlias(AbstractModel):
|
|
19416
19231
|
@property
|
19417
19232
|
def Comment(self):
|
19418
19233
|
"""服务别名的描述信息
|
19419
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19420
19234
|
:rtype: str
|
19421
19235
|
"""
|
19422
19236
|
return self._Comment
|
@@ -19428,7 +19242,6 @@ class GovernanceAlias(AbstractModel):
|
|
19428
19242
|
@property
|
19429
19243
|
def CreateTime(self):
|
19430
19244
|
"""服务别名创建时间
|
19431
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19432
19245
|
:rtype: str
|
19433
19246
|
"""
|
19434
19247
|
return self._CreateTime
|
@@ -19440,7 +19253,6 @@ class GovernanceAlias(AbstractModel):
|
|
19440
19253
|
@property
|
19441
19254
|
def ModifyTime(self):
|
19442
19255
|
"""服务别名修改时间
|
19443
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19444
19256
|
:rtype: str
|
19445
19257
|
"""
|
19446
19258
|
return self._ModifyTime
|
@@ -19452,7 +19264,6 @@ class GovernanceAlias(AbstractModel):
|
|
19452
19264
|
@property
|
19453
19265
|
def Id(self):
|
19454
19266
|
"""服务别名ID
|
19455
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19456
19267
|
:rtype: str
|
19457
19268
|
"""
|
19458
19269
|
return self._Id
|
@@ -19464,7 +19275,6 @@ class GovernanceAlias(AbstractModel):
|
|
19464
19275
|
@property
|
19465
19276
|
def Editable(self):
|
19466
19277
|
"""该服务别名是否可以编辑
|
19467
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19468
19278
|
:rtype: bool
|
19469
19279
|
"""
|
19470
19280
|
return self._Editable
|
@@ -19508,49 +19318,34 @@ class GovernanceInstance(AbstractModel):
|
|
19508
19318
|
:param _Namespace: 实例所在命名空间名。
|
19509
19319
|
:type Namespace: str
|
19510
19320
|
:param _Host: 实例ip地址。
|
19511
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19512
19321
|
:type Host: str
|
19513
19322
|
:param _Port: 实例端口信息。
|
19514
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19515
19323
|
:type Port: int
|
19516
19324
|
:param _Protocol: 通信协议。
|
19517
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19518
19325
|
:type Protocol: str
|
19519
19326
|
:param _Version: 版本信息。
|
19520
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19521
19327
|
:type Version: str
|
19522
19328
|
:param _Weight: 负载均衡权重。
|
19523
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19524
19329
|
:type Weight: int
|
19525
19330
|
:param _EnableHealthCheck: 是否开启健康检查。
|
19526
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19527
19331
|
:type EnableHealthCheck: bool
|
19528
19332
|
:param _Healthy: 实例是否健康。
|
19529
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19530
19333
|
:type Healthy: bool
|
19531
19334
|
:param _Isolate: 实例是否隔离。
|
19532
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19533
19335
|
:type Isolate: bool
|
19534
19336
|
:param _CreateTime: 实例创建时间。
|
19535
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19536
19337
|
:type CreateTime: str
|
19537
19338
|
:param _ModifyTime: 实例修改时间。
|
19538
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19539
19339
|
:type ModifyTime: str
|
19540
19340
|
:param _Metadatas: 元数据数组。
|
19541
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19542
19341
|
:type Metadatas: list of Metadata
|
19543
19342
|
:param _Ttl: 上报心跳间隔。
|
19544
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19545
19343
|
:type Ttl: int
|
19546
19344
|
:param _InstanceVersion: 版本信息。
|
19547
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19548
19345
|
:type InstanceVersion: str
|
19549
19346
|
:param _HealthStatus: 状态信息
|
19550
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19551
19347
|
:type HealthStatus: str
|
19552
19348
|
:param _Comment: 描述
|
19553
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19554
19349
|
:type Comment: str
|
19555
19350
|
"""
|
19556
19351
|
self._Id = None
|
@@ -19608,7 +19403,6 @@ class GovernanceInstance(AbstractModel):
|
|
19608
19403
|
@property
|
19609
19404
|
def Host(self):
|
19610
19405
|
"""实例ip地址。
|
19611
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19612
19406
|
:rtype: str
|
19613
19407
|
"""
|
19614
19408
|
return self._Host
|
@@ -19620,7 +19414,6 @@ class GovernanceInstance(AbstractModel):
|
|
19620
19414
|
@property
|
19621
19415
|
def Port(self):
|
19622
19416
|
"""实例端口信息。
|
19623
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19624
19417
|
:rtype: int
|
19625
19418
|
"""
|
19626
19419
|
return self._Port
|
@@ -19632,7 +19425,6 @@ class GovernanceInstance(AbstractModel):
|
|
19632
19425
|
@property
|
19633
19426
|
def Protocol(self):
|
19634
19427
|
"""通信协议。
|
19635
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19636
19428
|
:rtype: str
|
19637
19429
|
"""
|
19638
19430
|
return self._Protocol
|
@@ -19644,7 +19436,6 @@ class GovernanceInstance(AbstractModel):
|
|
19644
19436
|
@property
|
19645
19437
|
def Version(self):
|
19646
19438
|
"""版本信息。
|
19647
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19648
19439
|
:rtype: str
|
19649
19440
|
"""
|
19650
19441
|
return self._Version
|
@@ -19656,7 +19447,6 @@ class GovernanceInstance(AbstractModel):
|
|
19656
19447
|
@property
|
19657
19448
|
def Weight(self):
|
19658
19449
|
"""负载均衡权重。
|
19659
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19660
19450
|
:rtype: int
|
19661
19451
|
"""
|
19662
19452
|
return self._Weight
|
@@ -19668,7 +19458,6 @@ class GovernanceInstance(AbstractModel):
|
|
19668
19458
|
@property
|
19669
19459
|
def EnableHealthCheck(self):
|
19670
19460
|
"""是否开启健康检查。
|
19671
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19672
19461
|
:rtype: bool
|
19673
19462
|
"""
|
19674
19463
|
return self._EnableHealthCheck
|
@@ -19680,7 +19469,6 @@ class GovernanceInstance(AbstractModel):
|
|
19680
19469
|
@property
|
19681
19470
|
def Healthy(self):
|
19682
19471
|
"""实例是否健康。
|
19683
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19684
19472
|
:rtype: bool
|
19685
19473
|
"""
|
19686
19474
|
return self._Healthy
|
@@ -19692,7 +19480,6 @@ class GovernanceInstance(AbstractModel):
|
|
19692
19480
|
@property
|
19693
19481
|
def Isolate(self):
|
19694
19482
|
"""实例是否隔离。
|
19695
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19696
19483
|
:rtype: bool
|
19697
19484
|
"""
|
19698
19485
|
return self._Isolate
|
@@ -19704,7 +19491,6 @@ class GovernanceInstance(AbstractModel):
|
|
19704
19491
|
@property
|
19705
19492
|
def CreateTime(self):
|
19706
19493
|
"""实例创建时间。
|
19707
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19708
19494
|
:rtype: str
|
19709
19495
|
"""
|
19710
19496
|
return self._CreateTime
|
@@ -19716,7 +19502,6 @@ class GovernanceInstance(AbstractModel):
|
|
19716
19502
|
@property
|
19717
19503
|
def ModifyTime(self):
|
19718
19504
|
"""实例修改时间。
|
19719
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19720
19505
|
:rtype: str
|
19721
19506
|
"""
|
19722
19507
|
return self._ModifyTime
|
@@ -19728,7 +19513,6 @@ class GovernanceInstance(AbstractModel):
|
|
19728
19513
|
@property
|
19729
19514
|
def Metadatas(self):
|
19730
19515
|
"""元数据数组。
|
19731
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19732
19516
|
:rtype: list of Metadata
|
19733
19517
|
"""
|
19734
19518
|
return self._Metadatas
|
@@ -19740,7 +19524,6 @@ class GovernanceInstance(AbstractModel):
|
|
19740
19524
|
@property
|
19741
19525
|
def Ttl(self):
|
19742
19526
|
"""上报心跳间隔。
|
19743
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19744
19527
|
:rtype: int
|
19745
19528
|
"""
|
19746
19529
|
return self._Ttl
|
@@ -19752,7 +19535,6 @@ class GovernanceInstance(AbstractModel):
|
|
19752
19535
|
@property
|
19753
19536
|
def InstanceVersion(self):
|
19754
19537
|
"""版本信息。
|
19755
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19756
19538
|
:rtype: str
|
19757
19539
|
"""
|
19758
19540
|
return self._InstanceVersion
|
@@ -19764,7 +19546,6 @@ class GovernanceInstance(AbstractModel):
|
|
19764
19546
|
@property
|
19765
19547
|
def HealthStatus(self):
|
19766
19548
|
"""状态信息
|
19767
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19768
19549
|
:rtype: str
|
19769
19550
|
"""
|
19770
19551
|
return self._HealthStatus
|
@@ -19776,7 +19557,6 @@ class GovernanceInstance(AbstractModel):
|
|
19776
19557
|
@property
|
19777
19558
|
def Comment(self):
|
19778
19559
|
"""描述
|
19779
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19780
19560
|
:rtype: str
|
19781
19561
|
"""
|
19782
19562
|
return self._Comment
|
@@ -20235,31 +20015,22 @@ class GovernanceInterfaceDescription(AbstractModel):
|
|
20235
20015
|
def __init__(self):
|
20236
20016
|
r"""
|
20237
20017
|
:param _ID: 契约接口ID
|
20238
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20239
20018
|
:type ID: str
|
20240
20019
|
:param _Method: 方法名称
|
20241
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20242
20020
|
:type Method: str
|
20243
20021
|
:param _Path: 路径/接口名称
|
20244
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20245
20022
|
:type Path: str
|
20246
20023
|
:param _Content: 内容
|
20247
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20248
20024
|
:type Content: str
|
20249
20025
|
:param _Source: 创建来源
|
20250
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20251
20026
|
:type Source: str
|
20252
20027
|
:param _Revision: 信息摘要
|
20253
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20254
20028
|
:type Revision: str
|
20255
20029
|
:param _CreateTime: 创建时间
|
20256
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20257
20030
|
:type CreateTime: str
|
20258
20031
|
:param _ModifyTime: 修改时间
|
20259
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20260
20032
|
:type ModifyTime: str
|
20261
20033
|
:param _Name: 接口名称
|
20262
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20263
20034
|
:type Name: str
|
20264
20035
|
"""
|
20265
20036
|
self._ID = None
|
@@ -20275,7 +20046,6 @@ class GovernanceInterfaceDescription(AbstractModel):
|
|
20275
20046
|
@property
|
20276
20047
|
def ID(self):
|
20277
20048
|
"""契约接口ID
|
20278
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20279
20049
|
:rtype: str
|
20280
20050
|
"""
|
20281
20051
|
return self._ID
|
@@ -20287,7 +20057,6 @@ class GovernanceInterfaceDescription(AbstractModel):
|
|
20287
20057
|
@property
|
20288
20058
|
def Method(self):
|
20289
20059
|
"""方法名称
|
20290
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20291
20060
|
:rtype: str
|
20292
20061
|
"""
|
20293
20062
|
return self._Method
|
@@ -20299,7 +20068,6 @@ class GovernanceInterfaceDescription(AbstractModel):
|
|
20299
20068
|
@property
|
20300
20069
|
def Path(self):
|
20301
20070
|
"""路径/接口名称
|
20302
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20303
20071
|
:rtype: str
|
20304
20072
|
"""
|
20305
20073
|
return self._Path
|
@@ -20311,7 +20079,6 @@ class GovernanceInterfaceDescription(AbstractModel):
|
|
20311
20079
|
@property
|
20312
20080
|
def Content(self):
|
20313
20081
|
"""内容
|
20314
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20315
20082
|
:rtype: str
|
20316
20083
|
"""
|
20317
20084
|
return self._Content
|
@@ -20323,7 +20090,6 @@ class GovernanceInterfaceDescription(AbstractModel):
|
|
20323
20090
|
@property
|
20324
20091
|
def Source(self):
|
20325
20092
|
"""创建来源
|
20326
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20327
20093
|
:rtype: str
|
20328
20094
|
"""
|
20329
20095
|
return self._Source
|
@@ -20335,7 +20101,6 @@ class GovernanceInterfaceDescription(AbstractModel):
|
|
20335
20101
|
@property
|
20336
20102
|
def Revision(self):
|
20337
20103
|
"""信息摘要
|
20338
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20339
20104
|
:rtype: str
|
20340
20105
|
"""
|
20341
20106
|
return self._Revision
|
@@ -20347,7 +20112,6 @@ class GovernanceInterfaceDescription(AbstractModel):
|
|
20347
20112
|
@property
|
20348
20113
|
def CreateTime(self):
|
20349
20114
|
"""创建时间
|
20350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20351
20115
|
:rtype: str
|
20352
20116
|
"""
|
20353
20117
|
return self._CreateTime
|
@@ -20359,7 +20123,6 @@ class GovernanceInterfaceDescription(AbstractModel):
|
|
20359
20123
|
@property
|
20360
20124
|
def ModifyTime(self):
|
20361
20125
|
"""修改时间
|
20362
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20363
20126
|
:rtype: str
|
20364
20127
|
"""
|
20365
20128
|
return self._ModifyTime
|
@@ -20371,7 +20134,6 @@ class GovernanceInterfaceDescription(AbstractModel):
|
|
20371
20134
|
@property
|
20372
20135
|
def Name(self):
|
20373
20136
|
"""接口名称
|
20374
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20375
20137
|
:rtype: str
|
20376
20138
|
"""
|
20377
20139
|
return self._Name
|
@@ -20409,49 +20171,34 @@ class GovernanceNamespace(AbstractModel):
|
|
20409
20171
|
def __init__(self):
|
20410
20172
|
r"""
|
20411
20173
|
:param _Name: 命名空间名称。
|
20412
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20413
20174
|
:type Name: str
|
20414
20175
|
:param _Comment: 命名空间描述信息。
|
20415
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20416
20176
|
:type Comment: str
|
20417
20177
|
:param _CreateTime: 创建时间。
|
20418
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20419
20178
|
:type CreateTime: str
|
20420
20179
|
:param _ModifyTime: 修改时间。
|
20421
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20422
20180
|
:type ModifyTime: str
|
20423
20181
|
:param _TotalServiceCount: 命名空间下总服务数据量
|
20424
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20425
20182
|
:type TotalServiceCount: int
|
20426
20183
|
:param _TotalHealthInstanceCount: 命名空间下总健康实例数量
|
20427
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20428
20184
|
:type TotalHealthInstanceCount: int
|
20429
20185
|
:param _TotalInstanceCount: 命名空间下总实例数量
|
20430
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20431
20186
|
:type TotalInstanceCount: int
|
20432
20187
|
:param _Id: 命名空间ID
|
20433
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20434
20188
|
:type Id: str
|
20435
20189
|
:param _Editable: 是否可以编辑
|
20436
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20437
20190
|
:type Editable: bool
|
20438
20191
|
:param _UserIds: 可以操作此命名空间的用户ID列表
|
20439
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20440
20192
|
:type UserIds: list of str
|
20441
20193
|
:param _GroupIds: 可以操作此命名空间的用户组ID列表
|
20442
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20443
20194
|
:type GroupIds: list of str
|
20444
20195
|
:param _RemoveUserIds: 移除可以操作此命名空间的用户ID列表
|
20445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20446
20196
|
:type RemoveUserIds: list of str
|
20447
20197
|
:param _RemoveGroupIds: 移除可以操作此命名空间的用户组ID列表
|
20448
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20449
20198
|
:type RemoveGroupIds: list of str
|
20450
20199
|
:param _ServiceExportTo: 该命名空间下的服务对哪些命名空间可见
|
20451
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20452
20200
|
:type ServiceExportTo: list of str
|
20453
20201
|
:param _SyncToGlobalRegistry: 是否开启同步到全局注册中心
|
20454
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20455
20202
|
:type SyncToGlobalRegistry: bool
|
20456
20203
|
"""
|
20457
20204
|
self._Name = None
|
@@ -20473,7 +20220,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20473
20220
|
@property
|
20474
20221
|
def Name(self):
|
20475
20222
|
"""命名空间名称。
|
20476
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20477
20223
|
:rtype: str
|
20478
20224
|
"""
|
20479
20225
|
return self._Name
|
@@ -20485,7 +20231,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20485
20231
|
@property
|
20486
20232
|
def Comment(self):
|
20487
20233
|
"""命名空间描述信息。
|
20488
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20489
20234
|
:rtype: str
|
20490
20235
|
"""
|
20491
20236
|
return self._Comment
|
@@ -20497,7 +20242,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20497
20242
|
@property
|
20498
20243
|
def CreateTime(self):
|
20499
20244
|
"""创建时间。
|
20500
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20501
20245
|
:rtype: str
|
20502
20246
|
"""
|
20503
20247
|
return self._CreateTime
|
@@ -20509,7 +20253,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20509
20253
|
@property
|
20510
20254
|
def ModifyTime(self):
|
20511
20255
|
"""修改时间。
|
20512
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20513
20256
|
:rtype: str
|
20514
20257
|
"""
|
20515
20258
|
return self._ModifyTime
|
@@ -20521,7 +20264,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20521
20264
|
@property
|
20522
20265
|
def TotalServiceCount(self):
|
20523
20266
|
"""命名空间下总服务数据量
|
20524
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20525
20267
|
:rtype: int
|
20526
20268
|
"""
|
20527
20269
|
return self._TotalServiceCount
|
@@ -20533,7 +20275,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20533
20275
|
@property
|
20534
20276
|
def TotalHealthInstanceCount(self):
|
20535
20277
|
"""命名空间下总健康实例数量
|
20536
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20537
20278
|
:rtype: int
|
20538
20279
|
"""
|
20539
20280
|
return self._TotalHealthInstanceCount
|
@@ -20545,7 +20286,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20545
20286
|
@property
|
20546
20287
|
def TotalInstanceCount(self):
|
20547
20288
|
"""命名空间下总实例数量
|
20548
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20549
20289
|
:rtype: int
|
20550
20290
|
"""
|
20551
20291
|
return self._TotalInstanceCount
|
@@ -20557,7 +20297,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20557
20297
|
@property
|
20558
20298
|
def Id(self):
|
20559
20299
|
"""命名空间ID
|
20560
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20561
20300
|
:rtype: str
|
20562
20301
|
"""
|
20563
20302
|
return self._Id
|
@@ -20569,7 +20308,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20569
20308
|
@property
|
20570
20309
|
def Editable(self):
|
20571
20310
|
"""是否可以编辑
|
20572
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20573
20311
|
:rtype: bool
|
20574
20312
|
"""
|
20575
20313
|
return self._Editable
|
@@ -20581,7 +20319,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20581
20319
|
@property
|
20582
20320
|
def UserIds(self):
|
20583
20321
|
"""可以操作此命名空间的用户ID列表
|
20584
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20585
20322
|
:rtype: list of str
|
20586
20323
|
"""
|
20587
20324
|
return self._UserIds
|
@@ -20593,7 +20330,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20593
20330
|
@property
|
20594
20331
|
def GroupIds(self):
|
20595
20332
|
"""可以操作此命名空间的用户组ID列表
|
20596
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20597
20333
|
:rtype: list of str
|
20598
20334
|
"""
|
20599
20335
|
return self._GroupIds
|
@@ -20605,7 +20341,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20605
20341
|
@property
|
20606
20342
|
def RemoveUserIds(self):
|
20607
20343
|
"""移除可以操作此命名空间的用户ID列表
|
20608
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20609
20344
|
:rtype: list of str
|
20610
20345
|
"""
|
20611
20346
|
return self._RemoveUserIds
|
@@ -20617,7 +20352,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20617
20352
|
@property
|
20618
20353
|
def RemoveGroupIds(self):
|
20619
20354
|
"""移除可以操作此命名空间的用户组ID列表
|
20620
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20621
20355
|
:rtype: list of str
|
20622
20356
|
"""
|
20623
20357
|
return self._RemoveGroupIds
|
@@ -20629,7 +20363,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20629
20363
|
@property
|
20630
20364
|
def ServiceExportTo(self):
|
20631
20365
|
"""该命名空间下的服务对哪些命名空间可见
|
20632
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20633
20366
|
:rtype: list of str
|
20634
20367
|
"""
|
20635
20368
|
return self._ServiceExportTo
|
@@ -20641,7 +20374,6 @@ class GovernanceNamespace(AbstractModel):
|
|
20641
20374
|
@property
|
20642
20375
|
def SyncToGlobalRegistry(self):
|
20643
20376
|
"""是否开启同步到全局注册中心
|
20644
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20645
20377
|
:rtype: bool
|
20646
20378
|
"""
|
20647
20379
|
return self._SyncToGlobalRegistry
|
@@ -20836,52 +20568,36 @@ class GovernanceService(AbstractModel):
|
|
20836
20568
|
:param _Namespace: 命名空间名称。
|
20837
20569
|
:type Namespace: str
|
20838
20570
|
:param _Metadatas: 元数据信息数组。
|
20839
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20840
20571
|
:type Metadatas: list of Metadata
|
20841
20572
|
:param _Comment: 描述信息。
|
20842
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20843
20573
|
:type Comment: str
|
20844
20574
|
:param _CreateTime: 创建时间。
|
20845
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20846
20575
|
:type CreateTime: str
|
20847
20576
|
:param _ModifyTime: 修改时间。
|
20848
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20849
20577
|
:type ModifyTime: str
|
20850
20578
|
:param _Department: 服务所属部门。
|
20851
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20852
20579
|
:type Department: str
|
20853
20580
|
:param _Business: 服务所属业务。
|
20854
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20855
20581
|
:type Business: str
|
20856
20582
|
:param _HealthyInstanceCount: 健康服务实例数
|
20857
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20858
20583
|
:type HealthyInstanceCount: int
|
20859
20584
|
:param _TotalInstanceCount: 服务实例总数
|
20860
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20861
20585
|
:type TotalInstanceCount: int
|
20862
20586
|
:param _Id: 服务ID
|
20863
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20864
20587
|
:type Id: str
|
20865
20588
|
:param _Editable: 是否可以编辑
|
20866
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20867
20589
|
:type Editable: bool
|
20868
20590
|
:param _UserIds: 可以编辑该资源的用户ID
|
20869
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20870
20591
|
:type UserIds: list of str
|
20871
20592
|
:param _GroupIds: 可以编辑该资源的用户组ID
|
20872
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20873
20593
|
:type GroupIds: list of str
|
20874
20594
|
:param _RemoveUserIds: 移除可以编辑该资源的用户ID
|
20875
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20876
20595
|
:type RemoveUserIds: list of str
|
20877
20596
|
:param _RemoveGroupIds: 移除可以编辑该资源的用户组ID
|
20878
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20879
20597
|
:type RemoveGroupIds: list of str
|
20880
20598
|
:param _ExportTo: 该服务对哪些命名空间可见
|
20881
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20882
20599
|
:type ExportTo: list of str
|
20883
20600
|
:param _Revision: 该服务信息摘要签名
|
20884
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20885
20601
|
:type Revision: str
|
20886
20602
|
:param _SyncToGlobalRegistry: 是否开启同步到全局注册中心
|
20887
20603
|
:type SyncToGlobalRegistry: bool
|
@@ -20931,7 +20647,6 @@ class GovernanceService(AbstractModel):
|
|
20931
20647
|
@property
|
20932
20648
|
def Metadatas(self):
|
20933
20649
|
"""元数据信息数组。
|
20934
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20935
20650
|
:rtype: list of Metadata
|
20936
20651
|
"""
|
20937
20652
|
return self._Metadatas
|
@@ -20943,7 +20658,6 @@ class GovernanceService(AbstractModel):
|
|
20943
20658
|
@property
|
20944
20659
|
def Comment(self):
|
20945
20660
|
"""描述信息。
|
20946
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20947
20661
|
:rtype: str
|
20948
20662
|
"""
|
20949
20663
|
return self._Comment
|
@@ -20955,7 +20669,6 @@ class GovernanceService(AbstractModel):
|
|
20955
20669
|
@property
|
20956
20670
|
def CreateTime(self):
|
20957
20671
|
"""创建时间。
|
20958
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20959
20672
|
:rtype: str
|
20960
20673
|
"""
|
20961
20674
|
return self._CreateTime
|
@@ -20967,7 +20680,6 @@ class GovernanceService(AbstractModel):
|
|
20967
20680
|
@property
|
20968
20681
|
def ModifyTime(self):
|
20969
20682
|
"""修改时间。
|
20970
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20971
20683
|
:rtype: str
|
20972
20684
|
"""
|
20973
20685
|
return self._ModifyTime
|
@@ -20979,7 +20691,6 @@ class GovernanceService(AbstractModel):
|
|
20979
20691
|
@property
|
20980
20692
|
def Department(self):
|
20981
20693
|
"""服务所属部门。
|
20982
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20983
20694
|
:rtype: str
|
20984
20695
|
"""
|
20985
20696
|
return self._Department
|
@@ -20991,7 +20702,6 @@ class GovernanceService(AbstractModel):
|
|
20991
20702
|
@property
|
20992
20703
|
def Business(self):
|
20993
20704
|
"""服务所属业务。
|
20994
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20995
20705
|
:rtype: str
|
20996
20706
|
"""
|
20997
20707
|
return self._Business
|
@@ -21003,7 +20713,6 @@ class GovernanceService(AbstractModel):
|
|
21003
20713
|
@property
|
21004
20714
|
def HealthyInstanceCount(self):
|
21005
20715
|
"""健康服务实例数
|
21006
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21007
20716
|
:rtype: int
|
21008
20717
|
"""
|
21009
20718
|
return self._HealthyInstanceCount
|
@@ -21015,7 +20724,6 @@ class GovernanceService(AbstractModel):
|
|
21015
20724
|
@property
|
21016
20725
|
def TotalInstanceCount(self):
|
21017
20726
|
"""服务实例总数
|
21018
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21019
20727
|
:rtype: int
|
21020
20728
|
"""
|
21021
20729
|
return self._TotalInstanceCount
|
@@ -21027,7 +20735,6 @@ class GovernanceService(AbstractModel):
|
|
21027
20735
|
@property
|
21028
20736
|
def Id(self):
|
21029
20737
|
"""服务ID
|
21030
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21031
20738
|
:rtype: str
|
21032
20739
|
"""
|
21033
20740
|
return self._Id
|
@@ -21039,7 +20746,6 @@ class GovernanceService(AbstractModel):
|
|
21039
20746
|
@property
|
21040
20747
|
def Editable(self):
|
21041
20748
|
"""是否可以编辑
|
21042
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21043
20749
|
:rtype: bool
|
21044
20750
|
"""
|
21045
20751
|
return self._Editable
|
@@ -21051,7 +20757,6 @@ class GovernanceService(AbstractModel):
|
|
21051
20757
|
@property
|
21052
20758
|
def UserIds(self):
|
21053
20759
|
"""可以编辑该资源的用户ID
|
21054
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21055
20760
|
:rtype: list of str
|
21056
20761
|
"""
|
21057
20762
|
return self._UserIds
|
@@ -21063,7 +20768,6 @@ class GovernanceService(AbstractModel):
|
|
21063
20768
|
@property
|
21064
20769
|
def GroupIds(self):
|
21065
20770
|
"""可以编辑该资源的用户组ID
|
21066
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21067
20771
|
:rtype: list of str
|
21068
20772
|
"""
|
21069
20773
|
return self._GroupIds
|
@@ -21075,7 +20779,6 @@ class GovernanceService(AbstractModel):
|
|
21075
20779
|
@property
|
21076
20780
|
def RemoveUserIds(self):
|
21077
20781
|
"""移除可以编辑该资源的用户ID
|
21078
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21079
20782
|
:rtype: list of str
|
21080
20783
|
"""
|
21081
20784
|
return self._RemoveUserIds
|
@@ -21087,7 +20790,6 @@ class GovernanceService(AbstractModel):
|
|
21087
20790
|
@property
|
21088
20791
|
def RemoveGroupIds(self):
|
21089
20792
|
"""移除可以编辑该资源的用户组ID
|
21090
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21091
20793
|
:rtype: list of str
|
21092
20794
|
"""
|
21093
20795
|
return self._RemoveGroupIds
|
@@ -21099,7 +20801,6 @@ class GovernanceService(AbstractModel):
|
|
21099
20801
|
@property
|
21100
20802
|
def ExportTo(self):
|
21101
20803
|
"""该服务对哪些命名空间可见
|
21102
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21103
20804
|
:rtype: list of str
|
21104
20805
|
"""
|
21105
20806
|
return self._ExportTo
|
@@ -21111,7 +20812,6 @@ class GovernanceService(AbstractModel):
|
|
21111
20812
|
@property
|
21112
20813
|
def Revision(self):
|
21113
20814
|
"""该服务信息摘要签名
|
21114
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21115
20815
|
:rtype: str
|
21116
20816
|
"""
|
21117
20817
|
return self._Revision
|
@@ -21175,37 +20875,26 @@ class GovernanceServiceContract(AbstractModel):
|
|
21175
20875
|
def __init__(self):
|
21176
20876
|
r"""
|
21177
20877
|
:param _Name: 契约名称
|
21178
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21179
20878
|
:type Name: str
|
21180
20879
|
:param _Namespace: 所属服务命名空间
|
21181
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21182
20880
|
:type Namespace: str
|
21183
20881
|
:param _Protocol: 协议
|
21184
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21185
20882
|
:type Protocol: str
|
21186
20883
|
:param _ID: 契约ID
|
21187
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21188
20884
|
:type ID: str
|
21189
20885
|
:param _Service: 所属服务名称
|
21190
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21191
20886
|
:type Service: str
|
21192
20887
|
:param _Version: 版本
|
21193
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21194
20888
|
:type Version: str
|
21195
20889
|
:param _Revision: 信息摘要
|
21196
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21197
20890
|
:type Revision: str
|
21198
20891
|
:param _Content: 额外内容描述
|
21199
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21200
20892
|
:type Content: str
|
21201
20893
|
:param _CreateTime: 创建时间
|
21202
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21203
20894
|
:type CreateTime: str
|
21204
20895
|
:param _ModifyTime: 修改时间
|
21205
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21206
20896
|
:type ModifyTime: str
|
21207
20897
|
:param _Interfaces: 契约接口列表
|
21208
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21209
20898
|
:type Interfaces: list of GovernanceInterfaceDescription
|
21210
20899
|
"""
|
21211
20900
|
self._Name = None
|
@@ -21223,7 +20912,6 @@ class GovernanceServiceContract(AbstractModel):
|
|
21223
20912
|
@property
|
21224
20913
|
def Name(self):
|
21225
20914
|
"""契约名称
|
21226
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21227
20915
|
:rtype: str
|
21228
20916
|
"""
|
21229
20917
|
return self._Name
|
@@ -21235,7 +20923,6 @@ class GovernanceServiceContract(AbstractModel):
|
|
21235
20923
|
@property
|
21236
20924
|
def Namespace(self):
|
21237
20925
|
"""所属服务命名空间
|
21238
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21239
20926
|
:rtype: str
|
21240
20927
|
"""
|
21241
20928
|
return self._Namespace
|
@@ -21247,7 +20934,6 @@ class GovernanceServiceContract(AbstractModel):
|
|
21247
20934
|
@property
|
21248
20935
|
def Protocol(self):
|
21249
20936
|
"""协议
|
21250
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21251
20937
|
:rtype: str
|
21252
20938
|
"""
|
21253
20939
|
return self._Protocol
|
@@ -21259,7 +20945,6 @@ class GovernanceServiceContract(AbstractModel):
|
|
21259
20945
|
@property
|
21260
20946
|
def ID(self):
|
21261
20947
|
"""契约ID
|
21262
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21263
20948
|
:rtype: str
|
21264
20949
|
"""
|
21265
20950
|
return self._ID
|
@@ -21271,7 +20956,6 @@ class GovernanceServiceContract(AbstractModel):
|
|
21271
20956
|
@property
|
21272
20957
|
def Service(self):
|
21273
20958
|
"""所属服务名称
|
21274
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21275
20959
|
:rtype: str
|
21276
20960
|
"""
|
21277
20961
|
return self._Service
|
@@ -21283,7 +20967,6 @@ class GovernanceServiceContract(AbstractModel):
|
|
21283
20967
|
@property
|
21284
20968
|
def Version(self):
|
21285
20969
|
"""版本
|
21286
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21287
20970
|
:rtype: str
|
21288
20971
|
"""
|
21289
20972
|
return self._Version
|
@@ -21295,7 +20978,6 @@ class GovernanceServiceContract(AbstractModel):
|
|
21295
20978
|
@property
|
21296
20979
|
def Revision(self):
|
21297
20980
|
"""信息摘要
|
21298
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21299
20981
|
:rtype: str
|
21300
20982
|
"""
|
21301
20983
|
return self._Revision
|
@@ -21307,7 +20989,6 @@ class GovernanceServiceContract(AbstractModel):
|
|
21307
20989
|
@property
|
21308
20990
|
def Content(self):
|
21309
20991
|
"""额外内容描述
|
21310
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21311
20992
|
:rtype: str
|
21312
20993
|
"""
|
21313
20994
|
return self._Content
|
@@ -21319,7 +21000,6 @@ class GovernanceServiceContract(AbstractModel):
|
|
21319
21000
|
@property
|
21320
21001
|
def CreateTime(self):
|
21321
21002
|
"""创建时间
|
21322
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21323
21003
|
:rtype: str
|
21324
21004
|
"""
|
21325
21005
|
return self._CreateTime
|
@@ -21331,7 +21011,6 @@ class GovernanceServiceContract(AbstractModel):
|
|
21331
21011
|
@property
|
21332
21012
|
def ModifyTime(self):
|
21333
21013
|
"""修改时间
|
21334
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21335
21014
|
:rtype: str
|
21336
21015
|
"""
|
21337
21016
|
return self._ModifyTime
|
@@ -21343,7 +21022,6 @@ class GovernanceServiceContract(AbstractModel):
|
|
21343
21022
|
@property
|
21344
21023
|
def Interfaces(self):
|
21345
21024
|
"""契约接口列表
|
21346
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21347
21025
|
:rtype: list of GovernanceInterfaceDescription
|
21348
21026
|
"""
|
21349
21027
|
return self._Interfaces
|
@@ -21388,13 +21066,10 @@ class GovernanceServiceContractVersion(AbstractModel):
|
|
21388
21066
|
def __init__(self):
|
21389
21067
|
r"""
|
21390
21068
|
:param _Version: 契约版本
|
21391
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21392
21069
|
:type Version: str
|
21393
21070
|
:param _Name: 契约名称
|
21394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21395
21071
|
:type Name: str
|
21396
21072
|
:param _Key: 唯一名称
|
21397
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21398
21073
|
:type Key: str
|
21399
21074
|
"""
|
21400
21075
|
self._Version = None
|
@@ -21404,7 +21079,6 @@ class GovernanceServiceContractVersion(AbstractModel):
|
|
21404
21079
|
@property
|
21405
21080
|
def Version(self):
|
21406
21081
|
"""契约版本
|
21407
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21408
21082
|
:rtype: str
|
21409
21083
|
"""
|
21410
21084
|
return self._Version
|
@@ -21416,7 +21090,6 @@ class GovernanceServiceContractVersion(AbstractModel):
|
|
21416
21090
|
@property
|
21417
21091
|
def Name(self):
|
21418
21092
|
"""契约名称
|
21419
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21420
21093
|
:rtype: str
|
21421
21094
|
"""
|
21422
21095
|
return self._Name
|
@@ -21428,7 +21101,6 @@ class GovernanceServiceContractVersion(AbstractModel):
|
|
21428
21101
|
@property
|
21429
21102
|
def Key(self):
|
21430
21103
|
"""唯一名称
|
21431
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21432
21104
|
:rtype: str
|
21433
21105
|
"""
|
21434
21106
|
return self._Key
|
@@ -21947,10 +21619,8 @@ class KVMapping(AbstractModel):
|
|
21947
21619
|
def __init__(self):
|
21948
21620
|
r"""
|
21949
21621
|
:param _Key: key
|
21950
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21951
21622
|
:type Key: str
|
21952
21623
|
:param _Value: value
|
21953
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21954
21624
|
:type Value: str
|
21955
21625
|
"""
|
21956
21626
|
self._Key = None
|
@@ -21959,7 +21629,6 @@ class KVMapping(AbstractModel):
|
|
21959
21629
|
@property
|
21960
21630
|
def Key(self):
|
21961
21631
|
"""key
|
21962
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21963
21632
|
:rtype: str
|
21964
21633
|
"""
|
21965
21634
|
return self._Key
|
@@ -21971,7 +21640,6 @@ class KVMapping(AbstractModel):
|
|
21971
21640
|
@property
|
21972
21641
|
def Value(self):
|
21973
21642
|
"""value
|
21974
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21975
21643
|
:rtype: str
|
21976
21644
|
"""
|
21977
21645
|
return self._Value
|
@@ -23387,31 +23055,22 @@ class KongTarget(AbstractModel):
|
|
23387
23055
|
def __init__(self):
|
23388
23056
|
r"""
|
23389
23057
|
:param _Host: Host
|
23390
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23391
23058
|
:type Host: str
|
23392
23059
|
:param _Port: 端口
|
23393
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23394
23060
|
:type Port: int
|
23395
23061
|
:param _Weight: 权重
|
23396
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23397
23062
|
:type Weight: int
|
23398
23063
|
:param _Health: 健康状态
|
23399
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23400
23064
|
:type Health: str
|
23401
23065
|
:param _CreatedTime: 创建时间
|
23402
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23403
23066
|
:type CreatedTime: str
|
23404
23067
|
:param _Source: Target的来源
|
23405
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23406
23068
|
:type Source: str
|
23407
23069
|
:param _CvmInstanceId: CVM实例ID
|
23408
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23409
23070
|
:type CvmInstanceId: str
|
23410
23071
|
:param _CvmInstanceName: CVM实例名称
|
23411
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23412
23072
|
:type CvmInstanceName: str
|
23413
23073
|
:param _Tags: target标签
|
23414
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23415
23074
|
:type Tags: list of str
|
23416
23075
|
"""
|
23417
23076
|
self._Host = None
|
@@ -23427,7 +23086,6 @@ class KongTarget(AbstractModel):
|
|
23427
23086
|
@property
|
23428
23087
|
def Host(self):
|
23429
23088
|
"""Host
|
23430
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23431
23089
|
:rtype: str
|
23432
23090
|
"""
|
23433
23091
|
return self._Host
|
@@ -23439,7 +23097,6 @@ class KongTarget(AbstractModel):
|
|
23439
23097
|
@property
|
23440
23098
|
def Port(self):
|
23441
23099
|
"""端口
|
23442
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23443
23100
|
:rtype: int
|
23444
23101
|
"""
|
23445
23102
|
return self._Port
|
@@ -23451,7 +23108,6 @@ class KongTarget(AbstractModel):
|
|
23451
23108
|
@property
|
23452
23109
|
def Weight(self):
|
23453
23110
|
"""权重
|
23454
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23455
23111
|
:rtype: int
|
23456
23112
|
"""
|
23457
23113
|
return self._Weight
|
@@ -23463,7 +23119,6 @@ class KongTarget(AbstractModel):
|
|
23463
23119
|
@property
|
23464
23120
|
def Health(self):
|
23465
23121
|
"""健康状态
|
23466
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23467
23122
|
:rtype: str
|
23468
23123
|
"""
|
23469
23124
|
return self._Health
|
@@ -23475,7 +23130,6 @@ class KongTarget(AbstractModel):
|
|
23475
23130
|
@property
|
23476
23131
|
def CreatedTime(self):
|
23477
23132
|
"""创建时间
|
23478
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23479
23133
|
:rtype: str
|
23480
23134
|
"""
|
23481
23135
|
return self._CreatedTime
|
@@ -23487,7 +23141,6 @@ class KongTarget(AbstractModel):
|
|
23487
23141
|
@property
|
23488
23142
|
def Source(self):
|
23489
23143
|
"""Target的来源
|
23490
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23491
23144
|
:rtype: str
|
23492
23145
|
"""
|
23493
23146
|
return self._Source
|
@@ -23499,7 +23152,6 @@ class KongTarget(AbstractModel):
|
|
23499
23152
|
@property
|
23500
23153
|
def CvmInstanceId(self):
|
23501
23154
|
"""CVM实例ID
|
23502
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23503
23155
|
:rtype: str
|
23504
23156
|
"""
|
23505
23157
|
return self._CvmInstanceId
|
@@ -23511,7 +23163,6 @@ class KongTarget(AbstractModel):
|
|
23511
23163
|
@property
|
23512
23164
|
def CvmInstanceName(self):
|
23513
23165
|
"""CVM实例名称
|
23514
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23515
23166
|
:rtype: str
|
23516
23167
|
"""
|
23517
23168
|
return self._CvmInstanceName
|
@@ -23523,7 +23174,6 @@ class KongTarget(AbstractModel):
|
|
23523
23174
|
@property
|
23524
23175
|
def Tags(self):
|
23525
23176
|
"""target标签
|
23526
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23527
23177
|
:rtype: list of str
|
23528
23178
|
"""
|
23529
23179
|
return self._Tags
|
@@ -23561,73 +23211,51 @@ class KongUpstreamInfo(AbstractModel):
|
|
23561
23211
|
def __init__(self):
|
23562
23212
|
r"""
|
23563
23213
|
:param _Host: IP或域名
|
23564
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23565
23214
|
:type Host: str
|
23566
23215
|
:param _Port: 端口
|
23567
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23568
23216
|
:type Port: int
|
23569
23217
|
:param _SourceID: 服务来源ID
|
23570
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23571
23218
|
:type SourceID: str
|
23572
23219
|
:param _Namespace: 命名空间
|
23573
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23574
23220
|
:type Namespace: str
|
23575
23221
|
:param _ServiceName: 服务(注册中心或Kubernetes中的服务)名字
|
23576
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23577
23222
|
:type ServiceName: str
|
23578
23223
|
:param _Targets: 服务后端类型是IPList时提供
|
23579
23224
|
注意:此字段可能返回 null,表示取不到有效值。
|
23580
23225
|
:type Targets: list of KongTarget
|
23581
23226
|
:param _SourceType: 服务来源类型
|
23582
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23583
23227
|
:type SourceType: str
|
23584
23228
|
:param _ScfType: SCF函数类型
|
23585
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23586
23229
|
:type ScfType: str
|
23587
23230
|
:param _ScfNamespace: SCF函数命名空间
|
23588
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23589
23231
|
:type ScfNamespace: str
|
23590
23232
|
:param _ScfLambdaName: SCF函数名
|
23591
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23592
23233
|
:type ScfLambdaName: str
|
23593
23234
|
:param _ScfLambdaQualifier: SCF函数版本
|
23594
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23595
23235
|
:type ScfLambdaQualifier: str
|
23596
23236
|
:param _SlowStart: 冷启动时间,单位秒
|
23597
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23598
23237
|
:type SlowStart: int
|
23599
23238
|
:param _Algorithm: 负载均衡算法,默认为 round-robin,还支持 least-connections,consisten_hashing
|
23600
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23601
23239
|
:type Algorithm: str
|
23602
23240
|
:param _AutoScalingGroupID: CVM弹性伸缩组ID
|
23603
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23604
23241
|
:type AutoScalingGroupID: str
|
23605
23242
|
:param _AutoScalingCvmPort: CVM弹性伸缩组端口
|
23606
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23607
23243
|
:type AutoScalingCvmPort: int
|
23608
23244
|
:param _AutoScalingTatCmdStatus: CVM弹性伸缩组使用的CVM TAT命令状态
|
23609
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23610
23245
|
:type AutoScalingTatCmdStatus: str
|
23611
23246
|
:param _AutoScalingHookStatus: CVM弹性伸缩组生命周期挂钩状态
|
23612
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23613
23247
|
:type AutoScalingHookStatus: str
|
23614
23248
|
:param _SourceName: 服务来源的名字
|
23615
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23616
23249
|
:type SourceName: str
|
23617
23250
|
:param _RealSourceType: 精确的服务来源类型,新建服务来源时候传入的类型
|
23618
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23619
23251
|
:type RealSourceType: str
|
23620
23252
|
:param _HealthStatus: upstream健康状态HEALTHY(健康), UNHEALTHY(异常), HEALTHCHECKS_OFF(未开启)和NONE(不支持健康检查)
|
23621
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23622
23253
|
:type HealthStatus: str
|
23623
23254
|
:param _ScfCamAuthEnable: 云函数是否开启CAM鉴权,不填时默认为开启(true)
|
23624
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23625
23255
|
:type ScfCamAuthEnable: bool
|
23626
23256
|
:param _ScfIsBase64Encoded: 云函数是否开启Base64编码,默认为false
|
23627
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23628
23257
|
:type ScfIsBase64Encoded: bool
|
23629
23258
|
:param _ScfIsIntegratedResponse: 云函数是否开启响应集成,默认为false
|
23630
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23631
23259
|
:type ScfIsIntegratedResponse: bool
|
23632
23260
|
"""
|
23633
23261
|
self._Host = None
|
@@ -23657,7 +23285,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23657
23285
|
@property
|
23658
23286
|
def Host(self):
|
23659
23287
|
"""IP或域名
|
23660
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23661
23288
|
:rtype: str
|
23662
23289
|
"""
|
23663
23290
|
return self._Host
|
@@ -23669,7 +23296,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23669
23296
|
@property
|
23670
23297
|
def Port(self):
|
23671
23298
|
"""端口
|
23672
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23673
23299
|
:rtype: int
|
23674
23300
|
"""
|
23675
23301
|
return self._Port
|
@@ -23681,7 +23307,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23681
23307
|
@property
|
23682
23308
|
def SourceID(self):
|
23683
23309
|
"""服务来源ID
|
23684
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23685
23310
|
:rtype: str
|
23686
23311
|
"""
|
23687
23312
|
return self._SourceID
|
@@ -23693,7 +23318,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23693
23318
|
@property
|
23694
23319
|
def Namespace(self):
|
23695
23320
|
"""命名空间
|
23696
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23697
23321
|
:rtype: str
|
23698
23322
|
"""
|
23699
23323
|
return self._Namespace
|
@@ -23705,7 +23329,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23705
23329
|
@property
|
23706
23330
|
def ServiceName(self):
|
23707
23331
|
"""服务(注册中心或Kubernetes中的服务)名字
|
23708
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23709
23332
|
:rtype: str
|
23710
23333
|
"""
|
23711
23334
|
return self._ServiceName
|
@@ -23729,7 +23352,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23729
23352
|
@property
|
23730
23353
|
def SourceType(self):
|
23731
23354
|
"""服务来源类型
|
23732
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23733
23355
|
:rtype: str
|
23734
23356
|
"""
|
23735
23357
|
return self._SourceType
|
@@ -23741,7 +23363,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23741
23363
|
@property
|
23742
23364
|
def ScfType(self):
|
23743
23365
|
"""SCF函数类型
|
23744
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23745
23366
|
:rtype: str
|
23746
23367
|
"""
|
23747
23368
|
return self._ScfType
|
@@ -23753,7 +23374,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23753
23374
|
@property
|
23754
23375
|
def ScfNamespace(self):
|
23755
23376
|
"""SCF函数命名空间
|
23756
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23757
23377
|
:rtype: str
|
23758
23378
|
"""
|
23759
23379
|
return self._ScfNamespace
|
@@ -23765,7 +23385,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23765
23385
|
@property
|
23766
23386
|
def ScfLambdaName(self):
|
23767
23387
|
"""SCF函数名
|
23768
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23769
23388
|
:rtype: str
|
23770
23389
|
"""
|
23771
23390
|
return self._ScfLambdaName
|
@@ -23777,7 +23396,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23777
23396
|
@property
|
23778
23397
|
def ScfLambdaQualifier(self):
|
23779
23398
|
"""SCF函数版本
|
23780
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23781
23399
|
:rtype: str
|
23782
23400
|
"""
|
23783
23401
|
return self._ScfLambdaQualifier
|
@@ -23789,7 +23407,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23789
23407
|
@property
|
23790
23408
|
def SlowStart(self):
|
23791
23409
|
"""冷启动时间,单位秒
|
23792
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23793
23410
|
:rtype: int
|
23794
23411
|
"""
|
23795
23412
|
return self._SlowStart
|
@@ -23801,7 +23418,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23801
23418
|
@property
|
23802
23419
|
def Algorithm(self):
|
23803
23420
|
"""负载均衡算法,默认为 round-robin,还支持 least-connections,consisten_hashing
|
23804
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23805
23421
|
:rtype: str
|
23806
23422
|
"""
|
23807
23423
|
return self._Algorithm
|
@@ -23813,7 +23429,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23813
23429
|
@property
|
23814
23430
|
def AutoScalingGroupID(self):
|
23815
23431
|
"""CVM弹性伸缩组ID
|
23816
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23817
23432
|
:rtype: str
|
23818
23433
|
"""
|
23819
23434
|
return self._AutoScalingGroupID
|
@@ -23825,7 +23440,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23825
23440
|
@property
|
23826
23441
|
def AutoScalingCvmPort(self):
|
23827
23442
|
"""CVM弹性伸缩组端口
|
23828
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23829
23443
|
:rtype: int
|
23830
23444
|
"""
|
23831
23445
|
return self._AutoScalingCvmPort
|
@@ -23837,7 +23451,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23837
23451
|
@property
|
23838
23452
|
def AutoScalingTatCmdStatus(self):
|
23839
23453
|
"""CVM弹性伸缩组使用的CVM TAT命令状态
|
23840
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23841
23454
|
:rtype: str
|
23842
23455
|
"""
|
23843
23456
|
return self._AutoScalingTatCmdStatus
|
@@ -23849,7 +23462,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23849
23462
|
@property
|
23850
23463
|
def AutoScalingHookStatus(self):
|
23851
23464
|
"""CVM弹性伸缩组生命周期挂钩状态
|
23852
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23853
23465
|
:rtype: str
|
23854
23466
|
"""
|
23855
23467
|
return self._AutoScalingHookStatus
|
@@ -23861,7 +23473,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23861
23473
|
@property
|
23862
23474
|
def SourceName(self):
|
23863
23475
|
"""服务来源的名字
|
23864
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23865
23476
|
:rtype: str
|
23866
23477
|
"""
|
23867
23478
|
return self._SourceName
|
@@ -23873,7 +23484,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23873
23484
|
@property
|
23874
23485
|
def RealSourceType(self):
|
23875
23486
|
"""精确的服务来源类型,新建服务来源时候传入的类型
|
23876
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23877
23487
|
:rtype: str
|
23878
23488
|
"""
|
23879
23489
|
return self._RealSourceType
|
@@ -23885,7 +23495,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23885
23495
|
@property
|
23886
23496
|
def HealthStatus(self):
|
23887
23497
|
"""upstream健康状态HEALTHY(健康), UNHEALTHY(异常), HEALTHCHECKS_OFF(未开启)和NONE(不支持健康检查)
|
23888
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23889
23498
|
:rtype: str
|
23890
23499
|
"""
|
23891
23500
|
return self._HealthStatus
|
@@ -23897,7 +23506,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23897
23506
|
@property
|
23898
23507
|
def ScfCamAuthEnable(self):
|
23899
23508
|
"""云函数是否开启CAM鉴权,不填时默认为开启(true)
|
23900
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23901
23509
|
:rtype: bool
|
23902
23510
|
"""
|
23903
23511
|
return self._ScfCamAuthEnable
|
@@ -23909,7 +23517,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23909
23517
|
@property
|
23910
23518
|
def ScfIsBase64Encoded(self):
|
23911
23519
|
"""云函数是否开启Base64编码,默认为false
|
23912
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23913
23520
|
:rtype: bool
|
23914
23521
|
"""
|
23915
23522
|
return self._ScfIsBase64Encoded
|
@@ -23921,7 +23528,6 @@ class KongUpstreamInfo(AbstractModel):
|
|
23921
23528
|
@property
|
23922
23529
|
def ScfIsIntegratedResponse(self):
|
23923
23530
|
"""云函数是否开启响应集成,默认为false
|
23924
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23925
23531
|
:rtype: bool
|
23926
23532
|
"""
|
23927
23533
|
return self._ScfIsIntegratedResponse
|
@@ -24426,13 +24032,10 @@ class Location(AbstractModel):
|
|
24426
24032
|
def __init__(self):
|
24427
24033
|
r"""
|
24428
24034
|
:param _Region: 大区
|
24429
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24430
24035
|
:type Region: str
|
24431
24036
|
:param _Zone: 可用区
|
24432
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24433
24037
|
:type Zone: str
|
24434
24038
|
:param _Campus: 机房
|
24435
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24436
24039
|
:type Campus: str
|
24437
24040
|
"""
|
24438
24041
|
self._Region = None
|
@@ -24442,7 +24045,6 @@ class Location(AbstractModel):
|
|
24442
24045
|
@property
|
24443
24046
|
def Region(self):
|
24444
24047
|
"""大区
|
24445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24446
24048
|
:rtype: str
|
24447
24049
|
"""
|
24448
24050
|
return self._Region
|
@@ -24454,7 +24056,6 @@ class Location(AbstractModel):
|
|
24454
24056
|
@property
|
24455
24057
|
def Zone(self):
|
24456
24058
|
"""可用区
|
24457
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24458
24059
|
:rtype: str
|
24459
24060
|
"""
|
24460
24061
|
return self._Zone
|
@@ -24466,7 +24067,6 @@ class Location(AbstractModel):
|
|
24466
24067
|
@property
|
24467
24068
|
def Campus(self):
|
24468
24069
|
"""机房
|
24469
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24470
24070
|
:rtype: str
|
24471
24071
|
"""
|
24472
24072
|
return self._Campus
|
@@ -24498,10 +24098,8 @@ class Metadata(AbstractModel):
|
|
24498
24098
|
def __init__(self):
|
24499
24099
|
r"""
|
24500
24100
|
:param _Key: 元数据键名。
|
24501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24502
24101
|
:type Key: str
|
24503
24102
|
:param _Value: 元数据键值。不填则默认为空字符串。
|
24504
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24505
24103
|
:type Value: str
|
24506
24104
|
"""
|
24507
24105
|
self._Key = None
|
@@ -24510,7 +24108,6 @@ class Metadata(AbstractModel):
|
|
24510
24108
|
@property
|
24511
24109
|
def Key(self):
|
24512
24110
|
"""元数据键名。
|
24513
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24514
24111
|
:rtype: str
|
24515
24112
|
"""
|
24516
24113
|
return self._Key
|
@@ -24522,7 +24119,6 @@ class Metadata(AbstractModel):
|
|
24522
24119
|
@property
|
24523
24120
|
def Value(self):
|
24524
24121
|
"""元数据键值。不填则默认为空字符串。
|
24525
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
24526
24122
|
:rtype: str
|
24527
24123
|
"""
|
24528
24124
|
return self._Value
|
@@ -27340,16 +26936,12 @@ class NacosReplica(AbstractModel):
|
|
27340
26936
|
:param _Status: 状态
|
27341
26937
|
:type Status: str
|
27342
26938
|
:param _SubnetId: 子网ID
|
27343
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27344
26939
|
:type SubnetId: str
|
27345
26940
|
:param _Zone: 可用区ID
|
27346
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27347
26941
|
:type Zone: str
|
27348
26942
|
:param _ZoneId: 可用区ID
|
27349
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27350
26943
|
:type ZoneId: str
|
27351
26944
|
:param _VpcId: VPC ID
|
27352
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27353
26945
|
:type VpcId: str
|
27354
26946
|
"""
|
27355
26947
|
self._Name = None
|
@@ -27396,7 +26988,6 @@ class NacosReplica(AbstractModel):
|
|
27396
26988
|
@property
|
27397
26989
|
def SubnetId(self):
|
27398
26990
|
"""子网ID
|
27399
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27400
26991
|
:rtype: str
|
27401
26992
|
"""
|
27402
26993
|
return self._SubnetId
|
@@ -27408,7 +26999,6 @@ class NacosReplica(AbstractModel):
|
|
27408
26999
|
@property
|
27409
27000
|
def Zone(self):
|
27410
27001
|
"""可用区ID
|
27411
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27412
27002
|
:rtype: str
|
27413
27003
|
"""
|
27414
27004
|
return self._Zone
|
@@ -27420,7 +27010,6 @@ class NacosReplica(AbstractModel):
|
|
27420
27010
|
@property
|
27421
27011
|
def ZoneId(self):
|
27422
27012
|
"""可用区ID
|
27423
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27424
27013
|
:rtype: str
|
27425
27014
|
"""
|
27426
27015
|
return self._ZoneId
|
@@ -27432,7 +27021,6 @@ class NacosReplica(AbstractModel):
|
|
27432
27021
|
@property
|
27433
27022
|
def VpcId(self):
|
27434
27023
|
"""VPC ID
|
27435
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27436
27024
|
:rtype: str
|
27437
27025
|
"""
|
27438
27026
|
return self._VpcId
|
@@ -27468,7 +27056,6 @@ class NacosServerInterface(AbstractModel):
|
|
27468
27056
|
def __init__(self):
|
27469
27057
|
r"""
|
27470
27058
|
:param _Interface: 接口名
|
27471
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27472
27059
|
:type Interface: str
|
27473
27060
|
"""
|
27474
27061
|
self._Interface = None
|
@@ -27476,7 +27063,6 @@ class NacosServerInterface(AbstractModel):
|
|
27476
27063
|
@property
|
27477
27064
|
def Interface(self):
|
27478
27065
|
"""接口名
|
27479
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
27480
27066
|
:rtype: str
|
27481
27067
|
"""
|
27482
27068
|
return self._Interface
|
@@ -28111,16 +27697,12 @@ class PolarisCLSTopicInfo(AbstractModel):
|
|
28111
27697
|
def __init__(self):
|
28112
27698
|
r"""
|
28113
27699
|
:param _LogSetId: 日志集ID
|
28114
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28115
27700
|
:type LogSetId: str
|
28116
27701
|
:param _LogSetName: 日志集名称
|
28117
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28118
27702
|
:type LogSetName: str
|
28119
27703
|
:param _TopicId: 日志主题ID
|
28120
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28121
27704
|
:type TopicId: str
|
28122
27705
|
:param _TopicName: 日志主题名称
|
28123
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28124
27706
|
:type TopicName: str
|
28125
27707
|
"""
|
28126
27708
|
self._LogSetId = None
|
@@ -28131,7 +27713,6 @@ class PolarisCLSTopicInfo(AbstractModel):
|
|
28131
27713
|
@property
|
28132
27714
|
def LogSetId(self):
|
28133
27715
|
"""日志集ID
|
28134
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28135
27716
|
:rtype: str
|
28136
27717
|
"""
|
28137
27718
|
return self._LogSetId
|
@@ -28143,7 +27724,6 @@ class PolarisCLSTopicInfo(AbstractModel):
|
|
28143
27724
|
@property
|
28144
27725
|
def LogSetName(self):
|
28145
27726
|
"""日志集名称
|
28146
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28147
27727
|
:rtype: str
|
28148
27728
|
"""
|
28149
27729
|
return self._LogSetName
|
@@ -28155,7 +27735,6 @@ class PolarisCLSTopicInfo(AbstractModel):
|
|
28155
27735
|
@property
|
28156
27736
|
def TopicId(self):
|
28157
27737
|
"""日志主题ID
|
28158
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28159
27738
|
:rtype: str
|
28160
27739
|
"""
|
28161
27740
|
return self._TopicId
|
@@ -28167,7 +27746,6 @@ class PolarisCLSTopicInfo(AbstractModel):
|
|
28167
27746
|
@property
|
28168
27747
|
def TopicName(self):
|
28169
27748
|
"""日志主题名称
|
28170
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28171
27749
|
:rtype: str
|
28172
27750
|
"""
|
28173
27751
|
return self._TopicName
|
@@ -28200,7 +27778,6 @@ class PolarisLimiterAddress(AbstractModel):
|
|
28200
27778
|
def __init__(self):
|
28201
27779
|
r"""
|
28202
27780
|
:param _IntranetAddress: VPC接入IP列表
|
28203
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28204
27781
|
:type IntranetAddress: str
|
28205
27782
|
"""
|
28206
27783
|
self._IntranetAddress = None
|
@@ -28208,7 +27785,6 @@ class PolarisLimiterAddress(AbstractModel):
|
|
28208
27785
|
@property
|
28209
27786
|
def IntranetAddress(self):
|
28210
27787
|
"""VPC接入IP列表
|
28211
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28212
27788
|
:rtype: str
|
28213
27789
|
"""
|
28214
27790
|
return self._IntranetAddress
|
@@ -28431,7 +28007,6 @@ class PublishConfigFilesResponse(AbstractModel):
|
|
28431
28007
|
:param _Result: 配置文件发布是否成功
|
28432
28008
|
:type Result: bool
|
28433
28009
|
:param _ConfigFileReleaseId: 配置文件发布Id
|
28434
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28435
28010
|
:type ConfigFileReleaseId: str
|
28436
28011
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
28437
28012
|
:type RequestId: str
|
@@ -28454,7 +28029,6 @@ class PublishConfigFilesResponse(AbstractModel):
|
|
28454
28029
|
@property
|
28455
28030
|
def ConfigFileReleaseId(self):
|
28456
28031
|
"""配置文件发布Id
|
28457
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28458
28032
|
:rtype: str
|
28459
28033
|
"""
|
28460
28034
|
return self._ConfigFileReleaseId
|
@@ -28617,22 +28191,16 @@ class ReleaseVersion(AbstractModel):
|
|
28617
28191
|
def __init__(self):
|
28618
28192
|
r"""
|
28619
28193
|
:param _Name: 配置发布的版本
|
28620
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28621
28194
|
:type Name: str
|
28622
28195
|
:param _Active: 是否生效
|
28623
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28624
28196
|
:type Active: bool
|
28625
28197
|
:param _Id: 配置发布的ID
|
28626
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28627
28198
|
:type Id: str
|
28628
28199
|
:param _Namespace: 配置发布的命名空间
|
28629
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28630
28200
|
:type Namespace: str
|
28631
28201
|
:param _Group: 配置发布的分组
|
28632
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28633
28202
|
:type Group: str
|
28634
28203
|
:param _FileName: 配置发布的文件名
|
28635
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28636
28204
|
:type FileName: str
|
28637
28205
|
"""
|
28638
28206
|
self._Name = None
|
@@ -28645,7 +28213,6 @@ class ReleaseVersion(AbstractModel):
|
|
28645
28213
|
@property
|
28646
28214
|
def Name(self):
|
28647
28215
|
"""配置发布的版本
|
28648
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28649
28216
|
:rtype: str
|
28650
28217
|
"""
|
28651
28218
|
return self._Name
|
@@ -28657,7 +28224,6 @@ class ReleaseVersion(AbstractModel):
|
|
28657
28224
|
@property
|
28658
28225
|
def Active(self):
|
28659
28226
|
"""是否生效
|
28660
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28661
28227
|
:rtype: bool
|
28662
28228
|
"""
|
28663
28229
|
return self._Active
|
@@ -28669,7 +28235,6 @@ class ReleaseVersion(AbstractModel):
|
|
28669
28235
|
@property
|
28670
28236
|
def Id(self):
|
28671
28237
|
"""配置发布的ID
|
28672
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28673
28238
|
:rtype: str
|
28674
28239
|
"""
|
28675
28240
|
return self._Id
|
@@ -28681,7 +28246,6 @@ class ReleaseVersion(AbstractModel):
|
|
28681
28246
|
@property
|
28682
28247
|
def Namespace(self):
|
28683
28248
|
"""配置发布的命名空间
|
28684
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28685
28249
|
:rtype: str
|
28686
28250
|
"""
|
28687
28251
|
return self._Namespace
|
@@ -28693,7 +28257,6 @@ class ReleaseVersion(AbstractModel):
|
|
28693
28257
|
@property
|
28694
28258
|
def Group(self):
|
28695
28259
|
"""配置发布的分组
|
28696
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28697
28260
|
:rtype: str
|
28698
28261
|
"""
|
28699
28262
|
return self._Group
|
@@ -28705,7 +28268,6 @@ class ReleaseVersion(AbstractModel):
|
|
28705
28268
|
@property
|
28706
28269
|
def FileName(self):
|
28707
28270
|
"""配置发布的文件名
|
28708
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28709
28271
|
:rtype: str
|
28710
28272
|
"""
|
28711
28273
|
return self._FileName
|
@@ -29210,88 +28772,60 @@ class SREInstance(AbstractModel):
|
|
29210
28772
|
:param _VpcId: Vpc iD
|
29211
28773
|
:type VpcId: str
|
29212
28774
|
:param _SubnetIds: 子网ID
|
29213
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29214
28775
|
:type SubnetIds: list of str
|
29215
28776
|
:param _EnableStorage: 是否开启持久化存储
|
29216
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29217
28777
|
:type EnableStorage: bool
|
29218
28778
|
:param _StorageType: 数据存储方式
|
29219
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29220
28779
|
:type StorageType: str
|
29221
28780
|
:param _StorageCapacity: 云硬盘容量
|
29222
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29223
28781
|
:type StorageCapacity: int
|
29224
28782
|
:param _Paymode: 计费方式
|
29225
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29226
28783
|
:type Paymode: str
|
29227
28784
|
:param _EKSClusterID: EKS集群的ID
|
29228
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29229
28785
|
:type EKSClusterID: str
|
29230
28786
|
:param _CreateTime: 集群创建时间
|
29231
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29232
28787
|
:type CreateTime: str
|
29233
28788
|
:param _EnvInfos: 环境配置信息列表
|
29234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29235
28789
|
:type EnvInfos: list of EnvInfo
|
29236
28790
|
:param _EngineRegion: 引擎所在的区域
|
29237
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29238
28791
|
:type EngineRegion: str
|
29239
28792
|
:param _EnableInternet: 注册引擎是否开启公网
|
29240
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29241
28793
|
:type EnableInternet: bool
|
29242
28794
|
:param _VpcInfos: 私有网络列表信息
|
29243
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29244
28795
|
:type VpcInfos: list of VpcInfo
|
29245
28796
|
:param _ServiceGovernanceInfos: 服务治理相关信息列表
|
29246
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29247
28797
|
:type ServiceGovernanceInfos: list of ServiceGovernanceInfo
|
29248
28798
|
:param _Tags: 实例的标签信息
|
29249
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29250
28799
|
:type Tags: list of KVPair
|
29251
28800
|
:param _EnableConsoleInternet: 引擎实例是否开启控制台公网访问地址
|
29252
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29253
28801
|
:type EnableConsoleInternet: bool
|
29254
28802
|
:param _EnableConsoleIntranet: 引擎实例是否开启控制台内网访问地址
|
29255
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29256
28803
|
:type EnableConsoleIntranet: bool
|
29257
28804
|
:param _ConfigInfoVisible: 引擎实例是否展示参数配置页面
|
29258
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29259
28805
|
:type ConfigInfoVisible: bool
|
29260
28806
|
:param _ConsoleDefaultPwd: 引擎实例控制台默认密码
|
29261
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29262
28807
|
:type ConsoleDefaultPwd: str
|
29263
28808
|
:param _TradeType: 交易付费类型,0后付费/1预付费
|
29264
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29265
28809
|
:type TradeType: int
|
29266
28810
|
:param _AutoRenewFlag: 自动续费标记:0表示默认状态(用户未设置,即初始状态), 1表示自动续费,2表示明确不自动续费
|
29267
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29268
28811
|
:type AutoRenewFlag: int
|
29269
28812
|
:param _CurDeadline: 预付费到期时间
|
29270
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29271
28813
|
:type CurDeadline: str
|
29272
28814
|
:param _IsolateTime: 隔离开始时间
|
29273
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29274
28815
|
:type IsolateTime: str
|
29275
28816
|
:param _RegionInfos: 实例地域相关的描述信息
|
29276
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29277
28817
|
:type RegionInfos: list of DescribeInstanceRegionInfo
|
29278
28818
|
:param _EKSType: 所在EKS环境,分为common和yunti
|
29279
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29280
28819
|
:type EKSType: str
|
29281
28820
|
:param _FeatureVersion: 引擎的产品版本
|
29282
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29283
28821
|
:type FeatureVersion: str
|
29284
28822
|
:param _EnableClientIntranet: 引擎实例是否开启客户端内网访问地址
|
29285
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29286
28823
|
:type EnableClientIntranet: bool
|
29287
28824
|
:param _StorageOption: 存储额外配置选项
|
29288
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29289
28825
|
:type StorageOption: list of StorageOption
|
29290
28826
|
:param _ZookeeperRegionInfo: Zookeeper的额外环境数据信息
|
29291
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29292
28827
|
:type ZookeeperRegionInfo: :class:`tencentcloud.tse.v20201207.models.ZookeeperRegionInfo`
|
29293
28828
|
:param _DeployMode: 部署架构
|
29294
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29295
28829
|
:type DeployMode: str
|
29296
28830
|
"""
|
29297
28831
|
self._InstanceId = None
|
@@ -29422,7 +28956,6 @@ class SREInstance(AbstractModel):
|
|
29422
28956
|
@property
|
29423
28957
|
def SubnetIds(self):
|
29424
28958
|
"""子网ID
|
29425
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29426
28959
|
:rtype: list of str
|
29427
28960
|
"""
|
29428
28961
|
return self._SubnetIds
|
@@ -29434,7 +28967,6 @@ class SREInstance(AbstractModel):
|
|
29434
28967
|
@property
|
29435
28968
|
def EnableStorage(self):
|
29436
28969
|
"""是否开启持久化存储
|
29437
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29438
28970
|
:rtype: bool
|
29439
28971
|
"""
|
29440
28972
|
return self._EnableStorage
|
@@ -29446,7 +28978,6 @@ class SREInstance(AbstractModel):
|
|
29446
28978
|
@property
|
29447
28979
|
def StorageType(self):
|
29448
28980
|
"""数据存储方式
|
29449
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29450
28981
|
:rtype: str
|
29451
28982
|
"""
|
29452
28983
|
return self._StorageType
|
@@ -29458,7 +28989,6 @@ class SREInstance(AbstractModel):
|
|
29458
28989
|
@property
|
29459
28990
|
def StorageCapacity(self):
|
29460
28991
|
"""云硬盘容量
|
29461
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29462
28992
|
:rtype: int
|
29463
28993
|
"""
|
29464
28994
|
return self._StorageCapacity
|
@@ -29470,7 +29000,6 @@ class SREInstance(AbstractModel):
|
|
29470
29000
|
@property
|
29471
29001
|
def Paymode(self):
|
29472
29002
|
"""计费方式
|
29473
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29474
29003
|
:rtype: str
|
29475
29004
|
"""
|
29476
29005
|
return self._Paymode
|
@@ -29482,7 +29011,6 @@ class SREInstance(AbstractModel):
|
|
29482
29011
|
@property
|
29483
29012
|
def EKSClusterID(self):
|
29484
29013
|
"""EKS集群的ID
|
29485
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29486
29014
|
:rtype: str
|
29487
29015
|
"""
|
29488
29016
|
return self._EKSClusterID
|
@@ -29494,7 +29022,6 @@ class SREInstance(AbstractModel):
|
|
29494
29022
|
@property
|
29495
29023
|
def CreateTime(self):
|
29496
29024
|
"""集群创建时间
|
29497
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29498
29025
|
:rtype: str
|
29499
29026
|
"""
|
29500
29027
|
return self._CreateTime
|
@@ -29506,7 +29033,6 @@ class SREInstance(AbstractModel):
|
|
29506
29033
|
@property
|
29507
29034
|
def EnvInfos(self):
|
29508
29035
|
"""环境配置信息列表
|
29509
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29510
29036
|
:rtype: list of EnvInfo
|
29511
29037
|
"""
|
29512
29038
|
return self._EnvInfos
|
@@ -29518,7 +29044,6 @@ class SREInstance(AbstractModel):
|
|
29518
29044
|
@property
|
29519
29045
|
def EngineRegion(self):
|
29520
29046
|
"""引擎所在的区域
|
29521
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29522
29047
|
:rtype: str
|
29523
29048
|
"""
|
29524
29049
|
return self._EngineRegion
|
@@ -29530,7 +29055,6 @@ class SREInstance(AbstractModel):
|
|
29530
29055
|
@property
|
29531
29056
|
def EnableInternet(self):
|
29532
29057
|
"""注册引擎是否开启公网
|
29533
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29534
29058
|
:rtype: bool
|
29535
29059
|
"""
|
29536
29060
|
return self._EnableInternet
|
@@ -29542,7 +29066,6 @@ class SREInstance(AbstractModel):
|
|
29542
29066
|
@property
|
29543
29067
|
def VpcInfos(self):
|
29544
29068
|
"""私有网络列表信息
|
29545
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29546
29069
|
:rtype: list of VpcInfo
|
29547
29070
|
"""
|
29548
29071
|
return self._VpcInfos
|
@@ -29554,7 +29077,6 @@ class SREInstance(AbstractModel):
|
|
29554
29077
|
@property
|
29555
29078
|
def ServiceGovernanceInfos(self):
|
29556
29079
|
"""服务治理相关信息列表
|
29557
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29558
29080
|
:rtype: list of ServiceGovernanceInfo
|
29559
29081
|
"""
|
29560
29082
|
return self._ServiceGovernanceInfos
|
@@ -29566,7 +29088,6 @@ class SREInstance(AbstractModel):
|
|
29566
29088
|
@property
|
29567
29089
|
def Tags(self):
|
29568
29090
|
"""实例的标签信息
|
29569
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29570
29091
|
:rtype: list of KVPair
|
29571
29092
|
"""
|
29572
29093
|
return self._Tags
|
@@ -29578,7 +29099,6 @@ class SREInstance(AbstractModel):
|
|
29578
29099
|
@property
|
29579
29100
|
def EnableConsoleInternet(self):
|
29580
29101
|
"""引擎实例是否开启控制台公网访问地址
|
29581
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29582
29102
|
:rtype: bool
|
29583
29103
|
"""
|
29584
29104
|
return self._EnableConsoleInternet
|
@@ -29590,7 +29110,6 @@ class SREInstance(AbstractModel):
|
|
29590
29110
|
@property
|
29591
29111
|
def EnableConsoleIntranet(self):
|
29592
29112
|
"""引擎实例是否开启控制台内网访问地址
|
29593
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29594
29113
|
:rtype: bool
|
29595
29114
|
"""
|
29596
29115
|
return self._EnableConsoleIntranet
|
@@ -29602,7 +29121,6 @@ class SREInstance(AbstractModel):
|
|
29602
29121
|
@property
|
29603
29122
|
def ConfigInfoVisible(self):
|
29604
29123
|
"""引擎实例是否展示参数配置页面
|
29605
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29606
29124
|
:rtype: bool
|
29607
29125
|
"""
|
29608
29126
|
return self._ConfigInfoVisible
|
@@ -29614,7 +29132,6 @@ class SREInstance(AbstractModel):
|
|
29614
29132
|
@property
|
29615
29133
|
def ConsoleDefaultPwd(self):
|
29616
29134
|
"""引擎实例控制台默认密码
|
29617
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29618
29135
|
:rtype: str
|
29619
29136
|
"""
|
29620
29137
|
return self._ConsoleDefaultPwd
|
@@ -29626,7 +29143,6 @@ class SREInstance(AbstractModel):
|
|
29626
29143
|
@property
|
29627
29144
|
def TradeType(self):
|
29628
29145
|
"""交易付费类型,0后付费/1预付费
|
29629
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29630
29146
|
:rtype: int
|
29631
29147
|
"""
|
29632
29148
|
return self._TradeType
|
@@ -29638,7 +29154,6 @@ class SREInstance(AbstractModel):
|
|
29638
29154
|
@property
|
29639
29155
|
def AutoRenewFlag(self):
|
29640
29156
|
"""自动续费标记:0表示默认状态(用户未设置,即初始状态), 1表示自动续费,2表示明确不自动续费
|
29641
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29642
29157
|
:rtype: int
|
29643
29158
|
"""
|
29644
29159
|
return self._AutoRenewFlag
|
@@ -29650,7 +29165,6 @@ class SREInstance(AbstractModel):
|
|
29650
29165
|
@property
|
29651
29166
|
def CurDeadline(self):
|
29652
29167
|
"""预付费到期时间
|
29653
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29654
29168
|
:rtype: str
|
29655
29169
|
"""
|
29656
29170
|
return self._CurDeadline
|
@@ -29662,7 +29176,6 @@ class SREInstance(AbstractModel):
|
|
29662
29176
|
@property
|
29663
29177
|
def IsolateTime(self):
|
29664
29178
|
"""隔离开始时间
|
29665
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29666
29179
|
:rtype: str
|
29667
29180
|
"""
|
29668
29181
|
return self._IsolateTime
|
@@ -29674,7 +29187,6 @@ class SREInstance(AbstractModel):
|
|
29674
29187
|
@property
|
29675
29188
|
def RegionInfos(self):
|
29676
29189
|
"""实例地域相关的描述信息
|
29677
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29678
29190
|
:rtype: list of DescribeInstanceRegionInfo
|
29679
29191
|
"""
|
29680
29192
|
return self._RegionInfos
|
@@ -29686,7 +29198,6 @@ class SREInstance(AbstractModel):
|
|
29686
29198
|
@property
|
29687
29199
|
def EKSType(self):
|
29688
29200
|
"""所在EKS环境,分为common和yunti
|
29689
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29690
29201
|
:rtype: str
|
29691
29202
|
"""
|
29692
29203
|
return self._EKSType
|
@@ -29698,7 +29209,6 @@ class SREInstance(AbstractModel):
|
|
29698
29209
|
@property
|
29699
29210
|
def FeatureVersion(self):
|
29700
29211
|
"""引擎的产品版本
|
29701
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29702
29212
|
:rtype: str
|
29703
29213
|
"""
|
29704
29214
|
return self._FeatureVersion
|
@@ -29710,7 +29220,6 @@ class SREInstance(AbstractModel):
|
|
29710
29220
|
@property
|
29711
29221
|
def EnableClientIntranet(self):
|
29712
29222
|
"""引擎实例是否开启客户端内网访问地址
|
29713
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29714
29223
|
:rtype: bool
|
29715
29224
|
"""
|
29716
29225
|
return self._EnableClientIntranet
|
@@ -29722,7 +29231,6 @@ class SREInstance(AbstractModel):
|
|
29722
29231
|
@property
|
29723
29232
|
def StorageOption(self):
|
29724
29233
|
"""存储额外配置选项
|
29725
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29726
29234
|
:rtype: list of StorageOption
|
29727
29235
|
"""
|
29728
29236
|
return self._StorageOption
|
@@ -29734,7 +29242,6 @@ class SREInstance(AbstractModel):
|
|
29734
29242
|
@property
|
29735
29243
|
def ZookeeperRegionInfo(self):
|
29736
29244
|
"""Zookeeper的额外环境数据信息
|
29737
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29738
29245
|
:rtype: :class:`tencentcloud.tse.v20201207.models.ZookeeperRegionInfo`
|
29739
29246
|
"""
|
29740
29247
|
return self._ZookeeperRegionInfo
|
@@ -29746,7 +29253,6 @@ class SREInstance(AbstractModel):
|
|
29746
29253
|
@property
|
29747
29254
|
def DeployMode(self):
|
29748
29255
|
"""部署架构
|
29749
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29750
29256
|
:rtype: str
|
29751
29257
|
"""
|
29752
29258
|
return self._DeployMode
|
@@ -29859,7 +29365,6 @@ class ServiceGovernanceInfo(AbstractModel):
|
|
29859
29365
|
:param _LimiterVpcInfos: 服务治理限流server引擎绑定的网络信息
|
29860
29366
|
:type LimiterVpcInfos: list of VpcInfo
|
29861
29367
|
:param _CLSTopics: 引擎关联CLS日志主题信息
|
29862
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29863
29368
|
:type CLSTopics: list of PolarisCLSTopicInfo
|
29864
29369
|
"""
|
29865
29370
|
self._EngineRegion = None
|
@@ -29963,7 +29468,6 @@ class ServiceGovernanceInfo(AbstractModel):
|
|
29963
29468
|
@property
|
29964
29469
|
def CLSTopics(self):
|
29965
29470
|
"""引擎关联CLS日志主题信息
|
29966
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
29967
29471
|
:rtype: list of PolarisCLSTopicInfo
|
29968
29472
|
"""
|
29969
29473
|
return self._CLSTopics
|
@@ -30316,13 +29820,10 @@ class StorageOption(AbstractModel):
|
|
30316
29820
|
def __init__(self):
|
30317
29821
|
r"""
|
30318
29822
|
:param _Name: 存储对象,分为snap和txn两种
|
30319
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30320
29823
|
:type Name: str
|
30321
29824
|
:param _Type: 存储类型,分为三类CLOUD_PREMIUM/CLOUD_SSD/CLOUD_SSD_PLUS,分别对应高性能云硬盘、SSD云硬盘、增强型SSD云硬盘
|
30322
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30323
29825
|
:type Type: str
|
30324
29826
|
:param _Capacity: 存储容量,[50, 3200]的范围
|
30325
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30326
29827
|
:type Capacity: int
|
30327
29828
|
"""
|
30328
29829
|
self._Name = None
|
@@ -30332,7 +29833,6 @@ class StorageOption(AbstractModel):
|
|
30332
29833
|
@property
|
30333
29834
|
def Name(self):
|
30334
29835
|
"""存储对象,分为snap和txn两种
|
30335
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30336
29836
|
:rtype: str
|
30337
29837
|
"""
|
30338
29838
|
return self._Name
|
@@ -30344,7 +29844,6 @@ class StorageOption(AbstractModel):
|
|
30344
29844
|
@property
|
30345
29845
|
def Type(self):
|
30346
29846
|
"""存储类型,分为三类CLOUD_PREMIUM/CLOUD_SSD/CLOUD_SSD_PLUS,分别对应高性能云硬盘、SSD云硬盘、增强型SSD云硬盘
|
30347
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30348
29847
|
:rtype: str
|
30349
29848
|
"""
|
30350
29849
|
return self._Type
|
@@ -30356,7 +29855,6 @@ class StorageOption(AbstractModel):
|
|
30356
29855
|
@property
|
30357
29856
|
def Capacity(self):
|
30358
29857
|
"""存储容量,[50, 3200]的范围
|
30359
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30360
29858
|
:rtype: int
|
30361
29859
|
"""
|
30362
29860
|
return self._Capacity
|
@@ -31332,10 +30830,8 @@ class VpcInfo(AbstractModel):
|
|
31332
30830
|
:param _SubnetId: 子网ID
|
31333
30831
|
:type SubnetId: str
|
31334
30832
|
:param _IntranetAddress: 内网访问地址
|
31335
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31336
30833
|
:type IntranetAddress: str
|
31337
30834
|
:param _LbSubnetId: 负载均衡均衡接入点子网ID
|
31338
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31339
30835
|
:type LbSubnetId: str
|
31340
30836
|
"""
|
31341
30837
|
self._VpcId = None
|
@@ -31368,7 +30864,6 @@ class VpcInfo(AbstractModel):
|
|
31368
30864
|
@property
|
31369
30865
|
def IntranetAddress(self):
|
31370
30866
|
"""内网访问地址
|
31371
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31372
30867
|
:rtype: str
|
31373
30868
|
"""
|
31374
30869
|
return self._IntranetAddress
|
@@ -31380,7 +30875,6 @@ class VpcInfo(AbstractModel):
|
|
31380
30875
|
@property
|
31381
30876
|
def LbSubnetId(self):
|
31382
30877
|
"""负载均衡均衡接入点子网ID
|
31383
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31384
30878
|
:rtype: str
|
31385
30879
|
"""
|
31386
30880
|
return self._LbSubnetId
|
@@ -31417,13 +30911,10 @@ class ZookeeperRegionInfo(AbstractModel):
|
|
31417
30911
|
- SingleRegion: 普通单地域
|
31418
30912
|
- MultiRegion: 普通多地域场景
|
31419
30913
|
- MasterSlave: 两地域,主备地域场景
|
31420
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31421
30914
|
:type DeployMode: str
|
31422
30915
|
:param _MainRegion: 主地域的额外信息
|
31423
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31424
30916
|
:type MainRegion: :class:`tencentcloud.tse.v20201207.models.ZookeeperRegionMyIdInfo`
|
31425
30917
|
:param _OtherRegions: 其他地域的额外信息
|
31426
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31427
30918
|
:type OtherRegions: list of ZookeeperRegionMyIdInfo
|
31428
30919
|
"""
|
31429
30920
|
self._DeployMode = None
|
@@ -31437,7 +30928,6 @@ class ZookeeperRegionInfo(AbstractModel):
|
|
31437
30928
|
- SingleRegion: 普通单地域
|
31438
30929
|
- MultiRegion: 普通多地域场景
|
31439
30930
|
- MasterSlave: 两地域,主备地域场景
|
31440
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31441
30931
|
:rtype: str
|
31442
30932
|
"""
|
31443
30933
|
return self._DeployMode
|
@@ -31449,7 +30939,6 @@ class ZookeeperRegionInfo(AbstractModel):
|
|
31449
30939
|
@property
|
31450
30940
|
def MainRegion(self):
|
31451
30941
|
"""主地域的额外信息
|
31452
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31453
30942
|
:rtype: :class:`tencentcloud.tse.v20201207.models.ZookeeperRegionMyIdInfo`
|
31454
30943
|
"""
|
31455
30944
|
return self._MainRegion
|
@@ -31461,7 +30950,6 @@ class ZookeeperRegionInfo(AbstractModel):
|
|
31461
30950
|
@property
|
31462
30951
|
def OtherRegions(self):
|
31463
30952
|
"""其他地域的额外信息
|
31464
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31465
30953
|
:rtype: list of ZookeeperRegionMyIdInfo
|
31466
30954
|
"""
|
31467
30955
|
return self._OtherRegions
|
@@ -31500,13 +30988,10 @@ class ZookeeperRegionMyIdInfo(AbstractModel):
|
|
31500
30988
|
def __init__(self):
|
31501
30989
|
r"""
|
31502
30990
|
:param _Region: 地域信息
|
31503
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31504
30991
|
:type Region: str
|
31505
30992
|
:param _MyIdStart: myid 的起始号段
|
31506
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31507
30993
|
:type MyIdStart: int
|
31508
30994
|
:param _MyIdEnd: myid 的结束号段
|
31509
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31510
30995
|
:type MyIdEnd: int
|
31511
30996
|
"""
|
31512
30997
|
self._Region = None
|
@@ -31516,7 +31001,6 @@ class ZookeeperRegionMyIdInfo(AbstractModel):
|
|
31516
31001
|
@property
|
31517
31002
|
def Region(self):
|
31518
31003
|
"""地域信息
|
31519
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31520
31004
|
:rtype: str
|
31521
31005
|
"""
|
31522
31006
|
return self._Region
|
@@ -31528,7 +31012,6 @@ class ZookeeperRegionMyIdInfo(AbstractModel):
|
|
31528
31012
|
@property
|
31529
31013
|
def MyIdStart(self):
|
31530
31014
|
"""myid 的起始号段
|
31531
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31532
31015
|
:rtype: int
|
31533
31016
|
"""
|
31534
31017
|
return self._MyIdStart
|
@@ -31540,7 +31023,6 @@ class ZookeeperRegionMyIdInfo(AbstractModel):
|
|
31540
31023
|
@property
|
31541
31024
|
def MyIdEnd(self):
|
31542
31025
|
"""myid 的结束号段
|
31543
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31544
31026
|
:rtype: int
|
31545
31027
|
"""
|
31546
31028
|
return self._MyIdEnd
|
@@ -31578,19 +31060,14 @@ class ZookeeperReplica(AbstractModel):
|
|
31578
31060
|
:param _Status: 状态
|
31579
31061
|
:type Status: str
|
31580
31062
|
:param _SubnetId: 子网ID
|
31581
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31582
31063
|
:type SubnetId: str
|
31583
31064
|
:param _Zone: 可用区ID
|
31584
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31585
31065
|
:type Zone: str
|
31586
31066
|
:param _ZoneId: 可用区ID
|
31587
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31588
31067
|
:type ZoneId: str
|
31589
31068
|
:param _AliasName: 别名
|
31590
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31591
31069
|
:type AliasName: str
|
31592
31070
|
:param _VpcId: VPC ID
|
31593
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31594
31071
|
:type VpcId: str
|
31595
31072
|
"""
|
31596
31073
|
self._Name = None
|
@@ -31638,7 +31115,6 @@ class ZookeeperReplica(AbstractModel):
|
|
31638
31115
|
@property
|
31639
31116
|
def SubnetId(self):
|
31640
31117
|
"""子网ID
|
31641
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31642
31118
|
:rtype: str
|
31643
31119
|
"""
|
31644
31120
|
return self._SubnetId
|
@@ -31650,7 +31126,6 @@ class ZookeeperReplica(AbstractModel):
|
|
31650
31126
|
@property
|
31651
31127
|
def Zone(self):
|
31652
31128
|
"""可用区ID
|
31653
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31654
31129
|
:rtype: str
|
31655
31130
|
"""
|
31656
31131
|
return self._Zone
|
@@ -31662,7 +31137,6 @@ class ZookeeperReplica(AbstractModel):
|
|
31662
31137
|
@property
|
31663
31138
|
def ZoneId(self):
|
31664
31139
|
"""可用区ID
|
31665
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31666
31140
|
:rtype: str
|
31667
31141
|
"""
|
31668
31142
|
return self._ZoneId
|
@@ -31674,7 +31148,6 @@ class ZookeeperReplica(AbstractModel):
|
|
31674
31148
|
@property
|
31675
31149
|
def AliasName(self):
|
31676
31150
|
"""别名
|
31677
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31678
31151
|
:rtype: str
|
31679
31152
|
"""
|
31680
31153
|
return self._AliasName
|
@@ -31686,7 +31159,6 @@ class ZookeeperReplica(AbstractModel):
|
|
31686
31159
|
@property
|
31687
31160
|
def VpcId(self):
|
31688
31161
|
"""VPC ID
|
31689
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31690
31162
|
:rtype: str
|
31691
31163
|
"""
|
31692
31164
|
return self._VpcId
|
@@ -31723,7 +31195,6 @@ class ZookeeperServerInterface(AbstractModel):
|
|
31723
31195
|
def __init__(self):
|
31724
31196
|
r"""
|
31725
31197
|
:param _Interface: 接口名
|
31726
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31727
31198
|
:type Interface: str
|
31728
31199
|
"""
|
31729
31200
|
self._Interface = None
|
@@ -31731,7 +31202,6 @@ class ZookeeperServerInterface(AbstractModel):
|
|
31731
31202
|
@property
|
31732
31203
|
def Interface(self):
|
31733
31204
|
"""接口名
|
31734
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
31735
31205
|
:rtype: str
|
31736
31206
|
"""
|
31737
31207
|
return self._Interface
|