tencentcloud-sdk-python 3.0.1255__py2.py3-none-any.whl → 3.0.1256__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/cfw/v20190904/cfw_client.py +3 -1
- tencentcloud/cfw/v20190904/models.py +2 -2
- tencentcloud/clb/v20180317/models.py +25 -1
- tencentcloud/cwp/v20180228/cwp_client.py +6 -2
- tencentcloud/cwp/v20180228/models.py +60 -24
- tencentcloud/gaap/v20180529/gaap_client.py +1 -1
- tencentcloud/gaap/v20180529/models.py +67 -39
- tencentcloud/ocr/v20181119/models.py +1 -0
- tencentcloud/pts/v20210728/models.py +13 -0
- tencentcloud/redis/v20180412/models.py +3 -1
- tencentcloud/redis/v20180412/redis_client.py +1 -1
- tencentcloud/tdmq/v20200217/models.py +442 -55
- tencentcloud/tdmq/v20200217/tdmq_client.py +46 -0
- tencentcloud/trocket/v20230308/models.py +25 -1
- tencentcloud/trocket/v20230308/trocket_client.py +2 -2
- tencentcloud/tsi/v20210325/models.py +135 -0
- tencentcloud/vod/v20180717/models.py +878 -7
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/RECORD +23 -23
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/top_level.txt +0 -0
@@ -7172,6 +7172,9 @@ JobSelectClusterException:19,JobCreateTaskException:20,JobSyncTaskException:21
|
|
7172
7172
|
:param _ScenarioName: test-scenario
|
7173
7173
|
注意:此字段可能返回 null,表示取不到有效值。
|
7174
7174
|
:type ScenarioName: str
|
7175
|
+
:param _PayMode: 付费类型
|
7176
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7177
|
+
:type PayMode: int
|
7175
7178
|
"""
|
7176
7179
|
self._JobId = None
|
7177
7180
|
self._ScenarioId = None
|
@@ -7216,6 +7219,7 @@ JobSelectClusterException:19,JobCreateTaskException:20,JobSyncTaskException:21
|
|
7216
7219
|
self._Message = None
|
7217
7220
|
self._ProjectName = None
|
7218
7221
|
self._ScenarioName = None
|
7222
|
+
self._PayMode = None
|
7219
7223
|
|
7220
7224
|
@property
|
7221
7225
|
def JobId(self):
|
@@ -7561,6 +7565,14 @@ JobSelectClusterException:19,JobCreateTaskException:20,JobSyncTaskException:21
|
|
7561
7565
|
def ScenarioName(self, ScenarioName):
|
7562
7566
|
self._ScenarioName = ScenarioName
|
7563
7567
|
|
7568
|
+
@property
|
7569
|
+
def PayMode(self):
|
7570
|
+
return self._PayMode
|
7571
|
+
|
7572
|
+
@PayMode.setter
|
7573
|
+
def PayMode(self, PayMode):
|
7574
|
+
self._PayMode = PayMode
|
7575
|
+
|
7564
7576
|
|
7565
7577
|
def _deserialize(self, params):
|
7566
7578
|
self._JobId = params.get("JobId")
|
@@ -7647,6 +7659,7 @@ JobSelectClusterException:19,JobCreateTaskException:20,JobSyncTaskException:21
|
|
7647
7659
|
self._Message = params.get("Message")
|
7648
7660
|
self._ProjectName = params.get("ProjectName")
|
7649
7661
|
self._ScenarioName = params.get("ScenarioName")
|
7662
|
+
self._PayMode = params.get("PayMode")
|
7650
7663
|
memeber_set = set(params.keys())
|
7651
7664
|
for name, value in vars(self).items():
|
7652
7665
|
property_name = name[1:]
|
@@ -2039,7 +2039,9 @@ class CreateInstancesRequest(AbstractModel):
|
|
2039
2039
|
- 1:自动续费。
|
2040
2040
|
- 2:到期不续费。
|
2041
2041
|
:type AutoRenew: int
|
2042
|
-
:param _SecurityGroupIdList: 安全组 ID
|
2042
|
+
:param _SecurityGroupIdList: 安全组 ID 数组。
|
2043
|
+
- 安全组是一种虚拟防火墙,对云数据库实例的网络访问进行控制。创建实例时,建议绑定相应的安全组。
|
2044
|
+
- 请通过 [DescribeInstanceSecurityGroup](https://cloud.tencent.com/document/product/239/34447) 接口获取实例的安全组 ID。
|
2043
2045
|
:type SecurityGroupIdList: list of str
|
2044
2046
|
:param _VPort: 用户自定义的网络端口。默认为6379,范围为 [1024,65535]。
|
2045
2047
|
:type VPort: int
|
@@ -96,7 +96,7 @@ class RedisClient(AbstractClient):
|
|
96
96
|
|
97
97
|
|
98
98
|
def AssociateSecurityGroups(self, request):
|
99
|
-
"""本接口 (AssociateSecurityGroups)
|
99
|
+
"""本接口 (AssociateSecurityGroups) 用于将一个安全组绑定于一个或多个数据库实例。创建实例时,未配置安全组,建议通过该接口,绑定安全组。
|
100
100
|
|
101
101
|
:param request: Request instance for AssociateSecurityGroups.
|
102
102
|
:type request: :class:`tencentcloud.redis.v20180412.models.AssociateSecurityGroupsRequest`
|
@@ -4512,7 +4512,7 @@ class CreateRocketMQEnvironmentRoleRequest(AbstractModel):
|
|
4512
4512
|
|
4513
4513
|
def __init__(self):
|
4514
4514
|
r"""
|
4515
|
-
:param _EnvironmentId:
|
4515
|
+
:param _EnvironmentId: 命名空间
|
4516
4516
|
:type EnvironmentId: str
|
4517
4517
|
:param _RoleName: 角色名称。
|
4518
4518
|
:type RoleName: str
|
@@ -6296,6 +6296,127 @@ class DeleteProClusterResponse(AbstractModel):
|
|
6296
6296
|
self._RequestId = params.get("RequestId")
|
6297
6297
|
|
6298
6298
|
|
6299
|
+
class DeleteRabbitMQBindingRequest(AbstractModel):
|
6300
|
+
"""DeleteRabbitMQBinding请求参数结构体
|
6301
|
+
|
6302
|
+
"""
|
6303
|
+
|
6304
|
+
def __init__(self):
|
6305
|
+
r"""
|
6306
|
+
:param _InstanceId: 实例Id
|
6307
|
+
:type InstanceId: str
|
6308
|
+
:param _VirtualHost: Vhost参数
|
6309
|
+
:type VirtualHost: str
|
6310
|
+
:param _BindingId: 路由关系Id
|
6311
|
+
:type BindingId: int
|
6312
|
+
"""
|
6313
|
+
self._InstanceId = None
|
6314
|
+
self._VirtualHost = None
|
6315
|
+
self._BindingId = None
|
6316
|
+
|
6317
|
+
@property
|
6318
|
+
def InstanceId(self):
|
6319
|
+
return self._InstanceId
|
6320
|
+
|
6321
|
+
@InstanceId.setter
|
6322
|
+
def InstanceId(self, InstanceId):
|
6323
|
+
self._InstanceId = InstanceId
|
6324
|
+
|
6325
|
+
@property
|
6326
|
+
def VirtualHost(self):
|
6327
|
+
return self._VirtualHost
|
6328
|
+
|
6329
|
+
@VirtualHost.setter
|
6330
|
+
def VirtualHost(self, VirtualHost):
|
6331
|
+
self._VirtualHost = VirtualHost
|
6332
|
+
|
6333
|
+
@property
|
6334
|
+
def BindingId(self):
|
6335
|
+
return self._BindingId
|
6336
|
+
|
6337
|
+
@BindingId.setter
|
6338
|
+
def BindingId(self, BindingId):
|
6339
|
+
self._BindingId = BindingId
|
6340
|
+
|
6341
|
+
|
6342
|
+
def _deserialize(self, params):
|
6343
|
+
self._InstanceId = params.get("InstanceId")
|
6344
|
+
self._VirtualHost = params.get("VirtualHost")
|
6345
|
+
self._BindingId = params.get("BindingId")
|
6346
|
+
memeber_set = set(params.keys())
|
6347
|
+
for name, value in vars(self).items():
|
6348
|
+
property_name = name[1:]
|
6349
|
+
if property_name in memeber_set:
|
6350
|
+
memeber_set.remove(property_name)
|
6351
|
+
if len(memeber_set) > 0:
|
6352
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6353
|
+
|
6354
|
+
|
6355
|
+
|
6356
|
+
class DeleteRabbitMQBindingResponse(AbstractModel):
|
6357
|
+
"""DeleteRabbitMQBinding返回参数结构体
|
6358
|
+
|
6359
|
+
"""
|
6360
|
+
|
6361
|
+
def __init__(self):
|
6362
|
+
r"""
|
6363
|
+
:param _InstanceId: 队列名称
|
6364
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6365
|
+
:type InstanceId: str
|
6366
|
+
:param _VirtualHost: vhost参数
|
6367
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6368
|
+
:type VirtualHost: str
|
6369
|
+
:param _BindingId: 路由关系Id
|
6370
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6371
|
+
:type BindingId: int
|
6372
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6373
|
+
:type RequestId: str
|
6374
|
+
"""
|
6375
|
+
self._InstanceId = None
|
6376
|
+
self._VirtualHost = None
|
6377
|
+
self._BindingId = None
|
6378
|
+
self._RequestId = None
|
6379
|
+
|
6380
|
+
@property
|
6381
|
+
def InstanceId(self):
|
6382
|
+
return self._InstanceId
|
6383
|
+
|
6384
|
+
@InstanceId.setter
|
6385
|
+
def InstanceId(self, InstanceId):
|
6386
|
+
self._InstanceId = InstanceId
|
6387
|
+
|
6388
|
+
@property
|
6389
|
+
def VirtualHost(self):
|
6390
|
+
return self._VirtualHost
|
6391
|
+
|
6392
|
+
@VirtualHost.setter
|
6393
|
+
def VirtualHost(self, VirtualHost):
|
6394
|
+
self._VirtualHost = VirtualHost
|
6395
|
+
|
6396
|
+
@property
|
6397
|
+
def BindingId(self):
|
6398
|
+
return self._BindingId
|
6399
|
+
|
6400
|
+
@BindingId.setter
|
6401
|
+
def BindingId(self, BindingId):
|
6402
|
+
self._BindingId = BindingId
|
6403
|
+
|
6404
|
+
@property
|
6405
|
+
def RequestId(self):
|
6406
|
+
return self._RequestId
|
6407
|
+
|
6408
|
+
@RequestId.setter
|
6409
|
+
def RequestId(self, RequestId):
|
6410
|
+
self._RequestId = RequestId
|
6411
|
+
|
6412
|
+
|
6413
|
+
def _deserialize(self, params):
|
6414
|
+
self._InstanceId = params.get("InstanceId")
|
6415
|
+
self._VirtualHost = params.get("VirtualHost")
|
6416
|
+
self._BindingId = params.get("BindingId")
|
6417
|
+
self._RequestId = params.get("RequestId")
|
6418
|
+
|
6419
|
+
|
6299
6420
|
class DeleteRabbitMQUserRequest(AbstractModel):
|
6300
6421
|
"""DeleteRabbitMQUser请求参数结构体
|
6301
6422
|
|
@@ -6601,7 +6722,7 @@ class DeleteRocketMQEnvironmentRolesRequest(AbstractModel):
|
|
6601
6722
|
:type EnvironmentId: str
|
6602
6723
|
:param _RoleNames: 角色名称数组。
|
6603
6724
|
:type RoleNames: list of str
|
6604
|
-
:param _ClusterId:
|
6725
|
+
:param _ClusterId: 集群的ID
|
6605
6726
|
:type ClusterId: str
|
6606
6727
|
"""
|
6607
6728
|
self._EnvironmentId = None
|
@@ -10576,6 +10697,179 @@ class DescribePulsarProInstancesResponse(AbstractModel):
|
|
10576
10697
|
self._RequestId = params.get("RequestId")
|
10577
10698
|
|
10578
10699
|
|
10700
|
+
class DescribeRabbitMQBindingsRequest(AbstractModel):
|
10701
|
+
"""DescribeRabbitMQBindings请求参数结构体
|
10702
|
+
|
10703
|
+
"""
|
10704
|
+
|
10705
|
+
def __init__(self):
|
10706
|
+
r"""
|
10707
|
+
:param _InstanceId: 实例Id
|
10708
|
+
:type InstanceId: str
|
10709
|
+
:param _VirtualHost: Vhost参数
|
10710
|
+
:type VirtualHost: str
|
10711
|
+
:param _Offset: 分页offset
|
10712
|
+
:type Offset: int
|
10713
|
+
:param _Limit: 分页limit
|
10714
|
+
:type Limit: int
|
10715
|
+
:param _SearchWord: 搜索关键词,根据源exchange名称/目标资源名称/绑定key进行模糊搜索
|
10716
|
+
:type SearchWord: str
|
10717
|
+
:param _SourceExchange: 根据源Exchange精准搜索过滤
|
10718
|
+
:type SourceExchange: str
|
10719
|
+
:param _QueueName: 根据目标QueueName精准搜索过滤,和DestinationExchange过滤不可同时设置
|
10720
|
+
:type QueueName: str
|
10721
|
+
:param _DestinationExchange: 根据目标Exchange精准搜索过滤,和QueueName过滤不可同时设置
|
10722
|
+
:type DestinationExchange: str
|
10723
|
+
"""
|
10724
|
+
self._InstanceId = None
|
10725
|
+
self._VirtualHost = None
|
10726
|
+
self._Offset = None
|
10727
|
+
self._Limit = None
|
10728
|
+
self._SearchWord = None
|
10729
|
+
self._SourceExchange = None
|
10730
|
+
self._QueueName = None
|
10731
|
+
self._DestinationExchange = None
|
10732
|
+
|
10733
|
+
@property
|
10734
|
+
def InstanceId(self):
|
10735
|
+
return self._InstanceId
|
10736
|
+
|
10737
|
+
@InstanceId.setter
|
10738
|
+
def InstanceId(self, InstanceId):
|
10739
|
+
self._InstanceId = InstanceId
|
10740
|
+
|
10741
|
+
@property
|
10742
|
+
def VirtualHost(self):
|
10743
|
+
return self._VirtualHost
|
10744
|
+
|
10745
|
+
@VirtualHost.setter
|
10746
|
+
def VirtualHost(self, VirtualHost):
|
10747
|
+
self._VirtualHost = VirtualHost
|
10748
|
+
|
10749
|
+
@property
|
10750
|
+
def Offset(self):
|
10751
|
+
return self._Offset
|
10752
|
+
|
10753
|
+
@Offset.setter
|
10754
|
+
def Offset(self, Offset):
|
10755
|
+
self._Offset = Offset
|
10756
|
+
|
10757
|
+
@property
|
10758
|
+
def Limit(self):
|
10759
|
+
return self._Limit
|
10760
|
+
|
10761
|
+
@Limit.setter
|
10762
|
+
def Limit(self, Limit):
|
10763
|
+
self._Limit = Limit
|
10764
|
+
|
10765
|
+
@property
|
10766
|
+
def SearchWord(self):
|
10767
|
+
return self._SearchWord
|
10768
|
+
|
10769
|
+
@SearchWord.setter
|
10770
|
+
def SearchWord(self, SearchWord):
|
10771
|
+
self._SearchWord = SearchWord
|
10772
|
+
|
10773
|
+
@property
|
10774
|
+
def SourceExchange(self):
|
10775
|
+
return self._SourceExchange
|
10776
|
+
|
10777
|
+
@SourceExchange.setter
|
10778
|
+
def SourceExchange(self, SourceExchange):
|
10779
|
+
self._SourceExchange = SourceExchange
|
10780
|
+
|
10781
|
+
@property
|
10782
|
+
def QueueName(self):
|
10783
|
+
return self._QueueName
|
10784
|
+
|
10785
|
+
@QueueName.setter
|
10786
|
+
def QueueName(self, QueueName):
|
10787
|
+
self._QueueName = QueueName
|
10788
|
+
|
10789
|
+
@property
|
10790
|
+
def DestinationExchange(self):
|
10791
|
+
return self._DestinationExchange
|
10792
|
+
|
10793
|
+
@DestinationExchange.setter
|
10794
|
+
def DestinationExchange(self, DestinationExchange):
|
10795
|
+
self._DestinationExchange = DestinationExchange
|
10796
|
+
|
10797
|
+
|
10798
|
+
def _deserialize(self, params):
|
10799
|
+
self._InstanceId = params.get("InstanceId")
|
10800
|
+
self._VirtualHost = params.get("VirtualHost")
|
10801
|
+
self._Offset = params.get("Offset")
|
10802
|
+
self._Limit = params.get("Limit")
|
10803
|
+
self._SearchWord = params.get("SearchWord")
|
10804
|
+
self._SourceExchange = params.get("SourceExchange")
|
10805
|
+
self._QueueName = params.get("QueueName")
|
10806
|
+
self._DestinationExchange = params.get("DestinationExchange")
|
10807
|
+
memeber_set = set(params.keys())
|
10808
|
+
for name, value in vars(self).items():
|
10809
|
+
property_name = name[1:]
|
10810
|
+
if property_name in memeber_set:
|
10811
|
+
memeber_set.remove(property_name)
|
10812
|
+
if len(memeber_set) > 0:
|
10813
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
10814
|
+
|
10815
|
+
|
10816
|
+
|
10817
|
+
class DescribeRabbitMQBindingsResponse(AbstractModel):
|
10818
|
+
"""DescribeRabbitMQBindings返回参数结构体
|
10819
|
+
|
10820
|
+
"""
|
10821
|
+
|
10822
|
+
def __init__(self):
|
10823
|
+
r"""
|
10824
|
+
:param _BindingInfoList: 路由关系列表
|
10825
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10826
|
+
:type BindingInfoList: list of RabbitMQBindingListInfo
|
10827
|
+
:param _TotalCount: 数量
|
10828
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10829
|
+
:type TotalCount: int
|
10830
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10831
|
+
:type RequestId: str
|
10832
|
+
"""
|
10833
|
+
self._BindingInfoList = None
|
10834
|
+
self._TotalCount = None
|
10835
|
+
self._RequestId = None
|
10836
|
+
|
10837
|
+
@property
|
10838
|
+
def BindingInfoList(self):
|
10839
|
+
return self._BindingInfoList
|
10840
|
+
|
10841
|
+
@BindingInfoList.setter
|
10842
|
+
def BindingInfoList(self, BindingInfoList):
|
10843
|
+
self._BindingInfoList = BindingInfoList
|
10844
|
+
|
10845
|
+
@property
|
10846
|
+
def TotalCount(self):
|
10847
|
+
return self._TotalCount
|
10848
|
+
|
10849
|
+
@TotalCount.setter
|
10850
|
+
def TotalCount(self, TotalCount):
|
10851
|
+
self._TotalCount = TotalCount
|
10852
|
+
|
10853
|
+
@property
|
10854
|
+
def RequestId(self):
|
10855
|
+
return self._RequestId
|
10856
|
+
|
10857
|
+
@RequestId.setter
|
10858
|
+
def RequestId(self, RequestId):
|
10859
|
+
self._RequestId = RequestId
|
10860
|
+
|
10861
|
+
|
10862
|
+
def _deserialize(self, params):
|
10863
|
+
if params.get("BindingInfoList") is not None:
|
10864
|
+
self._BindingInfoList = []
|
10865
|
+
for item in params.get("BindingInfoList"):
|
10866
|
+
obj = RabbitMQBindingListInfo()
|
10867
|
+
obj._deserialize(item)
|
10868
|
+
self._BindingInfoList.append(obj)
|
10869
|
+
self._TotalCount = params.get("TotalCount")
|
10870
|
+
self._RequestId = params.get("RequestId")
|
10871
|
+
|
10872
|
+
|
10579
10873
|
class DescribeRabbitMQExchangesRequest(AbstractModel):
|
10580
10874
|
"""DescribeRabbitMQExchanges请求参数结构体
|
10581
10875
|
|
@@ -13002,7 +13296,7 @@ class DescribeRocketMQEnvironmentRolesRequest(AbstractModel):
|
|
13002
13296
|
r"""
|
13003
13297
|
:param _ClusterId: 必填字段,RocketMQ集群的ID
|
13004
13298
|
:type ClusterId: str
|
13005
|
-
:param _EnvironmentId:
|
13299
|
+
:param _EnvironmentId: 命名空间
|
13006
13300
|
:type EnvironmentId: str
|
13007
13301
|
:param _Offset: 起始下标,不填默认为0。
|
13008
13302
|
:type Offset: int
|
@@ -13010,10 +13304,7 @@ class DescribeRocketMQEnvironmentRolesRequest(AbstractModel):
|
|
13010
13304
|
:type Limit: int
|
13011
13305
|
:param _RoleName: 角色名称
|
13012
13306
|
:type RoleName: str
|
13013
|
-
:param _Filters:
|
13014
|
-
按照角色名进行过滤,精确查询。
|
13015
|
-
类型:String
|
13016
|
-
必选:否
|
13307
|
+
:param _Filters: RoleName按照角色名进行过滤,精确查询。类型:String必选:否
|
13017
13308
|
:type Filters: list of Filter
|
13018
13309
|
"""
|
13019
13310
|
self._ClusterId = None
|
@@ -13860,48 +14151,7 @@ class DescribeRocketMQMsgTraceResponse(AbstractModel):
|
|
13860
14151
|
|
13861
14152
|
def __init__(self):
|
13862
14153
|
r"""
|
13863
|
-
:param _Result:
|
13864
|
-
{
|
13865
|
-
"Stage": "produce",
|
13866
|
-
"Data": {
|
13867
|
-
"ProducerName": "生产者名",
|
13868
|
-
"ProduceTime": "消息生产时间",
|
13869
|
-
"ProducerAddr": "客户端地址",
|
13870
|
-
"Duration": "耗时ms",
|
13871
|
-
"Status": "状态(0:成功,1:失败)"
|
13872
|
-
}
|
13873
|
-
},
|
13874
|
-
{
|
13875
|
-
"Stage": "persist",
|
13876
|
-
"Data": {
|
13877
|
-
"PersistTime": "存储时间",
|
13878
|
-
"Duration": "耗时ms",
|
13879
|
-
"Status": "状态(0:成功,1:失败)"
|
13880
|
-
}
|
13881
|
-
},
|
13882
|
-
{
|
13883
|
-
"Stage": "consume",
|
13884
|
-
"Data": {
|
13885
|
-
"TotalCount": 2,
|
13886
|
-
"RocketMqConsumeLogs": [
|
13887
|
-
{
|
13888
|
-
"ConsumerGroup": "消费组",
|
13889
|
-
"ConsumeModel": "消费模式",
|
13890
|
-
"ConsumerAddr": "消费者地址",
|
13891
|
-
"ConsumeTime": "推送时间",
|
13892
|
-
"Status": "状态(0:已推送未确认, 2:已确认, 3:转入重试, 4:已重试未确认, 5:已转入死信队列)"
|
13893
|
-
},
|
13894
|
-
{
|
13895
|
-
"ConsumerGroup": "消费组",
|
13896
|
-
"ConsumeModel": "消费模式",
|
13897
|
-
"ConsumerAddr": "消费者地址",
|
13898
|
-
"ConsumeTime": "推送时间",
|
13899
|
-
"Status": "状态(0:已推送未确认, 2:已确认, 3:转入重试, 4:已重试未确认, 5:已转入死信队列)"
|
13900
|
-
}
|
13901
|
-
]
|
13902
|
-
}
|
13903
|
-
}
|
13904
|
-
]
|
14154
|
+
:param _Result: 轨迹详情列表
|
13905
14155
|
:type Result: list of TraceResult
|
13906
14156
|
:param _ShowTopicName: 消息轨迹页展示的topic名称
|
13907
14157
|
:type ShowTopicName: str
|
@@ -14435,10 +14685,7 @@ class DescribeRocketMQRolesRequest(AbstractModel):
|
|
14435
14685
|
:type ClusterId: str
|
14436
14686
|
:param _RoleName: 角色名称,模糊查询
|
14437
14687
|
:type RoleName: str
|
14438
|
-
:param _Filters:
|
14439
|
-
按照角色名进行过滤,精确查询。
|
14440
|
-
类型:String
|
14441
|
-
必选:否
|
14688
|
+
:param _Filters: RoleName按照角色名进行过滤,精确查询。类型:String必选:否
|
14442
14689
|
:type Filters: list of Filter
|
14443
14690
|
"""
|
14444
14691
|
self._Offset = None
|
@@ -22081,6 +22328,144 @@ class QueueQuota(AbstractModel):
|
|
22081
22328
|
|
22082
22329
|
|
22083
22330
|
|
22331
|
+
class RabbitMQBindingListInfo(AbstractModel):
|
22332
|
+
"""Rabbitmq路由关系列表成员
|
22333
|
+
|
22334
|
+
"""
|
22335
|
+
|
22336
|
+
def __init__(self):
|
22337
|
+
r"""
|
22338
|
+
:param _BindingId: 路由关系id
|
22339
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22340
|
+
:type BindingId: int
|
22341
|
+
:param _VirtualHost: Vhost参数
|
22342
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22343
|
+
:type VirtualHost: str
|
22344
|
+
:param _Source: 源exchange名称
|
22345
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22346
|
+
:type Source: str
|
22347
|
+
:param _DestinationType: 目标类型,queue或exchange
|
22348
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22349
|
+
:type DestinationType: str
|
22350
|
+
:param _Destination: 目标资源名称
|
22351
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22352
|
+
:type Destination: str
|
22353
|
+
:param _RoutingKey: 绑定key
|
22354
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22355
|
+
:type RoutingKey: str
|
22356
|
+
:param _SourceExchangeType: 源exchange类型
|
22357
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22358
|
+
:type SourceExchangeType: str
|
22359
|
+
:param _CreateTime: 创建时间
|
22360
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22361
|
+
:type CreateTime: str
|
22362
|
+
:param _ModifyTime: 修改时间
|
22363
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22364
|
+
:type ModifyTime: str
|
22365
|
+
"""
|
22366
|
+
self._BindingId = None
|
22367
|
+
self._VirtualHost = None
|
22368
|
+
self._Source = None
|
22369
|
+
self._DestinationType = None
|
22370
|
+
self._Destination = None
|
22371
|
+
self._RoutingKey = None
|
22372
|
+
self._SourceExchangeType = None
|
22373
|
+
self._CreateTime = None
|
22374
|
+
self._ModifyTime = None
|
22375
|
+
|
22376
|
+
@property
|
22377
|
+
def BindingId(self):
|
22378
|
+
return self._BindingId
|
22379
|
+
|
22380
|
+
@BindingId.setter
|
22381
|
+
def BindingId(self, BindingId):
|
22382
|
+
self._BindingId = BindingId
|
22383
|
+
|
22384
|
+
@property
|
22385
|
+
def VirtualHost(self):
|
22386
|
+
return self._VirtualHost
|
22387
|
+
|
22388
|
+
@VirtualHost.setter
|
22389
|
+
def VirtualHost(self, VirtualHost):
|
22390
|
+
self._VirtualHost = VirtualHost
|
22391
|
+
|
22392
|
+
@property
|
22393
|
+
def Source(self):
|
22394
|
+
return self._Source
|
22395
|
+
|
22396
|
+
@Source.setter
|
22397
|
+
def Source(self, Source):
|
22398
|
+
self._Source = Source
|
22399
|
+
|
22400
|
+
@property
|
22401
|
+
def DestinationType(self):
|
22402
|
+
return self._DestinationType
|
22403
|
+
|
22404
|
+
@DestinationType.setter
|
22405
|
+
def DestinationType(self, DestinationType):
|
22406
|
+
self._DestinationType = DestinationType
|
22407
|
+
|
22408
|
+
@property
|
22409
|
+
def Destination(self):
|
22410
|
+
return self._Destination
|
22411
|
+
|
22412
|
+
@Destination.setter
|
22413
|
+
def Destination(self, Destination):
|
22414
|
+
self._Destination = Destination
|
22415
|
+
|
22416
|
+
@property
|
22417
|
+
def RoutingKey(self):
|
22418
|
+
return self._RoutingKey
|
22419
|
+
|
22420
|
+
@RoutingKey.setter
|
22421
|
+
def RoutingKey(self, RoutingKey):
|
22422
|
+
self._RoutingKey = RoutingKey
|
22423
|
+
|
22424
|
+
@property
|
22425
|
+
def SourceExchangeType(self):
|
22426
|
+
return self._SourceExchangeType
|
22427
|
+
|
22428
|
+
@SourceExchangeType.setter
|
22429
|
+
def SourceExchangeType(self, SourceExchangeType):
|
22430
|
+
self._SourceExchangeType = SourceExchangeType
|
22431
|
+
|
22432
|
+
@property
|
22433
|
+
def CreateTime(self):
|
22434
|
+
return self._CreateTime
|
22435
|
+
|
22436
|
+
@CreateTime.setter
|
22437
|
+
def CreateTime(self, CreateTime):
|
22438
|
+
self._CreateTime = CreateTime
|
22439
|
+
|
22440
|
+
@property
|
22441
|
+
def ModifyTime(self):
|
22442
|
+
return self._ModifyTime
|
22443
|
+
|
22444
|
+
@ModifyTime.setter
|
22445
|
+
def ModifyTime(self, ModifyTime):
|
22446
|
+
self._ModifyTime = ModifyTime
|
22447
|
+
|
22448
|
+
|
22449
|
+
def _deserialize(self, params):
|
22450
|
+
self._BindingId = params.get("BindingId")
|
22451
|
+
self._VirtualHost = params.get("VirtualHost")
|
22452
|
+
self._Source = params.get("Source")
|
22453
|
+
self._DestinationType = params.get("DestinationType")
|
22454
|
+
self._Destination = params.get("Destination")
|
22455
|
+
self._RoutingKey = params.get("RoutingKey")
|
22456
|
+
self._SourceExchangeType = params.get("SourceExchangeType")
|
22457
|
+
self._CreateTime = params.get("CreateTime")
|
22458
|
+
self._ModifyTime = params.get("ModifyTime")
|
22459
|
+
memeber_set = set(params.keys())
|
22460
|
+
for name, value in vars(self).items():
|
22461
|
+
property_name = name[1:]
|
22462
|
+
if property_name in memeber_set:
|
22463
|
+
memeber_set.remove(property_name)
|
22464
|
+
if len(memeber_set) > 0:
|
22465
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
22466
|
+
|
22467
|
+
|
22468
|
+
|
22084
22469
|
class RabbitMQClusterAccessInfo(AbstractModel):
|
22085
22470
|
"""RabbitMQ集群访问信息
|
22086
22471
|
|
@@ -25380,7 +25765,7 @@ class RocketMQConsumerTopic(AbstractModel):
|
|
25380
25765
|
r"""
|
25381
25766
|
:param _Topic: 主题名称
|
25382
25767
|
:type Topic: str
|
25383
|
-
:param _Type: 主题类型,
|
25768
|
+
:param _Type: 主题类型,Normal表示普通,GlobalOrder表示全局顺序,PartitionedOrder表示局部顺序,Transaction表示事务,Retry表示重试,DeadLetter表示死信
|
25384
25769
|
:type Type: str
|
25385
25770
|
:param _PartitionNum: 分区数
|
25386
25771
|
:type PartitionNum: int
|
@@ -26649,6 +27034,8 @@ DeadLetter 死信
|
|
26649
27034
|
注意:此字段可能返回 null,表示取不到有效值。
|
26650
27035
|
:type IsOnline: bool
|
26651
27036
|
:param _ConsumeType: 消费类型
|
27037
|
+
0: 广播消费
|
27038
|
+
1: 集群消费
|
26652
27039
|
注意:此字段可能返回 null,表示取不到有效值。
|
26653
27040
|
:type ConsumeType: int
|
26654
27041
|
:param _Consistency: 订阅一致性
|
@@ -29439,7 +29826,7 @@ class VerifyRocketMQConsumeRequest(AbstractModel):
|
|
29439
29826
|
:type MsgId: str
|
29440
29827
|
:param _ClientId: 客户端ID
|
29441
29828
|
:type ClientId: str
|
29442
|
-
:param _TopicName:
|
29829
|
+
:param _TopicName: 主题名称
|
29443
29830
|
:type TopicName: str
|
29444
29831
|
"""
|
29445
29832
|
self._ClusterId = None
|
@@ -739,6 +739,29 @@ class TdmqClient(AbstractClient):
|
|
739
739
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
740
740
|
|
741
741
|
|
742
|
+
def DeleteRabbitMQBinding(self, request):
|
743
|
+
"""解绑RabbitMQ路由关系
|
744
|
+
|
745
|
+
:param request: Request instance for DeleteRabbitMQBinding.
|
746
|
+
:type request: :class:`tencentcloud.tdmq.v20200217.models.DeleteRabbitMQBindingRequest`
|
747
|
+
:rtype: :class:`tencentcloud.tdmq.v20200217.models.DeleteRabbitMQBindingResponse`
|
748
|
+
|
749
|
+
"""
|
750
|
+
try:
|
751
|
+
params = request._serialize()
|
752
|
+
headers = request.headers
|
753
|
+
body = self.call("DeleteRabbitMQBinding", params, headers=headers)
|
754
|
+
response = json.loads(body)
|
755
|
+
model = models.DeleteRabbitMQBindingResponse()
|
756
|
+
model._deserialize(response["Response"])
|
757
|
+
return model
|
758
|
+
except Exception as e:
|
759
|
+
if isinstance(e, TencentCloudSDKException):
|
760
|
+
raise
|
761
|
+
else:
|
762
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
763
|
+
|
764
|
+
|
742
765
|
def DeleteRabbitMQUser(self, request):
|
743
766
|
"""删除RabbitMQ的用户
|
744
767
|
|
@@ -1592,6 +1615,29 @@ class TdmqClient(AbstractClient):
|
|
1592
1615
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1593
1616
|
|
1594
1617
|
|
1618
|
+
def DescribeRabbitMQBindings(self, request):
|
1619
|
+
"""查询RabbitMQ路由关系列表
|
1620
|
+
|
1621
|
+
:param request: Request instance for DescribeRabbitMQBindings.
|
1622
|
+
:type request: :class:`tencentcloud.tdmq.v20200217.models.DescribeRabbitMQBindingsRequest`
|
1623
|
+
:rtype: :class:`tencentcloud.tdmq.v20200217.models.DescribeRabbitMQBindingsResponse`
|
1624
|
+
|
1625
|
+
"""
|
1626
|
+
try:
|
1627
|
+
params = request._serialize()
|
1628
|
+
headers = request.headers
|
1629
|
+
body = self.call("DescribeRabbitMQBindings", params, headers=headers)
|
1630
|
+
response = json.loads(body)
|
1631
|
+
model = models.DescribeRabbitMQBindingsResponse()
|
1632
|
+
model._deserialize(response["Response"])
|
1633
|
+
return model
|
1634
|
+
except Exception as e:
|
1635
|
+
if isinstance(e, TencentCloudSDKException):
|
1636
|
+
raise
|
1637
|
+
else:
|
1638
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1639
|
+
|
1640
|
+
|
1595
1641
|
def DescribeRabbitMQExchanges(self, request):
|
1596
1642
|
"""查询RabbitMQ exchange 列表
|
1597
1643
|
|