tencentcloud-sdk-python 3.0.1360__py2.py3-none-any.whl → 3.0.1362__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/bh/v20230418/bh_client.py +23 -0
- tencentcloud/bh/v20230418/models.py +139 -0
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +6 -6
- tencentcloud/cdwdoris/v20211228/models.py +30 -0
- tencentcloud/cdwpg/v20201230/models.py +22 -334
- tencentcloud/cvm/v20170312/models.py +20 -10
- tencentcloud/cwp/v20180228/models.py +138 -12
- tencentcloud/cynosdb/v20190107/models.py +45 -0
- tencentcloud/dlc/v20210125/models.py +107 -566
- tencentcloud/dsgc/v20190723/models.py +30 -0
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +214 -0
- tencentcloud/es/v20250101/es_client.py +23 -0
- tencentcloud/es/v20250101/models.py +356 -1
- tencentcloud/ess/v20201111/models.py +256 -0
- tencentcloud/essbasic/v20210526/models.py +281 -13
- tencentcloud/gaap/v20180529/gaap_client.py +1 -1
- tencentcloud/gaap/v20180529/models.py +2 -186
- tencentcloud/gs/v20191118/gs_client.py +46 -0
- tencentcloud/gs/v20191118/models.py +385 -8
- tencentcloud/ioa/v20220601/ioa_client.py +46 -0
- tencentcloud/ioa/v20220601/models.py +358 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +115 -0
- tencentcloud/iotexplorer/v20190423/models.py +1228 -50
- tencentcloud/kms/v20190118/models.py +71 -0
- tencentcloud/lcic/v20220817/models.py +64 -0
- tencentcloud/lighthouse/v20200324/errorcodes.py +0 -6
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +4 -57
- tencentcloud/lighthouse/v20200324/models.py +14 -168
- tencentcloud/monitor/v20180724/models.py +2 -2
- tencentcloud/monitor/v20180724/monitor_client.py +1 -1
- tencentcloud/mps/v20190612/models.py +168 -17
- tencentcloud/oceanus/v20190422/models.py +2 -2
- tencentcloud/privatedns/v20201028/models.py +6 -6
- tencentcloud/tan/v20220420/tan_client.py +3 -1
- tencentcloud/tcbr/v20220217/models.py +15 -0
- tencentcloud/tione/v20211111/models.py +91 -0
- tencentcloud/trocket/v20230308/models.py +1451 -66
- tencentcloud/trocket/v20230308/trocket_client.py +215 -0
- tencentcloud/vcube/v20220410/models.py +15 -0
- tencentcloud/vdb/v20230616/models.py +15 -0
- tencentcloud/vpc/v20170312/models.py +307 -78
- tencentcloud/vpc/v20170312/vpc_client.py +31 -3
- tencentcloud/wedata/v20210820/models.py +6 -6
- {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/RECORD +51 -51
- {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/top_level.txt +0 -0
@@ -18,6 +18,120 @@ import warnings
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
19
19
|
|
20
20
|
|
21
|
+
class ChangeMigratingTopicToNextStageRequest(AbstractModel):
|
22
|
+
"""ChangeMigratingTopicToNextStage请求参数结构体
|
23
|
+
|
24
|
+
"""
|
25
|
+
|
26
|
+
def __init__(self):
|
27
|
+
r"""
|
28
|
+
:param _TaskId: 任务ID
|
29
|
+
:type TaskId: str
|
30
|
+
:param _TopicNameList: 主题名称列表
|
31
|
+
:type TopicNameList: list of str
|
32
|
+
:param _NamespaceList: 命名空间列表,仅4.x集群有效,与TopicNameList一一对应
|
33
|
+
:type NamespaceList: list of str
|
34
|
+
"""
|
35
|
+
self._TaskId = None
|
36
|
+
self._TopicNameList = None
|
37
|
+
self._NamespaceList = None
|
38
|
+
|
39
|
+
@property
|
40
|
+
def TaskId(self):
|
41
|
+
"""任务ID
|
42
|
+
:rtype: str
|
43
|
+
"""
|
44
|
+
return self._TaskId
|
45
|
+
|
46
|
+
@TaskId.setter
|
47
|
+
def TaskId(self, TaskId):
|
48
|
+
self._TaskId = TaskId
|
49
|
+
|
50
|
+
@property
|
51
|
+
def TopicNameList(self):
|
52
|
+
"""主题名称列表
|
53
|
+
:rtype: list of str
|
54
|
+
"""
|
55
|
+
return self._TopicNameList
|
56
|
+
|
57
|
+
@TopicNameList.setter
|
58
|
+
def TopicNameList(self, TopicNameList):
|
59
|
+
self._TopicNameList = TopicNameList
|
60
|
+
|
61
|
+
@property
|
62
|
+
def NamespaceList(self):
|
63
|
+
"""命名空间列表,仅4.x集群有效,与TopicNameList一一对应
|
64
|
+
:rtype: list of str
|
65
|
+
"""
|
66
|
+
return self._NamespaceList
|
67
|
+
|
68
|
+
@NamespaceList.setter
|
69
|
+
def NamespaceList(self, NamespaceList):
|
70
|
+
self._NamespaceList = NamespaceList
|
71
|
+
|
72
|
+
|
73
|
+
def _deserialize(self, params):
|
74
|
+
self._TaskId = params.get("TaskId")
|
75
|
+
self._TopicNameList = params.get("TopicNameList")
|
76
|
+
self._NamespaceList = params.get("NamespaceList")
|
77
|
+
memeber_set = set(params.keys())
|
78
|
+
for name, value in vars(self).items():
|
79
|
+
property_name = name[1:]
|
80
|
+
if property_name in memeber_set:
|
81
|
+
memeber_set.remove(property_name)
|
82
|
+
if len(memeber_set) > 0:
|
83
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
class ChangeMigratingTopicToNextStageResponse(AbstractModel):
|
88
|
+
"""ChangeMigratingTopicToNextStage返回参数结构体
|
89
|
+
|
90
|
+
"""
|
91
|
+
|
92
|
+
def __init__(self):
|
93
|
+
r"""
|
94
|
+
:param _Results: 迁移主题状态修改的结果列表
|
95
|
+
:type Results: list of TopicStageChangeResult
|
96
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
97
|
+
:type RequestId: str
|
98
|
+
"""
|
99
|
+
self._Results = None
|
100
|
+
self._RequestId = None
|
101
|
+
|
102
|
+
@property
|
103
|
+
def Results(self):
|
104
|
+
"""迁移主题状态修改的结果列表
|
105
|
+
:rtype: list of TopicStageChangeResult
|
106
|
+
"""
|
107
|
+
return self._Results
|
108
|
+
|
109
|
+
@Results.setter
|
110
|
+
def Results(self, Results):
|
111
|
+
self._Results = Results
|
112
|
+
|
113
|
+
@property
|
114
|
+
def RequestId(self):
|
115
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
116
|
+
:rtype: str
|
117
|
+
"""
|
118
|
+
return self._RequestId
|
119
|
+
|
120
|
+
@RequestId.setter
|
121
|
+
def RequestId(self, RequestId):
|
122
|
+
self._RequestId = RequestId
|
123
|
+
|
124
|
+
|
125
|
+
def _deserialize(self, params):
|
126
|
+
if params.get("Results") is not None:
|
127
|
+
self._Results = []
|
128
|
+
for item in params.get("Results"):
|
129
|
+
obj = TopicStageChangeResult()
|
130
|
+
obj._deserialize(item)
|
131
|
+
self._Results.append(obj)
|
132
|
+
self._RequestId = params.get("RequestId")
|
133
|
+
|
134
|
+
|
21
135
|
class ConsumeGroupItem(AbstractModel):
|
22
136
|
"""消费组信息
|
23
137
|
|
@@ -217,12 +331,15 @@ class ConsumerClient(AbstractModel):
|
|
217
331
|
:param _ConsumerLag: 客户端消费堆积
|
218
332
|
注意:此字段可能返回 null,表示取不到有效值。
|
219
333
|
:type ConsumerLag: int
|
334
|
+
:param _ChannelProtocol: 消费者客户端类型(grpc;remoting;http)
|
335
|
+
:type ChannelProtocol: str
|
220
336
|
"""
|
221
337
|
self._ClientId = None
|
222
338
|
self._ClientAddr = None
|
223
339
|
self._Language = None
|
224
340
|
self._Version = None
|
225
341
|
self._ConsumerLag = None
|
342
|
+
self._ChannelProtocol = None
|
226
343
|
|
227
344
|
@property
|
228
345
|
def ClientId(self):
|
@@ -280,6 +397,17 @@ class ConsumerClient(AbstractModel):
|
|
280
397
|
def ConsumerLag(self, ConsumerLag):
|
281
398
|
self._ConsumerLag = ConsumerLag
|
282
399
|
|
400
|
+
@property
|
401
|
+
def ChannelProtocol(self):
|
402
|
+
"""消费者客户端类型(grpc;remoting;http)
|
403
|
+
:rtype: str
|
404
|
+
"""
|
405
|
+
return self._ChannelProtocol
|
406
|
+
|
407
|
+
@ChannelProtocol.setter
|
408
|
+
def ChannelProtocol(self, ChannelProtocol):
|
409
|
+
self._ChannelProtocol = ChannelProtocol
|
410
|
+
|
283
411
|
|
284
412
|
def _deserialize(self, params):
|
285
413
|
self._ClientId = params.get("ClientId")
|
@@ -287,6 +415,7 @@ class ConsumerClient(AbstractModel):
|
|
287
415
|
self._Language = params.get("Language")
|
288
416
|
self._Version = params.get("Version")
|
289
417
|
self._ConsumerLag = params.get("ConsumerLag")
|
418
|
+
self._ChannelProtocol = params.get("ChannelProtocol")
|
290
419
|
memeber_set = set(params.keys())
|
291
420
|
for name, value in vars(self).items():
|
292
421
|
property_name = name[1:]
|
@@ -2327,6 +2456,70 @@ class DeleteRoleResponse(AbstractModel):
|
|
2327
2456
|
self._RequestId = params.get("RequestId")
|
2328
2457
|
|
2329
2458
|
|
2459
|
+
class DeleteSmoothMigrationTaskRequest(AbstractModel):
|
2460
|
+
"""DeleteSmoothMigrationTask请求参数结构体
|
2461
|
+
|
2462
|
+
"""
|
2463
|
+
|
2464
|
+
def __init__(self):
|
2465
|
+
r"""
|
2466
|
+
:param _TaskId: 任务ID
|
2467
|
+
:type TaskId: str
|
2468
|
+
"""
|
2469
|
+
self._TaskId = None
|
2470
|
+
|
2471
|
+
@property
|
2472
|
+
def TaskId(self):
|
2473
|
+
"""任务ID
|
2474
|
+
:rtype: str
|
2475
|
+
"""
|
2476
|
+
return self._TaskId
|
2477
|
+
|
2478
|
+
@TaskId.setter
|
2479
|
+
def TaskId(self, TaskId):
|
2480
|
+
self._TaskId = TaskId
|
2481
|
+
|
2482
|
+
|
2483
|
+
def _deserialize(self, params):
|
2484
|
+
self._TaskId = params.get("TaskId")
|
2485
|
+
memeber_set = set(params.keys())
|
2486
|
+
for name, value in vars(self).items():
|
2487
|
+
property_name = name[1:]
|
2488
|
+
if property_name in memeber_set:
|
2489
|
+
memeber_set.remove(property_name)
|
2490
|
+
if len(memeber_set) > 0:
|
2491
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2492
|
+
|
2493
|
+
|
2494
|
+
|
2495
|
+
class DeleteSmoothMigrationTaskResponse(AbstractModel):
|
2496
|
+
"""DeleteSmoothMigrationTask返回参数结构体
|
2497
|
+
|
2498
|
+
"""
|
2499
|
+
|
2500
|
+
def __init__(self):
|
2501
|
+
r"""
|
2502
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2503
|
+
:type RequestId: str
|
2504
|
+
"""
|
2505
|
+
self._RequestId = None
|
2506
|
+
|
2507
|
+
@property
|
2508
|
+
def RequestId(self):
|
2509
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2510
|
+
:rtype: str
|
2511
|
+
"""
|
2512
|
+
return self._RequestId
|
2513
|
+
|
2514
|
+
@RequestId.setter
|
2515
|
+
def RequestId(self, RequestId):
|
2516
|
+
self._RequestId = RequestId
|
2517
|
+
|
2518
|
+
|
2519
|
+
def _deserialize(self, params):
|
2520
|
+
self._RequestId = params.get("RequestId")
|
2521
|
+
|
2522
|
+
|
2330
2523
|
class DeleteTopicRequest(AbstractModel):
|
2331
2524
|
"""DeleteTopic请求参数结构体
|
2332
2525
|
|
@@ -6673,39 +6866,139 @@ class DescribeMessageTraceResponse(AbstractModel):
|
|
6673
6866
|
self._RequestId = params.get("RequestId")
|
6674
6867
|
|
6675
6868
|
|
6676
|
-
class
|
6677
|
-
"""
|
6869
|
+
class DescribeMigratingGroupStatsRequest(AbstractModel):
|
6870
|
+
"""DescribeMigratingGroupStats请求参数结构体
|
6678
6871
|
|
6679
6872
|
"""
|
6680
6873
|
|
6874
|
+
def __init__(self):
|
6875
|
+
r"""
|
6876
|
+
:param _TaskId: 迁移任务ID
|
6877
|
+
:type TaskId: str
|
6878
|
+
:param _GroupName: 消费组名称
|
6879
|
+
:type GroupName: str
|
6880
|
+
:param _Namespace: 命名空间
|
6881
|
+
:type Namespace: str
|
6882
|
+
"""
|
6883
|
+
self._TaskId = None
|
6884
|
+
self._GroupName = None
|
6885
|
+
self._Namespace = None
|
6886
|
+
|
6887
|
+
@property
|
6888
|
+
def TaskId(self):
|
6889
|
+
"""迁移任务ID
|
6890
|
+
:rtype: str
|
6891
|
+
"""
|
6892
|
+
return self._TaskId
|
6681
6893
|
|
6682
|
-
|
6683
|
-
|
6894
|
+
@TaskId.setter
|
6895
|
+
def TaskId(self, TaskId):
|
6896
|
+
self._TaskId = TaskId
|
6897
|
+
|
6898
|
+
@property
|
6899
|
+
def GroupName(self):
|
6900
|
+
"""消费组名称
|
6901
|
+
:rtype: str
|
6902
|
+
"""
|
6903
|
+
return self._GroupName
|
6904
|
+
|
6905
|
+
@GroupName.setter
|
6906
|
+
def GroupName(self, GroupName):
|
6907
|
+
self._GroupName = GroupName
|
6908
|
+
|
6909
|
+
@property
|
6910
|
+
def Namespace(self):
|
6911
|
+
"""命名空间
|
6912
|
+
:rtype: str
|
6913
|
+
"""
|
6914
|
+
return self._Namespace
|
6915
|
+
|
6916
|
+
@Namespace.setter
|
6917
|
+
def Namespace(self, Namespace):
|
6918
|
+
self._Namespace = Namespace
|
6919
|
+
|
6920
|
+
|
6921
|
+
def _deserialize(self, params):
|
6922
|
+
self._TaskId = params.get("TaskId")
|
6923
|
+
self._GroupName = params.get("GroupName")
|
6924
|
+
self._Namespace = params.get("Namespace")
|
6925
|
+
memeber_set = set(params.keys())
|
6926
|
+
for name, value in vars(self).items():
|
6927
|
+
property_name = name[1:]
|
6928
|
+
if property_name in memeber_set:
|
6929
|
+
memeber_set.remove(property_name)
|
6930
|
+
if len(memeber_set) > 0:
|
6931
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6932
|
+
|
6933
|
+
|
6934
|
+
|
6935
|
+
class DescribeMigratingGroupStatsResponse(AbstractModel):
|
6936
|
+
"""DescribeMigratingGroupStats返回参数结构体
|
6684
6937
|
|
6685
6938
|
"""
|
6686
6939
|
|
6687
6940
|
def __init__(self):
|
6688
6941
|
r"""
|
6689
|
-
:param
|
6690
|
-
|
6691
|
-
:
|
6942
|
+
:param _SourceConsumeLag: 源集群消费组堆积
|
6943
|
+
:type SourceConsumeLag: int
|
6944
|
+
:param _TargetConsumeLag: 目标集群消费组堆积
|
6945
|
+
:type TargetConsumeLag: int
|
6946
|
+
:param _SourceConsumerClients: 源集群连接客户端列表
|
6947
|
+
:type SourceConsumerClients: list of ConsumerClient
|
6948
|
+
:param _TargetConsumerClients: 目标集群连接客户端列表
|
6949
|
+
:type TargetConsumerClients: list of ConsumerClient
|
6692
6950
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6693
6951
|
:type RequestId: str
|
6694
6952
|
"""
|
6695
|
-
self.
|
6953
|
+
self._SourceConsumeLag = None
|
6954
|
+
self._TargetConsumeLag = None
|
6955
|
+
self._SourceConsumerClients = None
|
6956
|
+
self._TargetConsumerClients = None
|
6696
6957
|
self._RequestId = None
|
6697
6958
|
|
6698
6959
|
@property
|
6699
|
-
def
|
6700
|
-
"""
|
6701
|
-
|
6702
|
-
:rtype: list of ProductSKU
|
6960
|
+
def SourceConsumeLag(self):
|
6961
|
+
"""源集群消费组堆积
|
6962
|
+
:rtype: int
|
6703
6963
|
"""
|
6704
|
-
return self.
|
6964
|
+
return self._SourceConsumeLag
|
6705
6965
|
|
6706
|
-
@
|
6707
|
-
def
|
6708
|
-
self.
|
6966
|
+
@SourceConsumeLag.setter
|
6967
|
+
def SourceConsumeLag(self, SourceConsumeLag):
|
6968
|
+
self._SourceConsumeLag = SourceConsumeLag
|
6969
|
+
|
6970
|
+
@property
|
6971
|
+
def TargetConsumeLag(self):
|
6972
|
+
"""目标集群消费组堆积
|
6973
|
+
:rtype: int
|
6974
|
+
"""
|
6975
|
+
return self._TargetConsumeLag
|
6976
|
+
|
6977
|
+
@TargetConsumeLag.setter
|
6978
|
+
def TargetConsumeLag(self, TargetConsumeLag):
|
6979
|
+
self._TargetConsumeLag = TargetConsumeLag
|
6980
|
+
|
6981
|
+
@property
|
6982
|
+
def SourceConsumerClients(self):
|
6983
|
+
"""源集群连接客户端列表
|
6984
|
+
:rtype: list of ConsumerClient
|
6985
|
+
"""
|
6986
|
+
return self._SourceConsumerClients
|
6987
|
+
|
6988
|
+
@SourceConsumerClients.setter
|
6989
|
+
def SourceConsumerClients(self, SourceConsumerClients):
|
6990
|
+
self._SourceConsumerClients = SourceConsumerClients
|
6991
|
+
|
6992
|
+
@property
|
6993
|
+
def TargetConsumerClients(self):
|
6994
|
+
"""目标集群连接客户端列表
|
6995
|
+
:rtype: list of ConsumerClient
|
6996
|
+
"""
|
6997
|
+
return self._TargetConsumerClients
|
6998
|
+
|
6999
|
+
@TargetConsumerClients.setter
|
7000
|
+
def TargetConsumerClients(self, TargetConsumerClients):
|
7001
|
+
self._TargetConsumerClients = TargetConsumerClients
|
6709
7002
|
|
6710
7003
|
@property
|
6711
7004
|
def RequestId(self):
|
@@ -6720,46 +7013,413 @@ class DescribeProductSKUsResponse(AbstractModel):
|
|
6720
7013
|
|
6721
7014
|
|
6722
7015
|
def _deserialize(self, params):
|
6723
|
-
|
6724
|
-
|
6725
|
-
|
6726
|
-
|
7016
|
+
self._SourceConsumeLag = params.get("SourceConsumeLag")
|
7017
|
+
self._TargetConsumeLag = params.get("TargetConsumeLag")
|
7018
|
+
if params.get("SourceConsumerClients") is not None:
|
7019
|
+
self._SourceConsumerClients = []
|
7020
|
+
for item in params.get("SourceConsumerClients"):
|
7021
|
+
obj = ConsumerClient()
|
6727
7022
|
obj._deserialize(item)
|
6728
|
-
self.
|
7023
|
+
self._SourceConsumerClients.append(obj)
|
7024
|
+
if params.get("TargetConsumerClients") is not None:
|
7025
|
+
self._TargetConsumerClients = []
|
7026
|
+
for item in params.get("TargetConsumerClients"):
|
7027
|
+
obj = ConsumerClient()
|
7028
|
+
obj._deserialize(item)
|
7029
|
+
self._TargetConsumerClients.append(obj)
|
6729
7030
|
self._RequestId = params.get("RequestId")
|
6730
7031
|
|
6731
7032
|
|
6732
|
-
class
|
6733
|
-
"""
|
7033
|
+
class DescribeMigratingTopicListRequest(AbstractModel):
|
7034
|
+
"""DescribeMigratingTopicList请求参数结构体
|
6734
7035
|
|
6735
7036
|
"""
|
6736
7037
|
|
6737
7038
|
def __init__(self):
|
6738
7039
|
r"""
|
6739
|
-
:param
|
6740
|
-
:type
|
7040
|
+
:param _TaskId: 任务ID
|
7041
|
+
:type TaskId: str
|
7042
|
+
:param _Filters: 查询条件列表
|
7043
|
+
:type Filters: list of Filter
|
6741
7044
|
:param _Offset: 查询起始位置
|
6742
7045
|
:type Offset: int
|
6743
7046
|
:param _Limit: 查询结果限制数量
|
6744
7047
|
:type Limit: int
|
6745
|
-
:param _Filters: 查询条件列表
|
6746
|
-
:type Filters: list of Filter
|
6747
7048
|
"""
|
6748
|
-
self.
|
7049
|
+
self._TaskId = None
|
7050
|
+
self._Filters = None
|
6749
7051
|
self._Offset = None
|
6750
7052
|
self._Limit = None
|
6751
|
-
self._Filters = None
|
6752
7053
|
|
6753
7054
|
@property
|
6754
|
-
def
|
6755
|
-
"""
|
7055
|
+
def TaskId(self):
|
7056
|
+
"""任务ID
|
6756
7057
|
:rtype: str
|
6757
7058
|
"""
|
6758
|
-
return self.
|
6759
|
-
|
6760
|
-
@
|
6761
|
-
def
|
6762
|
-
self.
|
7059
|
+
return self._TaskId
|
7060
|
+
|
7061
|
+
@TaskId.setter
|
7062
|
+
def TaskId(self, TaskId):
|
7063
|
+
self._TaskId = TaskId
|
7064
|
+
|
7065
|
+
@property
|
7066
|
+
def Filters(self):
|
7067
|
+
"""查询条件列表
|
7068
|
+
:rtype: list of Filter
|
7069
|
+
"""
|
7070
|
+
return self._Filters
|
7071
|
+
|
7072
|
+
@Filters.setter
|
7073
|
+
def Filters(self, Filters):
|
7074
|
+
self._Filters = Filters
|
7075
|
+
|
7076
|
+
@property
|
7077
|
+
def Offset(self):
|
7078
|
+
"""查询起始位置
|
7079
|
+
:rtype: int
|
7080
|
+
"""
|
7081
|
+
return self._Offset
|
7082
|
+
|
7083
|
+
@Offset.setter
|
7084
|
+
def Offset(self, Offset):
|
7085
|
+
self._Offset = Offset
|
7086
|
+
|
7087
|
+
@property
|
7088
|
+
def Limit(self):
|
7089
|
+
"""查询结果限制数量
|
7090
|
+
:rtype: int
|
7091
|
+
"""
|
7092
|
+
return self._Limit
|
7093
|
+
|
7094
|
+
@Limit.setter
|
7095
|
+
def Limit(self, Limit):
|
7096
|
+
self._Limit = Limit
|
7097
|
+
|
7098
|
+
|
7099
|
+
def _deserialize(self, params):
|
7100
|
+
self._TaskId = params.get("TaskId")
|
7101
|
+
if params.get("Filters") is not None:
|
7102
|
+
self._Filters = []
|
7103
|
+
for item in params.get("Filters"):
|
7104
|
+
obj = Filter()
|
7105
|
+
obj._deserialize(item)
|
7106
|
+
self._Filters.append(obj)
|
7107
|
+
self._Offset = params.get("Offset")
|
7108
|
+
self._Limit = params.get("Limit")
|
7109
|
+
memeber_set = set(params.keys())
|
7110
|
+
for name, value in vars(self).items():
|
7111
|
+
property_name = name[1:]
|
7112
|
+
if property_name in memeber_set:
|
7113
|
+
memeber_set.remove(property_name)
|
7114
|
+
if len(memeber_set) > 0:
|
7115
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7116
|
+
|
7117
|
+
|
7118
|
+
|
7119
|
+
class DescribeMigratingTopicListResponse(AbstractModel):
|
7120
|
+
"""DescribeMigratingTopicList返回参数结构体
|
7121
|
+
|
7122
|
+
"""
|
7123
|
+
|
7124
|
+
def __init__(self):
|
7125
|
+
r"""
|
7126
|
+
:param _TotalCount: 查询总数
|
7127
|
+
:type TotalCount: int
|
7128
|
+
:param _MigrateTopics: 主题列表
|
7129
|
+
:type MigrateTopics: list of MigratingTopic
|
7130
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7131
|
+
:type RequestId: str
|
7132
|
+
"""
|
7133
|
+
self._TotalCount = None
|
7134
|
+
self._MigrateTopics = None
|
7135
|
+
self._RequestId = None
|
7136
|
+
|
7137
|
+
@property
|
7138
|
+
def TotalCount(self):
|
7139
|
+
"""查询总数
|
7140
|
+
:rtype: int
|
7141
|
+
"""
|
7142
|
+
return self._TotalCount
|
7143
|
+
|
7144
|
+
@TotalCount.setter
|
7145
|
+
def TotalCount(self, TotalCount):
|
7146
|
+
self._TotalCount = TotalCount
|
7147
|
+
|
7148
|
+
@property
|
7149
|
+
def MigrateTopics(self):
|
7150
|
+
"""主题列表
|
7151
|
+
:rtype: list of MigratingTopic
|
7152
|
+
"""
|
7153
|
+
return self._MigrateTopics
|
7154
|
+
|
7155
|
+
@MigrateTopics.setter
|
7156
|
+
def MigrateTopics(self, MigrateTopics):
|
7157
|
+
self._MigrateTopics = MigrateTopics
|
7158
|
+
|
7159
|
+
@property
|
7160
|
+
def RequestId(self):
|
7161
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7162
|
+
:rtype: str
|
7163
|
+
"""
|
7164
|
+
return self._RequestId
|
7165
|
+
|
7166
|
+
@RequestId.setter
|
7167
|
+
def RequestId(self, RequestId):
|
7168
|
+
self._RequestId = RequestId
|
7169
|
+
|
7170
|
+
|
7171
|
+
def _deserialize(self, params):
|
7172
|
+
self._TotalCount = params.get("TotalCount")
|
7173
|
+
if params.get("MigrateTopics") is not None:
|
7174
|
+
self._MigrateTopics = []
|
7175
|
+
for item in params.get("MigrateTopics"):
|
7176
|
+
obj = MigratingTopic()
|
7177
|
+
obj._deserialize(item)
|
7178
|
+
self._MigrateTopics.append(obj)
|
7179
|
+
self._RequestId = params.get("RequestId")
|
7180
|
+
|
7181
|
+
|
7182
|
+
class DescribeMigratingTopicStatsRequest(AbstractModel):
|
7183
|
+
"""DescribeMigratingTopicStats请求参数结构体
|
7184
|
+
|
7185
|
+
"""
|
7186
|
+
|
7187
|
+
def __init__(self):
|
7188
|
+
r"""
|
7189
|
+
:param _TaskId: 任务ID
|
7190
|
+
:type TaskId: str
|
7191
|
+
:param _TopicName: 主题名称
|
7192
|
+
:type TopicName: str
|
7193
|
+
:param _Namespace: 命名空间,仅4.x集群有效
|
7194
|
+
:type Namespace: str
|
7195
|
+
"""
|
7196
|
+
self._TaskId = None
|
7197
|
+
self._TopicName = None
|
7198
|
+
self._Namespace = None
|
7199
|
+
|
7200
|
+
@property
|
7201
|
+
def TaskId(self):
|
7202
|
+
"""任务ID
|
7203
|
+
:rtype: str
|
7204
|
+
"""
|
7205
|
+
return self._TaskId
|
7206
|
+
|
7207
|
+
@TaskId.setter
|
7208
|
+
def TaskId(self, TaskId):
|
7209
|
+
self._TaskId = TaskId
|
7210
|
+
|
7211
|
+
@property
|
7212
|
+
def TopicName(self):
|
7213
|
+
"""主题名称
|
7214
|
+
:rtype: str
|
7215
|
+
"""
|
7216
|
+
return self._TopicName
|
7217
|
+
|
7218
|
+
@TopicName.setter
|
7219
|
+
def TopicName(self, TopicName):
|
7220
|
+
self._TopicName = TopicName
|
7221
|
+
|
7222
|
+
@property
|
7223
|
+
def Namespace(self):
|
7224
|
+
"""命名空间,仅4.x集群有效
|
7225
|
+
:rtype: str
|
7226
|
+
"""
|
7227
|
+
return self._Namespace
|
7228
|
+
|
7229
|
+
@Namespace.setter
|
7230
|
+
def Namespace(self, Namespace):
|
7231
|
+
self._Namespace = Namespace
|
7232
|
+
|
7233
|
+
|
7234
|
+
def _deserialize(self, params):
|
7235
|
+
self._TaskId = params.get("TaskId")
|
7236
|
+
self._TopicName = params.get("TopicName")
|
7237
|
+
self._Namespace = params.get("Namespace")
|
7238
|
+
memeber_set = set(params.keys())
|
7239
|
+
for name, value in vars(self).items():
|
7240
|
+
property_name = name[1:]
|
7241
|
+
if property_name in memeber_set:
|
7242
|
+
memeber_set.remove(property_name)
|
7243
|
+
if len(memeber_set) > 0:
|
7244
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7245
|
+
|
7246
|
+
|
7247
|
+
|
7248
|
+
class DescribeMigratingTopicStatsResponse(AbstractModel):
|
7249
|
+
"""DescribeMigratingTopicStats返回参数结构体
|
7250
|
+
|
7251
|
+
"""
|
7252
|
+
|
7253
|
+
def __init__(self):
|
7254
|
+
r"""
|
7255
|
+
:param _SourceClusterConsumerCount: 源集群的消费者数量
|
7256
|
+
:type SourceClusterConsumerCount: int
|
7257
|
+
:param _TargetClusterConsumerCount: 目标集群的消费者数量
|
7258
|
+
:type TargetClusterConsumerCount: int
|
7259
|
+
:param _SourceClusterConsumerGroups: 源集群消费组列表
|
7260
|
+
:type SourceClusterConsumerGroups: list of str
|
7261
|
+
:param _TargetClusterConsumerGroups: 目标集群消费组列表
|
7262
|
+
:type TargetClusterConsumerGroups: list of str
|
7263
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7264
|
+
:type RequestId: str
|
7265
|
+
"""
|
7266
|
+
self._SourceClusterConsumerCount = None
|
7267
|
+
self._TargetClusterConsumerCount = None
|
7268
|
+
self._SourceClusterConsumerGroups = None
|
7269
|
+
self._TargetClusterConsumerGroups = None
|
7270
|
+
self._RequestId = None
|
7271
|
+
|
7272
|
+
@property
|
7273
|
+
def SourceClusterConsumerCount(self):
|
7274
|
+
"""源集群的消费者数量
|
7275
|
+
:rtype: int
|
7276
|
+
"""
|
7277
|
+
return self._SourceClusterConsumerCount
|
7278
|
+
|
7279
|
+
@SourceClusterConsumerCount.setter
|
7280
|
+
def SourceClusterConsumerCount(self, SourceClusterConsumerCount):
|
7281
|
+
self._SourceClusterConsumerCount = SourceClusterConsumerCount
|
7282
|
+
|
7283
|
+
@property
|
7284
|
+
def TargetClusterConsumerCount(self):
|
7285
|
+
"""目标集群的消费者数量
|
7286
|
+
:rtype: int
|
7287
|
+
"""
|
7288
|
+
return self._TargetClusterConsumerCount
|
7289
|
+
|
7290
|
+
@TargetClusterConsumerCount.setter
|
7291
|
+
def TargetClusterConsumerCount(self, TargetClusterConsumerCount):
|
7292
|
+
self._TargetClusterConsumerCount = TargetClusterConsumerCount
|
7293
|
+
|
7294
|
+
@property
|
7295
|
+
def SourceClusterConsumerGroups(self):
|
7296
|
+
"""源集群消费组列表
|
7297
|
+
:rtype: list of str
|
7298
|
+
"""
|
7299
|
+
return self._SourceClusterConsumerGroups
|
7300
|
+
|
7301
|
+
@SourceClusterConsumerGroups.setter
|
7302
|
+
def SourceClusterConsumerGroups(self, SourceClusterConsumerGroups):
|
7303
|
+
self._SourceClusterConsumerGroups = SourceClusterConsumerGroups
|
7304
|
+
|
7305
|
+
@property
|
7306
|
+
def TargetClusterConsumerGroups(self):
|
7307
|
+
"""目标集群消费组列表
|
7308
|
+
:rtype: list of str
|
7309
|
+
"""
|
7310
|
+
return self._TargetClusterConsumerGroups
|
7311
|
+
|
7312
|
+
@TargetClusterConsumerGroups.setter
|
7313
|
+
def TargetClusterConsumerGroups(self, TargetClusterConsumerGroups):
|
7314
|
+
self._TargetClusterConsumerGroups = TargetClusterConsumerGroups
|
7315
|
+
|
7316
|
+
@property
|
7317
|
+
def RequestId(self):
|
7318
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7319
|
+
:rtype: str
|
7320
|
+
"""
|
7321
|
+
return self._RequestId
|
7322
|
+
|
7323
|
+
@RequestId.setter
|
7324
|
+
def RequestId(self, RequestId):
|
7325
|
+
self._RequestId = RequestId
|
7326
|
+
|
7327
|
+
|
7328
|
+
def _deserialize(self, params):
|
7329
|
+
self._SourceClusterConsumerCount = params.get("SourceClusterConsumerCount")
|
7330
|
+
self._TargetClusterConsumerCount = params.get("TargetClusterConsumerCount")
|
7331
|
+
self._SourceClusterConsumerGroups = params.get("SourceClusterConsumerGroups")
|
7332
|
+
self._TargetClusterConsumerGroups = params.get("TargetClusterConsumerGroups")
|
7333
|
+
self._RequestId = params.get("RequestId")
|
7334
|
+
|
7335
|
+
|
7336
|
+
class DescribeProductSKUsRequest(AbstractModel):
|
7337
|
+
"""DescribeProductSKUs请求参数结构体
|
7338
|
+
|
7339
|
+
"""
|
7340
|
+
|
7341
|
+
|
7342
|
+
class DescribeProductSKUsResponse(AbstractModel):
|
7343
|
+
"""DescribeProductSKUs返回参数结构体
|
7344
|
+
|
7345
|
+
"""
|
7346
|
+
|
7347
|
+
def __init__(self):
|
7348
|
+
r"""
|
7349
|
+
:param _Data: 商品配置信息
|
7350
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7351
|
+
:type Data: list of ProductSKU
|
7352
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7353
|
+
:type RequestId: str
|
7354
|
+
"""
|
7355
|
+
self._Data = None
|
7356
|
+
self._RequestId = None
|
7357
|
+
|
7358
|
+
@property
|
7359
|
+
def Data(self):
|
7360
|
+
"""商品配置信息
|
7361
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7362
|
+
:rtype: list of ProductSKU
|
7363
|
+
"""
|
7364
|
+
return self._Data
|
7365
|
+
|
7366
|
+
@Data.setter
|
7367
|
+
def Data(self, Data):
|
7368
|
+
self._Data = Data
|
7369
|
+
|
7370
|
+
@property
|
7371
|
+
def RequestId(self):
|
7372
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7373
|
+
:rtype: str
|
7374
|
+
"""
|
7375
|
+
return self._RequestId
|
7376
|
+
|
7377
|
+
@RequestId.setter
|
7378
|
+
def RequestId(self, RequestId):
|
7379
|
+
self._RequestId = RequestId
|
7380
|
+
|
7381
|
+
|
7382
|
+
def _deserialize(self, params):
|
7383
|
+
if params.get("Data") is not None:
|
7384
|
+
self._Data = []
|
7385
|
+
for item in params.get("Data"):
|
7386
|
+
obj = ProductSKU()
|
7387
|
+
obj._deserialize(item)
|
7388
|
+
self._Data.append(obj)
|
7389
|
+
self._RequestId = params.get("RequestId")
|
7390
|
+
|
7391
|
+
|
7392
|
+
class DescribeRoleListRequest(AbstractModel):
|
7393
|
+
"""DescribeRoleList请求参数结构体
|
7394
|
+
|
7395
|
+
"""
|
7396
|
+
|
7397
|
+
def __init__(self):
|
7398
|
+
r"""
|
7399
|
+
:param _InstanceId: 集群ID
|
7400
|
+
:type InstanceId: str
|
7401
|
+
:param _Offset: 查询起始位置
|
7402
|
+
:type Offset: int
|
7403
|
+
:param _Limit: 查询结果限制数量
|
7404
|
+
:type Limit: int
|
7405
|
+
:param _Filters: 查询条件列表
|
7406
|
+
:type Filters: list of Filter
|
7407
|
+
"""
|
7408
|
+
self._InstanceId = None
|
7409
|
+
self._Offset = None
|
7410
|
+
self._Limit = None
|
7411
|
+
self._Filters = None
|
7412
|
+
|
7413
|
+
@property
|
7414
|
+
def InstanceId(self):
|
7415
|
+
"""集群ID
|
7416
|
+
:rtype: str
|
7417
|
+
"""
|
7418
|
+
return self._InstanceId
|
7419
|
+
|
7420
|
+
@InstanceId.setter
|
7421
|
+
def InstanceId(self, InstanceId):
|
7422
|
+
self._InstanceId = InstanceId
|
6763
7423
|
|
6764
7424
|
@property
|
6765
7425
|
def Offset(self):
|
@@ -6831,13 +7491,162 @@ class DescribeRoleListResponse(AbstractModel):
|
|
6831
7491
|
:type RequestId: str
|
6832
7492
|
"""
|
6833
7493
|
self._TotalCount = None
|
6834
|
-
self._Data = None
|
7494
|
+
self._Data = None
|
7495
|
+
self._RequestId = None
|
7496
|
+
|
7497
|
+
@property
|
7498
|
+
def TotalCount(self):
|
7499
|
+
"""查询总数
|
7500
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7501
|
+
:rtype: int
|
7502
|
+
"""
|
7503
|
+
return self._TotalCount
|
7504
|
+
|
7505
|
+
@TotalCount.setter
|
7506
|
+
def TotalCount(self, TotalCount):
|
7507
|
+
self._TotalCount = TotalCount
|
7508
|
+
|
7509
|
+
@property
|
7510
|
+
def Data(self):
|
7511
|
+
"""角色信息列表
|
7512
|
+
:rtype: list of RoleItem
|
7513
|
+
"""
|
7514
|
+
return self._Data
|
7515
|
+
|
7516
|
+
@Data.setter
|
7517
|
+
def Data(self, Data):
|
7518
|
+
self._Data = Data
|
7519
|
+
|
7520
|
+
@property
|
7521
|
+
def RequestId(self):
|
7522
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7523
|
+
:rtype: str
|
7524
|
+
"""
|
7525
|
+
return self._RequestId
|
7526
|
+
|
7527
|
+
@RequestId.setter
|
7528
|
+
def RequestId(self, RequestId):
|
7529
|
+
self._RequestId = RequestId
|
7530
|
+
|
7531
|
+
|
7532
|
+
def _deserialize(self, params):
|
7533
|
+
self._TotalCount = params.get("TotalCount")
|
7534
|
+
if params.get("Data") is not None:
|
7535
|
+
self._Data = []
|
7536
|
+
for item in params.get("Data"):
|
7537
|
+
obj = RoleItem()
|
7538
|
+
obj._deserialize(item)
|
7539
|
+
self._Data.append(obj)
|
7540
|
+
self._RequestId = params.get("RequestId")
|
7541
|
+
|
7542
|
+
|
7543
|
+
class DescribeSourceClusterGroupListRequest(AbstractModel):
|
7544
|
+
"""DescribeSourceClusterGroupList请求参数结构体
|
7545
|
+
|
7546
|
+
"""
|
7547
|
+
|
7548
|
+
def __init__(self):
|
7549
|
+
r"""
|
7550
|
+
:param _TaskId: 任务ID
|
7551
|
+
:type TaskId: str
|
7552
|
+
:param _Filters: 查询条件列表
|
7553
|
+
:type Filters: list of Filter
|
7554
|
+
:param _Offset: 查询起始位置
|
7555
|
+
:type Offset: int
|
7556
|
+
:param _Limit: 查询结果限制数量
|
7557
|
+
:type Limit: int
|
7558
|
+
"""
|
7559
|
+
self._TaskId = None
|
7560
|
+
self._Filters = None
|
7561
|
+
self._Offset = None
|
7562
|
+
self._Limit = None
|
7563
|
+
|
7564
|
+
@property
|
7565
|
+
def TaskId(self):
|
7566
|
+
"""任务ID
|
7567
|
+
:rtype: str
|
7568
|
+
"""
|
7569
|
+
return self._TaskId
|
7570
|
+
|
7571
|
+
@TaskId.setter
|
7572
|
+
def TaskId(self, TaskId):
|
7573
|
+
self._TaskId = TaskId
|
7574
|
+
|
7575
|
+
@property
|
7576
|
+
def Filters(self):
|
7577
|
+
"""查询条件列表
|
7578
|
+
:rtype: list of Filter
|
7579
|
+
"""
|
7580
|
+
return self._Filters
|
7581
|
+
|
7582
|
+
@Filters.setter
|
7583
|
+
def Filters(self, Filters):
|
7584
|
+
self._Filters = Filters
|
7585
|
+
|
7586
|
+
@property
|
7587
|
+
def Offset(self):
|
7588
|
+
"""查询起始位置
|
7589
|
+
:rtype: int
|
7590
|
+
"""
|
7591
|
+
return self._Offset
|
7592
|
+
|
7593
|
+
@Offset.setter
|
7594
|
+
def Offset(self, Offset):
|
7595
|
+
self._Offset = Offset
|
7596
|
+
|
7597
|
+
@property
|
7598
|
+
def Limit(self):
|
7599
|
+
"""查询结果限制数量
|
7600
|
+
:rtype: int
|
7601
|
+
"""
|
7602
|
+
return self._Limit
|
7603
|
+
|
7604
|
+
@Limit.setter
|
7605
|
+
def Limit(self, Limit):
|
7606
|
+
self._Limit = Limit
|
7607
|
+
|
7608
|
+
|
7609
|
+
def _deserialize(self, params):
|
7610
|
+
self._TaskId = params.get("TaskId")
|
7611
|
+
if params.get("Filters") is not None:
|
7612
|
+
self._Filters = []
|
7613
|
+
for item in params.get("Filters"):
|
7614
|
+
obj = Filter()
|
7615
|
+
obj._deserialize(item)
|
7616
|
+
self._Filters.append(obj)
|
7617
|
+
self._Offset = params.get("Offset")
|
7618
|
+
self._Limit = params.get("Limit")
|
7619
|
+
memeber_set = set(params.keys())
|
7620
|
+
for name, value in vars(self).items():
|
7621
|
+
property_name = name[1:]
|
7622
|
+
if property_name in memeber_set:
|
7623
|
+
memeber_set.remove(property_name)
|
7624
|
+
if len(memeber_set) > 0:
|
7625
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7626
|
+
|
7627
|
+
|
7628
|
+
|
7629
|
+
class DescribeSourceClusterGroupListResponse(AbstractModel):
|
7630
|
+
"""DescribeSourceClusterGroupList返回参数结构体
|
7631
|
+
|
7632
|
+
"""
|
7633
|
+
|
7634
|
+
def __init__(self):
|
7635
|
+
r"""
|
7636
|
+
:param _TotalCount: 查询总数
|
7637
|
+
:type TotalCount: int
|
7638
|
+
:param _Groups: 消费组配置列表
|
7639
|
+
:type Groups: list of SourceClusterGroupConfig
|
7640
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7641
|
+
:type RequestId: str
|
7642
|
+
"""
|
7643
|
+
self._TotalCount = None
|
7644
|
+
self._Groups = None
|
6835
7645
|
self._RequestId = None
|
6836
7646
|
|
6837
7647
|
@property
|
6838
7648
|
def TotalCount(self):
|
6839
7649
|
"""查询总数
|
6840
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6841
7650
|
:rtype: int
|
6842
7651
|
"""
|
6843
7652
|
return self._TotalCount
|
@@ -6847,15 +7656,15 @@ class DescribeRoleListResponse(AbstractModel):
|
|
6847
7656
|
self._TotalCount = TotalCount
|
6848
7657
|
|
6849
7658
|
@property
|
6850
|
-
def
|
6851
|
-
"""
|
6852
|
-
:rtype: list of
|
7659
|
+
def Groups(self):
|
7660
|
+
"""消费组配置列表
|
7661
|
+
:rtype: list of SourceClusterGroupConfig
|
6853
7662
|
"""
|
6854
|
-
return self.
|
7663
|
+
return self._Groups
|
6855
7664
|
|
6856
|
-
@
|
6857
|
-
def
|
6858
|
-
self.
|
7665
|
+
@Groups.setter
|
7666
|
+
def Groups(self, Groups):
|
7667
|
+
self._Groups = Groups
|
6859
7668
|
|
6860
7669
|
@property
|
6861
7670
|
def RequestId(self):
|
@@ -6871,12 +7680,12 @@ class DescribeRoleListResponse(AbstractModel):
|
|
6871
7680
|
|
6872
7681
|
def _deserialize(self, params):
|
6873
7682
|
self._TotalCount = params.get("TotalCount")
|
6874
|
-
if params.get("
|
6875
|
-
self.
|
6876
|
-
for item in params.get("
|
6877
|
-
obj =
|
7683
|
+
if params.get("Groups") is not None:
|
7684
|
+
self._Groups = []
|
7685
|
+
for item in params.get("Groups"):
|
7686
|
+
obj = SourceClusterGroupConfig()
|
6878
7687
|
obj._deserialize(item)
|
6879
|
-
self.
|
7688
|
+
self._Groups.append(obj)
|
6880
7689
|
self._RequestId = params.get("RequestId")
|
6881
7690
|
|
6882
7691
|
|
@@ -7570,6 +8379,166 @@ class DetailedRolePerm(AbstractModel):
|
|
7570
8379
|
|
7571
8380
|
|
7572
8381
|
|
8382
|
+
class DoHealthCheckOnMigratingTopicRequest(AbstractModel):
|
8383
|
+
"""DoHealthCheckOnMigratingTopic请求参数结构体
|
8384
|
+
|
8385
|
+
"""
|
8386
|
+
|
8387
|
+
def __init__(self):
|
8388
|
+
r"""
|
8389
|
+
:param _TaskId: 任务ID
|
8390
|
+
:type TaskId: str
|
8391
|
+
:param _TopicName: 主题名称
|
8392
|
+
:type TopicName: str
|
8393
|
+
:param _IgnoreCheck: 是否忽略当前检查
|
8394
|
+
:type IgnoreCheck: bool
|
8395
|
+
:param _Namespace: 命名空间,仅4.x集群有效
|
8396
|
+
:type Namespace: str
|
8397
|
+
"""
|
8398
|
+
self._TaskId = None
|
8399
|
+
self._TopicName = None
|
8400
|
+
self._IgnoreCheck = None
|
8401
|
+
self._Namespace = None
|
8402
|
+
|
8403
|
+
@property
|
8404
|
+
def TaskId(self):
|
8405
|
+
"""任务ID
|
8406
|
+
:rtype: str
|
8407
|
+
"""
|
8408
|
+
return self._TaskId
|
8409
|
+
|
8410
|
+
@TaskId.setter
|
8411
|
+
def TaskId(self, TaskId):
|
8412
|
+
self._TaskId = TaskId
|
8413
|
+
|
8414
|
+
@property
|
8415
|
+
def TopicName(self):
|
8416
|
+
"""主题名称
|
8417
|
+
:rtype: str
|
8418
|
+
"""
|
8419
|
+
return self._TopicName
|
8420
|
+
|
8421
|
+
@TopicName.setter
|
8422
|
+
def TopicName(self, TopicName):
|
8423
|
+
self._TopicName = TopicName
|
8424
|
+
|
8425
|
+
@property
|
8426
|
+
def IgnoreCheck(self):
|
8427
|
+
"""是否忽略当前检查
|
8428
|
+
:rtype: bool
|
8429
|
+
"""
|
8430
|
+
return self._IgnoreCheck
|
8431
|
+
|
8432
|
+
@IgnoreCheck.setter
|
8433
|
+
def IgnoreCheck(self, IgnoreCheck):
|
8434
|
+
self._IgnoreCheck = IgnoreCheck
|
8435
|
+
|
8436
|
+
@property
|
8437
|
+
def Namespace(self):
|
8438
|
+
"""命名空间,仅4.x集群有效
|
8439
|
+
:rtype: str
|
8440
|
+
"""
|
8441
|
+
return self._Namespace
|
8442
|
+
|
8443
|
+
@Namespace.setter
|
8444
|
+
def Namespace(self, Namespace):
|
8445
|
+
self._Namespace = Namespace
|
8446
|
+
|
8447
|
+
|
8448
|
+
def _deserialize(self, params):
|
8449
|
+
self._TaskId = params.get("TaskId")
|
8450
|
+
self._TopicName = params.get("TopicName")
|
8451
|
+
self._IgnoreCheck = params.get("IgnoreCheck")
|
8452
|
+
self._Namespace = params.get("Namespace")
|
8453
|
+
memeber_set = set(params.keys())
|
8454
|
+
for name, value in vars(self).items():
|
8455
|
+
property_name = name[1:]
|
8456
|
+
if property_name in memeber_set:
|
8457
|
+
memeber_set.remove(property_name)
|
8458
|
+
if len(memeber_set) > 0:
|
8459
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
8460
|
+
|
8461
|
+
|
8462
|
+
|
8463
|
+
class DoHealthCheckOnMigratingTopicResponse(AbstractModel):
|
8464
|
+
"""DoHealthCheckOnMigratingTopic返回参数结构体
|
8465
|
+
|
8466
|
+
"""
|
8467
|
+
|
8468
|
+
def __init__(self):
|
8469
|
+
r"""
|
8470
|
+
:param _Passed: 是否通过
|
8471
|
+
:type Passed: bool
|
8472
|
+
:param _Reason: 健康检查返回的错误信息
|
8473
|
+
NotChecked 未执行检查, Unknown 未知错误, TopicNotImported 主题未导入, TopicNotExistsInSourceCluster 主题在源集群中不存在, TopicNotExistsInTargetCluster 主题在目标集群中不存在, ConsumerConnectedOnTarget 目标集群上存在消费者连接, SourceTopicHasNewMessagesIn5Minutes 源集群主题前5分钟内有新消息写入, TargetTopicHasNewMessagesIn5Minutes 目标集群主题前5分钟内有新消息写入, SourceTopicHasNoMessagesIn5Minutes 源集群前5分钟内没有新消息写入, TargetTopicHasNoMessagesIn5Minutes 源集群前5分钟内没有新消息写入, ConsumerGroupCountNotMatch 订阅组数量不一致, SourceTopicHasUnconsumedMessages 源集群主题存在未消费消息,
|
8474
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8475
|
+
:type Reason: str
|
8476
|
+
:param _ReasonList: 健康检查返回的错误信息列表
|
8477
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8478
|
+
:type ReasonList: list of str
|
8479
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8480
|
+
:type RequestId: str
|
8481
|
+
"""
|
8482
|
+
self._Passed = None
|
8483
|
+
self._Reason = None
|
8484
|
+
self._ReasonList = None
|
8485
|
+
self._RequestId = None
|
8486
|
+
|
8487
|
+
@property
|
8488
|
+
def Passed(self):
|
8489
|
+
"""是否通过
|
8490
|
+
:rtype: bool
|
8491
|
+
"""
|
8492
|
+
return self._Passed
|
8493
|
+
|
8494
|
+
@Passed.setter
|
8495
|
+
def Passed(self, Passed):
|
8496
|
+
self._Passed = Passed
|
8497
|
+
|
8498
|
+
@property
|
8499
|
+
def Reason(self):
|
8500
|
+
"""健康检查返回的错误信息
|
8501
|
+
NotChecked 未执行检查, Unknown 未知错误, TopicNotImported 主题未导入, TopicNotExistsInSourceCluster 主题在源集群中不存在, TopicNotExistsInTargetCluster 主题在目标集群中不存在, ConsumerConnectedOnTarget 目标集群上存在消费者连接, SourceTopicHasNewMessagesIn5Minutes 源集群主题前5分钟内有新消息写入, TargetTopicHasNewMessagesIn5Minutes 目标集群主题前5分钟内有新消息写入, SourceTopicHasNoMessagesIn5Minutes 源集群前5分钟内没有新消息写入, TargetTopicHasNoMessagesIn5Minutes 源集群前5分钟内没有新消息写入, ConsumerGroupCountNotMatch 订阅组数量不一致, SourceTopicHasUnconsumedMessages 源集群主题存在未消费消息,
|
8502
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8503
|
+
:rtype: str
|
8504
|
+
"""
|
8505
|
+
return self._Reason
|
8506
|
+
|
8507
|
+
@Reason.setter
|
8508
|
+
def Reason(self, Reason):
|
8509
|
+
self._Reason = Reason
|
8510
|
+
|
8511
|
+
@property
|
8512
|
+
def ReasonList(self):
|
8513
|
+
"""健康检查返回的错误信息列表
|
8514
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8515
|
+
:rtype: list of str
|
8516
|
+
"""
|
8517
|
+
return self._ReasonList
|
8518
|
+
|
8519
|
+
@ReasonList.setter
|
8520
|
+
def ReasonList(self, ReasonList):
|
8521
|
+
self._ReasonList = ReasonList
|
8522
|
+
|
8523
|
+
@property
|
8524
|
+
def RequestId(self):
|
8525
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8526
|
+
:rtype: str
|
8527
|
+
"""
|
8528
|
+
return self._RequestId
|
8529
|
+
|
8530
|
+
@RequestId.setter
|
8531
|
+
def RequestId(self, RequestId):
|
8532
|
+
self._RequestId = RequestId
|
8533
|
+
|
8534
|
+
|
8535
|
+
def _deserialize(self, params):
|
8536
|
+
self._Passed = params.get("Passed")
|
8537
|
+
self._Reason = params.get("Reason")
|
8538
|
+
self._ReasonList = params.get("ReasonList")
|
8539
|
+
self._RequestId = params.get("RequestId")
|
8540
|
+
|
8541
|
+
|
7573
8542
|
class Endpoint(AbstractModel):
|
7574
8543
|
"""接入点信息
|
7575
8544
|
|
@@ -10220,30 +11189,192 @@ class MessageTrackItem(AbstractModel):
|
|
10220
11189
|
"""track类型
|
10221
11190
|
:rtype: str
|
10222
11191
|
"""
|
10223
|
-
return self._TrackType
|
11192
|
+
return self._TrackType
|
11193
|
+
|
11194
|
+
@TrackType.setter
|
11195
|
+
def TrackType(self, TrackType):
|
11196
|
+
self._TrackType = TrackType
|
11197
|
+
|
11198
|
+
@property
|
11199
|
+
def ExceptionDesc(self):
|
11200
|
+
"""异常信息
|
11201
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11202
|
+
:rtype: str
|
11203
|
+
"""
|
11204
|
+
return self._ExceptionDesc
|
11205
|
+
|
11206
|
+
@ExceptionDesc.setter
|
11207
|
+
def ExceptionDesc(self, ExceptionDesc):
|
11208
|
+
self._ExceptionDesc = ExceptionDesc
|
11209
|
+
|
11210
|
+
|
11211
|
+
def _deserialize(self, params):
|
11212
|
+
self._ConsumerGroup = params.get("ConsumerGroup")
|
11213
|
+
self._ConsumeStatus = params.get("ConsumeStatus")
|
11214
|
+
self._TrackType = params.get("TrackType")
|
11215
|
+
self._ExceptionDesc = params.get("ExceptionDesc")
|
11216
|
+
memeber_set = set(params.keys())
|
11217
|
+
for name, value in vars(self).items():
|
11218
|
+
property_name = name[1:]
|
11219
|
+
if property_name in memeber_set:
|
11220
|
+
memeber_set.remove(property_name)
|
11221
|
+
if len(memeber_set) > 0:
|
11222
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
11223
|
+
|
11224
|
+
|
11225
|
+
|
11226
|
+
class MigratingTopic(AbstractModel):
|
11227
|
+
"""迁移中的主题
|
11228
|
+
|
11229
|
+
"""
|
11230
|
+
|
11231
|
+
def __init__(self):
|
11232
|
+
r"""
|
11233
|
+
:param _TopicName: 主题名称
|
11234
|
+
:type TopicName: str
|
11235
|
+
:param _MigrationStatus: 迁移状态 S_RW_D_NA 源集群读写 S_RW_D_R 源集群读写目标集群读 S_RW_D_RW 源集群读写目标集群读写 S_R_D_RW 源集群读目标集群读写 S_NA_D_RW 目标集群读写
|
11236
|
+
:type MigrationStatus: str
|
11237
|
+
:param _HealthCheckPassed: 是否完成健康检查
|
11238
|
+
:type HealthCheckPassed: bool
|
11239
|
+
:param _HealthCheckError: 上次健康检查返回的错误信息,仅在HealthCheckPassed为false时有效。 NotChecked 未执行检查, Unknown 未知错误, TopicNotImported 主题未导入, TopicNotExistsInSourceCluster 主题在源集群中不存在, TopicNotExistsInTargetCluster 主题在目标集群中不存在, ConsumerConnectedOnTarget 目标集群上存在消费者连接, SourceTopicHasNewMessagesIn5Minutes 源集群主题前5分钟内有新消息写入, TargetTopicHasNewMessagesIn5Minutes 目标集群主题前5分钟内有新消息写入, SourceTopicHasNoMessagesIn5Minutes 源集群前5分钟内没有新消息写入, TargetTopicHasNoMessagesIn5Minutes 源集群前5分钟内没有新消息写入, ConsumerGroupCountNotMatch 订阅组数量不一致, SourceTopicHasUnconsumedMessages 源集群主题存在未消费消息,
|
11240
|
+
:type HealthCheckError: str
|
11241
|
+
:param _Namespace: 命名空间,仅4.x集群有效
|
11242
|
+
:type Namespace: str
|
11243
|
+
:param _NamespaceV4: 4.x的命名空间
|
11244
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11245
|
+
:type NamespaceV4: str
|
11246
|
+
:param _TopicNameV4: 4.x的主题名称
|
11247
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11248
|
+
:type TopicNameV4: str
|
11249
|
+
:param _FullNamespaceV4: 4.x的完整命名空间
|
11250
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11251
|
+
:type FullNamespaceV4: str
|
11252
|
+
:param _HealthCheckErrorList: 上次健康检查返回的错误列表
|
11253
|
+
:type HealthCheckErrorList: list of str
|
11254
|
+
"""
|
11255
|
+
self._TopicName = None
|
11256
|
+
self._MigrationStatus = None
|
11257
|
+
self._HealthCheckPassed = None
|
11258
|
+
self._HealthCheckError = None
|
11259
|
+
self._Namespace = None
|
11260
|
+
self._NamespaceV4 = None
|
11261
|
+
self._TopicNameV4 = None
|
11262
|
+
self._FullNamespaceV4 = None
|
11263
|
+
self._HealthCheckErrorList = None
|
11264
|
+
|
11265
|
+
@property
|
11266
|
+
def TopicName(self):
|
11267
|
+
"""主题名称
|
11268
|
+
:rtype: str
|
11269
|
+
"""
|
11270
|
+
return self._TopicName
|
11271
|
+
|
11272
|
+
@TopicName.setter
|
11273
|
+
def TopicName(self, TopicName):
|
11274
|
+
self._TopicName = TopicName
|
11275
|
+
|
11276
|
+
@property
|
11277
|
+
def MigrationStatus(self):
|
11278
|
+
"""迁移状态 S_RW_D_NA 源集群读写 S_RW_D_R 源集群读写目标集群读 S_RW_D_RW 源集群读写目标集群读写 S_R_D_RW 源集群读目标集群读写 S_NA_D_RW 目标集群读写
|
11279
|
+
:rtype: str
|
11280
|
+
"""
|
11281
|
+
return self._MigrationStatus
|
11282
|
+
|
11283
|
+
@MigrationStatus.setter
|
11284
|
+
def MigrationStatus(self, MigrationStatus):
|
11285
|
+
self._MigrationStatus = MigrationStatus
|
11286
|
+
|
11287
|
+
@property
|
11288
|
+
def HealthCheckPassed(self):
|
11289
|
+
"""是否完成健康检查
|
11290
|
+
:rtype: bool
|
11291
|
+
"""
|
11292
|
+
return self._HealthCheckPassed
|
11293
|
+
|
11294
|
+
@HealthCheckPassed.setter
|
11295
|
+
def HealthCheckPassed(self, HealthCheckPassed):
|
11296
|
+
self._HealthCheckPassed = HealthCheckPassed
|
11297
|
+
|
11298
|
+
@property
|
11299
|
+
def HealthCheckError(self):
|
11300
|
+
"""上次健康检查返回的错误信息,仅在HealthCheckPassed为false时有效。 NotChecked 未执行检查, Unknown 未知错误, TopicNotImported 主题未导入, TopicNotExistsInSourceCluster 主题在源集群中不存在, TopicNotExistsInTargetCluster 主题在目标集群中不存在, ConsumerConnectedOnTarget 目标集群上存在消费者连接, SourceTopicHasNewMessagesIn5Minutes 源集群主题前5分钟内有新消息写入, TargetTopicHasNewMessagesIn5Minutes 目标集群主题前5分钟内有新消息写入, SourceTopicHasNoMessagesIn5Minutes 源集群前5分钟内没有新消息写入, TargetTopicHasNoMessagesIn5Minutes 源集群前5分钟内没有新消息写入, ConsumerGroupCountNotMatch 订阅组数量不一致, SourceTopicHasUnconsumedMessages 源集群主题存在未消费消息,
|
11301
|
+
:rtype: str
|
11302
|
+
"""
|
11303
|
+
return self._HealthCheckError
|
11304
|
+
|
11305
|
+
@HealthCheckError.setter
|
11306
|
+
def HealthCheckError(self, HealthCheckError):
|
11307
|
+
self._HealthCheckError = HealthCheckError
|
11308
|
+
|
11309
|
+
@property
|
11310
|
+
def Namespace(self):
|
11311
|
+
"""命名空间,仅4.x集群有效
|
11312
|
+
:rtype: str
|
11313
|
+
"""
|
11314
|
+
return self._Namespace
|
11315
|
+
|
11316
|
+
@Namespace.setter
|
11317
|
+
def Namespace(self, Namespace):
|
11318
|
+
self._Namespace = Namespace
|
11319
|
+
|
11320
|
+
@property
|
11321
|
+
def NamespaceV4(self):
|
11322
|
+
"""4.x的命名空间
|
11323
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11324
|
+
:rtype: str
|
11325
|
+
"""
|
11326
|
+
return self._NamespaceV4
|
11327
|
+
|
11328
|
+
@NamespaceV4.setter
|
11329
|
+
def NamespaceV4(self, NamespaceV4):
|
11330
|
+
self._NamespaceV4 = NamespaceV4
|
11331
|
+
|
11332
|
+
@property
|
11333
|
+
def TopicNameV4(self):
|
11334
|
+
"""4.x的主题名称
|
11335
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11336
|
+
:rtype: str
|
11337
|
+
"""
|
11338
|
+
return self._TopicNameV4
|
11339
|
+
|
11340
|
+
@TopicNameV4.setter
|
11341
|
+
def TopicNameV4(self, TopicNameV4):
|
11342
|
+
self._TopicNameV4 = TopicNameV4
|
11343
|
+
|
11344
|
+
@property
|
11345
|
+
def FullNamespaceV4(self):
|
11346
|
+
"""4.x的完整命名空间
|
11347
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
11348
|
+
:rtype: str
|
11349
|
+
"""
|
11350
|
+
return self._FullNamespaceV4
|
10224
11351
|
|
10225
|
-
@
|
10226
|
-
def
|
10227
|
-
self.
|
11352
|
+
@FullNamespaceV4.setter
|
11353
|
+
def FullNamespaceV4(self, FullNamespaceV4):
|
11354
|
+
self._FullNamespaceV4 = FullNamespaceV4
|
10228
11355
|
|
10229
11356
|
@property
|
10230
|
-
def
|
10231
|
-
"""
|
10232
|
-
|
10233
|
-
:rtype: str
|
11357
|
+
def HealthCheckErrorList(self):
|
11358
|
+
"""上次健康检查返回的错误列表
|
11359
|
+
:rtype: list of str
|
10234
11360
|
"""
|
10235
|
-
return self.
|
11361
|
+
return self._HealthCheckErrorList
|
10236
11362
|
|
10237
|
-
@
|
10238
|
-
def
|
10239
|
-
self.
|
11363
|
+
@HealthCheckErrorList.setter
|
11364
|
+
def HealthCheckErrorList(self, HealthCheckErrorList):
|
11365
|
+
self._HealthCheckErrorList = HealthCheckErrorList
|
10240
11366
|
|
10241
11367
|
|
10242
11368
|
def _deserialize(self, params):
|
10243
|
-
self.
|
10244
|
-
self.
|
10245
|
-
self.
|
10246
|
-
self.
|
11369
|
+
self._TopicName = params.get("TopicName")
|
11370
|
+
self._MigrationStatus = params.get("MigrationStatus")
|
11371
|
+
self._HealthCheckPassed = params.get("HealthCheckPassed")
|
11372
|
+
self._HealthCheckError = params.get("HealthCheckError")
|
11373
|
+
self._Namespace = params.get("Namespace")
|
11374
|
+
self._NamespaceV4 = params.get("NamespaceV4")
|
11375
|
+
self._TopicNameV4 = params.get("TopicNameV4")
|
11376
|
+
self._FullNamespaceV4 = params.get("FullNamespaceV4")
|
11377
|
+
self._HealthCheckErrorList = params.get("HealthCheckErrorList")
|
10247
11378
|
memeber_set = set(params.keys())
|
10248
11379
|
for name, value in vars(self).items():
|
10249
11380
|
property_name = name[1:]
|
@@ -11957,6 +13088,100 @@ class PublicAccessRule(AbstractModel):
|
|
11957
13088
|
|
11958
13089
|
|
11959
13090
|
|
13091
|
+
class RemoveMigratingTopicRequest(AbstractModel):
|
13092
|
+
"""RemoveMigratingTopic请求参数结构体
|
13093
|
+
|
13094
|
+
"""
|
13095
|
+
|
13096
|
+
def __init__(self):
|
13097
|
+
r"""
|
13098
|
+
:param _TaskId: 任务ID
|
13099
|
+
:type TaskId: str
|
13100
|
+
:param _TopicName: 主题名称
|
13101
|
+
:type TopicName: str
|
13102
|
+
:param _Namespace: 命名空间,仅迁移至4.x集群有效
|
13103
|
+
:type Namespace: str
|
13104
|
+
"""
|
13105
|
+
self._TaskId = None
|
13106
|
+
self._TopicName = None
|
13107
|
+
self._Namespace = None
|
13108
|
+
|
13109
|
+
@property
|
13110
|
+
def TaskId(self):
|
13111
|
+
"""任务ID
|
13112
|
+
:rtype: str
|
13113
|
+
"""
|
13114
|
+
return self._TaskId
|
13115
|
+
|
13116
|
+
@TaskId.setter
|
13117
|
+
def TaskId(self, TaskId):
|
13118
|
+
self._TaskId = TaskId
|
13119
|
+
|
13120
|
+
@property
|
13121
|
+
def TopicName(self):
|
13122
|
+
"""主题名称
|
13123
|
+
:rtype: str
|
13124
|
+
"""
|
13125
|
+
return self._TopicName
|
13126
|
+
|
13127
|
+
@TopicName.setter
|
13128
|
+
def TopicName(self, TopicName):
|
13129
|
+
self._TopicName = TopicName
|
13130
|
+
|
13131
|
+
@property
|
13132
|
+
def Namespace(self):
|
13133
|
+
"""命名空间,仅迁移至4.x集群有效
|
13134
|
+
:rtype: str
|
13135
|
+
"""
|
13136
|
+
return self._Namespace
|
13137
|
+
|
13138
|
+
@Namespace.setter
|
13139
|
+
def Namespace(self, Namespace):
|
13140
|
+
self._Namespace = Namespace
|
13141
|
+
|
13142
|
+
|
13143
|
+
def _deserialize(self, params):
|
13144
|
+
self._TaskId = params.get("TaskId")
|
13145
|
+
self._TopicName = params.get("TopicName")
|
13146
|
+
self._Namespace = params.get("Namespace")
|
13147
|
+
memeber_set = set(params.keys())
|
13148
|
+
for name, value in vars(self).items():
|
13149
|
+
property_name = name[1:]
|
13150
|
+
if property_name in memeber_set:
|
13151
|
+
memeber_set.remove(property_name)
|
13152
|
+
if len(memeber_set) > 0:
|
13153
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13154
|
+
|
13155
|
+
|
13156
|
+
|
13157
|
+
class RemoveMigratingTopicResponse(AbstractModel):
|
13158
|
+
"""RemoveMigratingTopic返回参数结构体
|
13159
|
+
|
13160
|
+
"""
|
13161
|
+
|
13162
|
+
def __init__(self):
|
13163
|
+
r"""
|
13164
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13165
|
+
:type RequestId: str
|
13166
|
+
"""
|
13167
|
+
self._RequestId = None
|
13168
|
+
|
13169
|
+
@property
|
13170
|
+
def RequestId(self):
|
13171
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13172
|
+
:rtype: str
|
13173
|
+
"""
|
13174
|
+
return self._RequestId
|
13175
|
+
|
13176
|
+
@RequestId.setter
|
13177
|
+
def RequestId(self, RequestId):
|
13178
|
+
self._RequestId = RequestId
|
13179
|
+
|
13180
|
+
|
13181
|
+
def _deserialize(self, params):
|
13182
|
+
self._RequestId = params.get("RequestId")
|
13183
|
+
|
13184
|
+
|
11960
13185
|
class ResendDeadLetterMessageRequest(AbstractModel):
|
11961
13186
|
"""ResendDeadLetterMessage请求参数结构体
|
11962
13187
|
|
@@ -12355,6 +13580,100 @@ class RoleItem(AbstractModel):
|
|
12355
13580
|
|
12356
13581
|
|
12357
13582
|
|
13583
|
+
class RollbackMigratingTopicStageRequest(AbstractModel):
|
13584
|
+
"""RollbackMigratingTopicStage请求参数结构体
|
13585
|
+
|
13586
|
+
"""
|
13587
|
+
|
13588
|
+
def __init__(self):
|
13589
|
+
r"""
|
13590
|
+
:param _TaskId: 任务ID
|
13591
|
+
:type TaskId: str
|
13592
|
+
:param _TopicName: 主题名称
|
13593
|
+
:type TopicName: str
|
13594
|
+
:param _Namespace: 命名空间,仅4.x集群有效
|
13595
|
+
:type Namespace: str
|
13596
|
+
"""
|
13597
|
+
self._TaskId = None
|
13598
|
+
self._TopicName = None
|
13599
|
+
self._Namespace = None
|
13600
|
+
|
13601
|
+
@property
|
13602
|
+
def TaskId(self):
|
13603
|
+
"""任务ID
|
13604
|
+
:rtype: str
|
13605
|
+
"""
|
13606
|
+
return self._TaskId
|
13607
|
+
|
13608
|
+
@TaskId.setter
|
13609
|
+
def TaskId(self, TaskId):
|
13610
|
+
self._TaskId = TaskId
|
13611
|
+
|
13612
|
+
@property
|
13613
|
+
def TopicName(self):
|
13614
|
+
"""主题名称
|
13615
|
+
:rtype: str
|
13616
|
+
"""
|
13617
|
+
return self._TopicName
|
13618
|
+
|
13619
|
+
@TopicName.setter
|
13620
|
+
def TopicName(self, TopicName):
|
13621
|
+
self._TopicName = TopicName
|
13622
|
+
|
13623
|
+
@property
|
13624
|
+
def Namespace(self):
|
13625
|
+
"""命名空间,仅4.x集群有效
|
13626
|
+
:rtype: str
|
13627
|
+
"""
|
13628
|
+
return self._Namespace
|
13629
|
+
|
13630
|
+
@Namespace.setter
|
13631
|
+
def Namespace(self, Namespace):
|
13632
|
+
self._Namespace = Namespace
|
13633
|
+
|
13634
|
+
|
13635
|
+
def _deserialize(self, params):
|
13636
|
+
self._TaskId = params.get("TaskId")
|
13637
|
+
self._TopicName = params.get("TopicName")
|
13638
|
+
self._Namespace = params.get("Namespace")
|
13639
|
+
memeber_set = set(params.keys())
|
13640
|
+
for name, value in vars(self).items():
|
13641
|
+
property_name = name[1:]
|
13642
|
+
if property_name in memeber_set:
|
13643
|
+
memeber_set.remove(property_name)
|
13644
|
+
if len(memeber_set) > 0:
|
13645
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13646
|
+
|
13647
|
+
|
13648
|
+
|
13649
|
+
class RollbackMigratingTopicStageResponse(AbstractModel):
|
13650
|
+
"""RollbackMigratingTopicStage返回参数结构体
|
13651
|
+
|
13652
|
+
"""
|
13653
|
+
|
13654
|
+
def __init__(self):
|
13655
|
+
r"""
|
13656
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13657
|
+
:type RequestId: str
|
13658
|
+
"""
|
13659
|
+
self._RequestId = None
|
13660
|
+
|
13661
|
+
@property
|
13662
|
+
def RequestId(self):
|
13663
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13664
|
+
:rtype: str
|
13665
|
+
"""
|
13666
|
+
return self._RequestId
|
13667
|
+
|
13668
|
+
@RequestId.setter
|
13669
|
+
def RequestId(self, RequestId):
|
13670
|
+
self._RequestId = RequestId
|
13671
|
+
|
13672
|
+
|
13673
|
+
def _deserialize(self, params):
|
13674
|
+
self._RequestId = params.get("RequestId")
|
13675
|
+
|
13676
|
+
|
12358
13677
|
class SourceClusterGroupConfig(AbstractModel):
|
12359
13678
|
"""消费组配置信息
|
12360
13679
|
|
@@ -13488,6 +14807,72 @@ TRANSACTION:事务消息
|
|
13488
14807
|
|
13489
14808
|
|
13490
14809
|
|
14810
|
+
class TopicStageChangeResult(AbstractModel):
|
14811
|
+
"""迁移主题修改状态后的结果
|
14812
|
+
|
14813
|
+
"""
|
14814
|
+
|
14815
|
+
def __init__(self):
|
14816
|
+
r"""
|
14817
|
+
:param _TopicName: 主题名称
|
14818
|
+
:type TopicName: str
|
14819
|
+
:param _Success: 是否成功
|
14820
|
+
:type Success: bool
|
14821
|
+
:param _Namespace: 命名空间,仅4.x有效
|
14822
|
+
:type Namespace: str
|
14823
|
+
"""
|
14824
|
+
self._TopicName = None
|
14825
|
+
self._Success = None
|
14826
|
+
self._Namespace = None
|
14827
|
+
|
14828
|
+
@property
|
14829
|
+
def TopicName(self):
|
14830
|
+
"""主题名称
|
14831
|
+
:rtype: str
|
14832
|
+
"""
|
14833
|
+
return self._TopicName
|
14834
|
+
|
14835
|
+
@TopicName.setter
|
14836
|
+
def TopicName(self, TopicName):
|
14837
|
+
self._TopicName = TopicName
|
14838
|
+
|
14839
|
+
@property
|
14840
|
+
def Success(self):
|
14841
|
+
"""是否成功
|
14842
|
+
:rtype: bool
|
14843
|
+
"""
|
14844
|
+
return self._Success
|
14845
|
+
|
14846
|
+
@Success.setter
|
14847
|
+
def Success(self, Success):
|
14848
|
+
self._Success = Success
|
14849
|
+
|
14850
|
+
@property
|
14851
|
+
def Namespace(self):
|
14852
|
+
"""命名空间,仅4.x有效
|
14853
|
+
:rtype: str
|
14854
|
+
"""
|
14855
|
+
return self._Namespace
|
14856
|
+
|
14857
|
+
@Namespace.setter
|
14858
|
+
def Namespace(self, Namespace):
|
14859
|
+
self._Namespace = Namespace
|
14860
|
+
|
14861
|
+
|
14862
|
+
def _deserialize(self, params):
|
14863
|
+
self._TopicName = params.get("TopicName")
|
14864
|
+
self._Success = params.get("Success")
|
14865
|
+
self._Namespace = params.get("Namespace")
|
14866
|
+
memeber_set = set(params.keys())
|
14867
|
+
for name, value in vars(self).items():
|
14868
|
+
property_name = name[1:]
|
14869
|
+
if property_name in memeber_set:
|
14870
|
+
memeber_set.remove(property_name)
|
14871
|
+
if len(memeber_set) > 0:
|
14872
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
14873
|
+
|
14874
|
+
|
14875
|
+
|
13491
14876
|
class VpcInfo(AbstractModel):
|
13492
14877
|
"""VPC信息
|
13493
14878
|
|