tencentcloud-sdk-python 3.0.1374__py2.py3-none-any.whl → 3.0.1376__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/aiart/v20221229/models.py +14 -0
- tencentcloud/apm/v20210622/models.py +60 -0
- tencentcloud/asr/v20190614/asr_client.py +1 -1
- tencentcloud/asr/v20190614/models.py +8 -0
- tencentcloud/bh/v20230418/models.py +4 -8
- tencentcloud/cat/v20180409/cat_client.py +23 -0
- tencentcloud/cat/v20180409/models.py +161 -0
- tencentcloud/cfs/v20190719/models.py +19 -0
- tencentcloud/clb/v20180317/clb_client.py +17 -9
- tencentcloud/clb/v20180317/errorcodes.py +3 -0
- tencentcloud/clb/v20180317/models.py +232 -98
- tencentcloud/cloudaudit/v20190319/models.py +0 -64
- tencentcloud/config/v20220802/models.py +0 -150
- tencentcloud/cvm/v20170312/models.py +2 -2
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
- tencentcloud/cynosdb/v20190107/models.py +113 -0
- tencentcloud/dsgc/v20190723/dsgc_client.py +23 -0
- tencentcloud/dsgc/v20190723/models.py +384 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +25 -0
- tencentcloud/hunyuan/v20230901/models.py +310 -0
- tencentcloud/mongodb/v20190725/models.py +4 -0
- tencentcloud/ocr/v20181119/models.py +20 -2
- tencentcloud/organization/v20210331/models.py +0 -12
- tencentcloud/partners/v20180321/models.py +266 -0
- tencentcloud/partners/v20180321/partners_client.py +23 -0
- tencentcloud/postgres/v20170312/models.py +2 -2
- tencentcloud/tdmq/v20200217/models.py +185 -15
- tencentcloud/teo/v20220901/errorcodes.py +12 -0
- tencentcloud/teo/v20220901/models.py +4 -4
- tencentcloud/thpc/v20230321/errorcodes.py +9 -0
- tencentcloud/thpc/v20230321/models.py +2 -2
- tencentcloud/trocket/v20230308/models.py +190 -12
- tencentcloud/trocket/v20230308/trocket_client.py +0 -1
- tencentcloud/vpc/v20170312/models.py +136 -154
- tencentcloud/vpc/v20170312/vpc_client.py +4 -4
- tencentcloud/waf/v20180125/models.py +79 -0
- tencentcloud/waf/v20180125/waf_client.py +23 -0
- tencentcloud/wedata/v20210820/models.py +2018 -165
- tencentcloud/wedata/v20210820/wedata_client.py +144 -5
- {tencentcloud_sdk_python-3.0.1374.dist-info → tencentcloud_sdk_python-3.0.1376.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1374.dist-info → tencentcloud_sdk_python-3.0.1376.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1374.dist-info → tencentcloud_sdk_python-3.0.1376.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1374.dist-info → tencentcloud_sdk_python-3.0.1376.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1374.dist-info → tencentcloud_sdk_python-3.0.1376.dist-info}/top_level.txt +0 -0
@@ -132,6 +132,102 @@ class ChangeMigratingTopicToNextStageResponse(AbstractModel):
|
|
132
132
|
self._RequestId = params.get("RequestId")
|
133
133
|
|
134
134
|
|
135
|
+
class ClientSubscriptionInfo(AbstractModel):
|
136
|
+
"""客户端订阅详情,可用于辅助判断哪些客户端订阅关系不一致
|
137
|
+
|
138
|
+
"""
|
139
|
+
|
140
|
+
def __init__(self):
|
141
|
+
r"""
|
142
|
+
:param _ClientId: 客户端ID
|
143
|
+
:type ClientId: str
|
144
|
+
:param _ClientAddr: 客户端地址
|
145
|
+
:type ClientAddr: str
|
146
|
+
:param _Topic: 订阅主题
|
147
|
+
:type Topic: str
|
148
|
+
:param _SubString: 订阅表达式
|
149
|
+
:type SubString: str
|
150
|
+
:param _ExpressionType: 订阅方式
|
151
|
+
:type ExpressionType: str
|
152
|
+
"""
|
153
|
+
self._ClientId = None
|
154
|
+
self._ClientAddr = None
|
155
|
+
self._Topic = None
|
156
|
+
self._SubString = None
|
157
|
+
self._ExpressionType = None
|
158
|
+
|
159
|
+
@property
|
160
|
+
def ClientId(self):
|
161
|
+
"""客户端ID
|
162
|
+
:rtype: str
|
163
|
+
"""
|
164
|
+
return self._ClientId
|
165
|
+
|
166
|
+
@ClientId.setter
|
167
|
+
def ClientId(self, ClientId):
|
168
|
+
self._ClientId = ClientId
|
169
|
+
|
170
|
+
@property
|
171
|
+
def ClientAddr(self):
|
172
|
+
"""客户端地址
|
173
|
+
:rtype: str
|
174
|
+
"""
|
175
|
+
return self._ClientAddr
|
176
|
+
|
177
|
+
@ClientAddr.setter
|
178
|
+
def ClientAddr(self, ClientAddr):
|
179
|
+
self._ClientAddr = ClientAddr
|
180
|
+
|
181
|
+
@property
|
182
|
+
def Topic(self):
|
183
|
+
"""订阅主题
|
184
|
+
:rtype: str
|
185
|
+
"""
|
186
|
+
return self._Topic
|
187
|
+
|
188
|
+
@Topic.setter
|
189
|
+
def Topic(self, Topic):
|
190
|
+
self._Topic = Topic
|
191
|
+
|
192
|
+
@property
|
193
|
+
def SubString(self):
|
194
|
+
"""订阅表达式
|
195
|
+
:rtype: str
|
196
|
+
"""
|
197
|
+
return self._SubString
|
198
|
+
|
199
|
+
@SubString.setter
|
200
|
+
def SubString(self, SubString):
|
201
|
+
self._SubString = SubString
|
202
|
+
|
203
|
+
@property
|
204
|
+
def ExpressionType(self):
|
205
|
+
"""订阅方式
|
206
|
+
:rtype: str
|
207
|
+
"""
|
208
|
+
return self._ExpressionType
|
209
|
+
|
210
|
+
@ExpressionType.setter
|
211
|
+
def ExpressionType(self, ExpressionType):
|
212
|
+
self._ExpressionType = ExpressionType
|
213
|
+
|
214
|
+
|
215
|
+
def _deserialize(self, params):
|
216
|
+
self._ClientId = params.get("ClientId")
|
217
|
+
self._ClientAddr = params.get("ClientAddr")
|
218
|
+
self._Topic = params.get("Topic")
|
219
|
+
self._SubString = params.get("SubString")
|
220
|
+
self._ExpressionType = params.get("ExpressionType")
|
221
|
+
memeber_set = set(params.keys())
|
222
|
+
for name, value in vars(self).items():
|
223
|
+
property_name = name[1:]
|
224
|
+
if property_name in memeber_set:
|
225
|
+
memeber_set.remove(property_name)
|
226
|
+
if len(memeber_set) > 0:
|
227
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
228
|
+
|
229
|
+
|
230
|
+
|
135
231
|
class ConsumeGroupItem(AbstractModel):
|
136
232
|
"""消费组信息
|
137
233
|
|
@@ -446,6 +542,8 @@ class CreateConsumerGroupRequest(AbstractModel):
|
|
446
542
|
:type ConsumerGroup: str
|
447
543
|
:param _Remark: 备注
|
448
544
|
:type Remark: str
|
545
|
+
:param _TagList: 标签列表
|
546
|
+
:type TagList: list of Tag
|
449
547
|
"""
|
450
548
|
self._InstanceId = None
|
451
549
|
self._MaxRetryTimes = None
|
@@ -453,6 +551,7 @@ class CreateConsumerGroupRequest(AbstractModel):
|
|
453
551
|
self._ConsumeMessageOrderly = None
|
454
552
|
self._ConsumerGroup = None
|
455
553
|
self._Remark = None
|
554
|
+
self._TagList = None
|
456
555
|
|
457
556
|
@property
|
458
557
|
def InstanceId(self):
|
@@ -521,6 +620,17 @@ class CreateConsumerGroupRequest(AbstractModel):
|
|
521
620
|
def Remark(self, Remark):
|
522
621
|
self._Remark = Remark
|
523
622
|
|
623
|
+
@property
|
624
|
+
def TagList(self):
|
625
|
+
"""标签列表
|
626
|
+
:rtype: list of Tag
|
627
|
+
"""
|
628
|
+
return self._TagList
|
629
|
+
|
630
|
+
@TagList.setter
|
631
|
+
def TagList(self, TagList):
|
632
|
+
self._TagList = TagList
|
633
|
+
|
524
634
|
|
525
635
|
def _deserialize(self, params):
|
526
636
|
self._InstanceId = params.get("InstanceId")
|
@@ -529,6 +639,12 @@ class CreateConsumerGroupRequest(AbstractModel):
|
|
529
639
|
self._ConsumeMessageOrderly = params.get("ConsumeMessageOrderly")
|
530
640
|
self._ConsumerGroup = params.get("ConsumerGroup")
|
531
641
|
self._Remark = params.get("Remark")
|
642
|
+
if params.get("TagList") is not None:
|
643
|
+
self._TagList = []
|
644
|
+
for item in params.get("TagList"):
|
645
|
+
obj = Tag()
|
646
|
+
obj._deserialize(item)
|
647
|
+
self._TagList.append(obj)
|
532
648
|
memeber_set = set(params.keys())
|
533
649
|
for name, value in vars(self).items():
|
534
650
|
property_name = name[1:]
|
@@ -1738,6 +1854,8 @@ TRANSACTION:事务消息
|
|
1738
1854
|
:type Remark: str
|
1739
1855
|
:param _MsgTTL: 消息保留时长
|
1740
1856
|
:type MsgTTL: int
|
1857
|
+
:param _TagList: 标签列表
|
1858
|
+
:type TagList: list of Tag
|
1741
1859
|
"""
|
1742
1860
|
self._InstanceId = None
|
1743
1861
|
self._Topic = None
|
@@ -1745,6 +1863,7 @@ TRANSACTION:事务消息
|
|
1745
1863
|
self._QueueNum = None
|
1746
1864
|
self._Remark = None
|
1747
1865
|
self._MsgTTL = None
|
1866
|
+
self._TagList = None
|
1748
1867
|
|
1749
1868
|
@property
|
1750
1869
|
def InstanceId(self):
|
@@ -1817,6 +1936,17 @@ TRANSACTION:事务消息
|
|
1817
1936
|
def MsgTTL(self, MsgTTL):
|
1818
1937
|
self._MsgTTL = MsgTTL
|
1819
1938
|
|
1939
|
+
@property
|
1940
|
+
def TagList(self):
|
1941
|
+
"""标签列表
|
1942
|
+
:rtype: list of Tag
|
1943
|
+
"""
|
1944
|
+
return self._TagList
|
1945
|
+
|
1946
|
+
@TagList.setter
|
1947
|
+
def TagList(self, TagList):
|
1948
|
+
self._TagList = TagList
|
1949
|
+
|
1820
1950
|
|
1821
1951
|
def _deserialize(self, params):
|
1822
1952
|
self._InstanceId = params.get("InstanceId")
|
@@ -1825,6 +1955,12 @@ TRANSACTION:事务消息
|
|
1825
1955
|
self._QueueNum = params.get("QueueNum")
|
1826
1956
|
self._Remark = params.get("Remark")
|
1827
1957
|
self._MsgTTL = params.get("MsgTTL")
|
1958
|
+
if params.get("TagList") is not None:
|
1959
|
+
self._TagList = []
|
1960
|
+
for item in params.get("TagList"):
|
1961
|
+
obj = Tag()
|
1962
|
+
obj._deserialize(item)
|
1963
|
+
self._TagList.append(obj)
|
1828
1964
|
memeber_set = set(params.keys())
|
1829
1965
|
for name, value in vars(self).items():
|
1830
1966
|
property_name = name[1:]
|
@@ -2893,7 +3029,6 @@ class DescribeConsumerGroupListResponse(AbstractModel):
|
|
2893
3029
|
def __init__(self):
|
2894
3030
|
r"""
|
2895
3031
|
:param _TotalCount: 查询总数
|
2896
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2897
3032
|
:type TotalCount: int
|
2898
3033
|
:param _Data: 消费组列表
|
2899
3034
|
:type Data: list of ConsumeGroupItem
|
@@ -2907,7 +3042,6 @@ class DescribeConsumerGroupListResponse(AbstractModel):
|
|
2907
3042
|
@property
|
2908
3043
|
def TotalCount(self):
|
2909
3044
|
"""查询总数
|
2910
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2911
3045
|
:rtype: int
|
2912
3046
|
"""
|
2913
3047
|
return self._TotalCount
|
@@ -3408,7 +3542,6 @@ class DescribeFusionInstanceListResponse(AbstractModel):
|
|
3408
3542
|
def __init__(self):
|
3409
3543
|
r"""
|
3410
3544
|
:param _TotalCount: 查询总数
|
3411
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3412
3545
|
:type TotalCount: int
|
3413
3546
|
:param _Data: 实例列表
|
3414
3547
|
:type Data: list of FusionInstanceItem
|
@@ -3422,7 +3555,6 @@ class DescribeFusionInstanceListResponse(AbstractModel):
|
|
3422
3555
|
@property
|
3423
3556
|
def TotalCount(self):
|
3424
3557
|
"""查询总数
|
3425
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3426
3558
|
:rtype: int
|
3427
3559
|
"""
|
3428
3560
|
return self._TotalCount
|
@@ -3564,7 +3696,6 @@ class DescribeInstanceListResponse(AbstractModel):
|
|
3564
3696
|
def __init__(self):
|
3565
3697
|
r"""
|
3566
3698
|
:param _TotalCount: 查询总数
|
3567
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3568
3699
|
:type TotalCount: int
|
3569
3700
|
:param _Data: 实例列表
|
3570
3701
|
:type Data: list of InstanceItem
|
@@ -3578,7 +3709,6 @@ class DescribeInstanceListResponse(AbstractModel):
|
|
3578
3709
|
@property
|
3579
3710
|
def TotalCount(self):
|
3580
3711
|
"""查询总数
|
3581
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3582
3712
|
:rtype: int
|
3583
3713
|
"""
|
3584
3714
|
return self._TotalCount
|
@@ -6344,7 +6474,6 @@ class DescribeMessageListResponse(AbstractModel):
|
|
6344
6474
|
def __init__(self):
|
6345
6475
|
r"""
|
6346
6476
|
:param _TotalCount: 查询总数
|
6347
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6348
6477
|
:type TotalCount: int
|
6349
6478
|
:param _Data: 消息记录列表
|
6350
6479
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -6363,7 +6492,6 @@ class DescribeMessageListResponse(AbstractModel):
|
|
6363
6492
|
@property
|
6364
6493
|
def TotalCount(self):
|
6365
6494
|
"""查询总数
|
6366
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6367
6495
|
:rtype: int
|
6368
6496
|
"""
|
6369
6497
|
return self._TotalCount
|
@@ -7483,7 +7611,6 @@ class DescribeRoleListResponse(AbstractModel):
|
|
7483
7611
|
def __init__(self):
|
7484
7612
|
r"""
|
7485
7613
|
:param _TotalCount: 查询总数
|
7486
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7487
7614
|
:type TotalCount: int
|
7488
7615
|
:param _Data: 角色信息列表
|
7489
7616
|
:type Data: list of RoleItem
|
@@ -7497,7 +7624,6 @@ class DescribeRoleListResponse(AbstractModel):
|
|
7497
7624
|
@property
|
7498
7625
|
def TotalCount(self):
|
7499
7626
|
"""查询总数
|
7500
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7501
7627
|
:rtype: int
|
7502
7628
|
"""
|
7503
7629
|
return self._TotalCount
|
@@ -7798,7 +7924,6 @@ class DescribeTopicListByGroupResponse(AbstractModel):
|
|
7798
7924
|
def __init__(self):
|
7799
7925
|
r"""
|
7800
7926
|
:param _TotalCount: 查询总数
|
7801
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7802
7927
|
:type TotalCount: int
|
7803
7928
|
:param _Data: 主题列表
|
7804
7929
|
:type Data: list of SubscriptionData
|
@@ -7812,7 +7937,6 @@ class DescribeTopicListByGroupResponse(AbstractModel):
|
|
7812
7937
|
@property
|
7813
7938
|
def TotalCount(self):
|
7814
7939
|
"""查询总数
|
7815
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7816
7940
|
:rtype: int
|
7817
7941
|
"""
|
7818
7942
|
return self._TotalCount
|
@@ -8856,6 +8980,9 @@ PREPAID,包年包月
|
|
8856
8980
|
:param _DestroyTime: 预销毁时间
|
8857
8981
|
注意:此字段可能返回 null,表示取不到有效值。
|
8858
8982
|
:type DestroyTime: int
|
8983
|
+
:param _ZoneIds: 所属可用区列表
|
8984
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8985
|
+
:type ZoneIds: list of int
|
8859
8986
|
"""
|
8860
8987
|
self._InstanceId = None
|
8861
8988
|
self._InstanceName = None
|
@@ -8878,6 +9005,7 @@ PREPAID,包年包月
|
|
8878
9005
|
self._RenewFlag = None
|
8879
9006
|
self._InstanceItemExtraInfo = None
|
8880
9007
|
self._DestroyTime = None
|
9008
|
+
self._ZoneIds = None
|
8881
9009
|
|
8882
9010
|
@property
|
8883
9011
|
def InstanceId(self):
|
@@ -9136,6 +9264,18 @@ PREPAID,包年包月
|
|
9136
9264
|
def DestroyTime(self, DestroyTime):
|
9137
9265
|
self._DestroyTime = DestroyTime
|
9138
9266
|
|
9267
|
+
@property
|
9268
|
+
def ZoneIds(self):
|
9269
|
+
"""所属可用区列表
|
9270
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
9271
|
+
:rtype: list of int
|
9272
|
+
"""
|
9273
|
+
return self._ZoneIds
|
9274
|
+
|
9275
|
+
@ZoneIds.setter
|
9276
|
+
def ZoneIds(self, ZoneIds):
|
9277
|
+
self._ZoneIds = ZoneIds
|
9278
|
+
|
9139
9279
|
|
9140
9280
|
def _deserialize(self, params):
|
9141
9281
|
self._InstanceId = params.get("InstanceId")
|
@@ -9166,6 +9306,7 @@ PREPAID,包年包月
|
|
9166
9306
|
self._InstanceItemExtraInfo = InstanceItemExtraInfo()
|
9167
9307
|
self._InstanceItemExtraInfo._deserialize(params.get("InstanceItemExtraInfo"))
|
9168
9308
|
self._DestroyTime = params.get("DestroyTime")
|
9309
|
+
self._ZoneIds = params.get("ZoneIds")
|
9169
9310
|
memeber_set = set(params.keys())
|
9170
9311
|
for name, value in vars(self).items():
|
9171
9312
|
property_name = name[1:]
|
@@ -9737,6 +9878,8 @@ class InstanceItemExtraInfo(AbstractModel):
|
|
9737
9878
|
:param _InstanceStatus: 4.0共享集群状态
|
9738
9879
|
注意:此字段可能返回 null,表示取不到有效值。
|
9739
9880
|
:type InstanceStatus: int
|
9881
|
+
:param _IsFrozen: 是否已冻结
|
9882
|
+
:type IsFrozen: bool
|
9740
9883
|
"""
|
9741
9884
|
self._IsVip = None
|
9742
9885
|
self._VipInstanceStatus = None
|
@@ -9747,6 +9890,7 @@ class InstanceItemExtraInfo(AbstractModel):
|
|
9747
9890
|
self._MaxRetention = None
|
9748
9891
|
self._MinRetention = None
|
9749
9892
|
self._InstanceStatus = None
|
9893
|
+
self._IsFrozen = None
|
9750
9894
|
|
9751
9895
|
@property
|
9752
9896
|
def IsVip(self):
|
@@ -9856,6 +10000,17 @@ class InstanceItemExtraInfo(AbstractModel):
|
|
9856
10000
|
def InstanceStatus(self, InstanceStatus):
|
9857
10001
|
self._InstanceStatus = InstanceStatus
|
9858
10002
|
|
10003
|
+
@property
|
10004
|
+
def IsFrozen(self):
|
10005
|
+
"""是否已冻结
|
10006
|
+
:rtype: bool
|
10007
|
+
"""
|
10008
|
+
return self._IsFrozen
|
10009
|
+
|
10010
|
+
@IsFrozen.setter
|
10011
|
+
def IsFrozen(self, IsFrozen):
|
10012
|
+
self._IsFrozen = IsFrozen
|
10013
|
+
|
9859
10014
|
|
9860
10015
|
def _deserialize(self, params):
|
9861
10016
|
self._IsVip = params.get("IsVip")
|
@@ -9867,6 +10022,7 @@ class InstanceItemExtraInfo(AbstractModel):
|
|
9867
10022
|
self._MaxRetention = params.get("MaxRetention")
|
9868
10023
|
self._MinRetention = params.get("MinRetention")
|
9869
10024
|
self._InstanceStatus = params.get("InstanceStatus")
|
10025
|
+
self._IsFrozen = params.get("IsFrozen")
|
9870
10026
|
memeber_set = set(params.keys())
|
9871
10027
|
for name, value in vars(self).items():
|
9872
10028
|
property_name = name[1:]
|
@@ -14175,6 +14331,9 @@ BROADCASTING 广播模式;
|
|
14175
14331
|
CLUSTERING 集群模式;
|
14176
14332
|
注意:此字段可能返回 null,表示取不到有效值。
|
14177
14333
|
:type MessageModel: str
|
14334
|
+
:param _ClientSubscriptionInfos: 订阅不一致的客户端列表
|
14335
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
14336
|
+
:type ClientSubscriptionInfos: list of ClientSubscriptionInfo
|
14178
14337
|
"""
|
14179
14338
|
self._InstanceId = None
|
14180
14339
|
self._Topic = None
|
@@ -14191,6 +14350,7 @@ CLUSTERING 集群模式;
|
|
14191
14350
|
self._MaxRetryTimes = None
|
14192
14351
|
self._ConsumeMessageOrderly = None
|
14193
14352
|
self._MessageModel = None
|
14353
|
+
self._ClientSubscriptionInfos = None
|
14194
14354
|
|
14195
14355
|
@property
|
14196
14356
|
def InstanceId(self):
|
@@ -14374,6 +14534,18 @@ CLUSTERING 集群模式;
|
|
14374
14534
|
def MessageModel(self, MessageModel):
|
14375
14535
|
self._MessageModel = MessageModel
|
14376
14536
|
|
14537
|
+
@property
|
14538
|
+
def ClientSubscriptionInfos(self):
|
14539
|
+
"""订阅不一致的客户端列表
|
14540
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
14541
|
+
:rtype: list of ClientSubscriptionInfo
|
14542
|
+
"""
|
14543
|
+
return self._ClientSubscriptionInfos
|
14544
|
+
|
14545
|
+
@ClientSubscriptionInfos.setter
|
14546
|
+
def ClientSubscriptionInfos(self, ClientSubscriptionInfos):
|
14547
|
+
self._ClientSubscriptionInfos = ClientSubscriptionInfos
|
14548
|
+
|
14377
14549
|
|
14378
14550
|
def _deserialize(self, params):
|
14379
14551
|
self._InstanceId = params.get("InstanceId")
|
@@ -14391,6 +14563,12 @@ CLUSTERING 集群模式;
|
|
14391
14563
|
self._MaxRetryTimes = params.get("MaxRetryTimes")
|
14392
14564
|
self._ConsumeMessageOrderly = params.get("ConsumeMessageOrderly")
|
14393
14565
|
self._MessageModel = params.get("MessageModel")
|
14566
|
+
if params.get("ClientSubscriptionInfos") is not None:
|
14567
|
+
self._ClientSubscriptionInfos = []
|
14568
|
+
for item in params.get("ClientSubscriptionInfos"):
|
14569
|
+
obj = ClientSubscriptionInfo()
|
14570
|
+
obj._deserialize(item)
|
14571
|
+
self._ClientSubscriptionInfos.append(obj)
|
14394
14572
|
memeber_set = set(params.keys())
|
14395
14573
|
for name, value in vars(self).items():
|
14396
14574
|
property_name = name[1:]
|
@@ -541,7 +541,6 @@ class TrocketClient(AbstractClient):
|
|
541
541
|
2. InstanceId,集群ID查询
|
542
542
|
3. InstanceType, 集群类型查询,支持多选
|
543
543
|
4. Version,集群版本查询
|
544
|
-
当使用TagFilters查询时,Filters参数失效。
|
545
544
|
|
546
545
|
:param request: Request instance for DescribeFusionInstanceList.
|
547
546
|
:type request: :class:`tencentcloud.trocket.v20230308.models.DescribeFusionInstanceListRequest`
|