tencentcloud-sdk-python 3.0.1254__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.
Files changed (47) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/captcha/v20190722/models.py +16 -3
  3. tencentcloud/cdb/v20170320/models.py +14 -0
  4. tencentcloud/cfw/v20190904/cfw_client.py +6 -2
  5. tencentcloud/cfw/v20190904/models.py +83 -28
  6. tencentcloud/clb/v20180317/models.py +25 -1
  7. tencentcloud/cvm/v20170312/models.py +0 -1
  8. tencentcloud/cwp/v20180228/cwp_client.py +6 -2
  9. tencentcloud/cwp/v20180228/models.py +75 -26
  10. tencentcloud/cynosdb/v20190107/cynosdb_client.py +39 -39
  11. tencentcloud/cynosdb/v20190107/models.py +27 -0
  12. tencentcloud/emr/v20190103/emr_client.py +1 -1
  13. tencentcloud/ess/v20201111/ess_client.py +9 -8
  14. tencentcloud/ess/v20201111/models.py +26 -0
  15. tencentcloud/essbasic/v20210526/models.py +26 -0
  16. tencentcloud/gaap/v20180529/gaap_client.py +1 -1
  17. tencentcloud/gaap/v20180529/models.py +67 -39
  18. tencentcloud/hunyuan/v20230901/models.py +1 -1
  19. tencentcloud/lcic/v20220817/models.py +4 -0
  20. tencentcloud/lighthouse/v20200324/errorcodes.py +6 -0
  21. tencentcloud/monitor/v20180724/models.py +25 -0
  22. tencentcloud/mqtt/v20240516/models.py +4 -2
  23. tencentcloud/ocr/v20181119/models.py +1 -0
  24. tencentcloud/pts/v20210728/models.py +13 -0
  25. tencentcloud/redis/v20180412/models.py +3 -1
  26. tencentcloud/redis/v20180412/redis_client.py +1 -1
  27. tencentcloud/ses/v20201002/models.py +0 -10
  28. tencentcloud/sms/v20190711/models.py +8 -10
  29. tencentcloud/sms/v20210111/models.py +10 -13
  30. tencentcloud/sms/v20210111/sms_client.py +1 -1
  31. tencentcloud/taf/v20200210/models.py +63 -0
  32. tencentcloud/tdmq/v20200217/models.py +600 -55
  33. tencentcloud/tdmq/v20200217/tdmq_client.py +69 -0
  34. tencentcloud/trocket/v20230308/models.py +185 -115
  35. tencentcloud/trocket/v20230308/trocket_client.py +8 -8
  36. tencentcloud/tsi/v20210325/models.py +135 -0
  37. tencentcloud/vod/v20180717/models.py +878 -7
  38. tencentcloud/vpc/v20170312/models.py +12 -12
  39. tencentcloud/waf/v20180125/models.py +134 -0
  40. tencentcloud/waf/v20180125/waf_client.py +23 -0
  41. tencentcloud/wedata/v20210820/models.py +592 -0
  42. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  43. {tencentcloud_sdk_python-3.0.1254.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/METADATA +1 -1
  44. {tencentcloud_sdk_python-3.0.1254.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/RECORD +47 -47
  45. {tencentcloud_sdk_python-3.0.1254.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/LICENSE +0 -0
  46. {tencentcloud_sdk_python-3.0.1254.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/WHEEL +0 -0
  47. {tencentcloud_sdk_python-3.0.1254.dist-info → tencentcloud_sdk_python-3.0.1256.dist-info}/top_level.txt +0 -0
@@ -3736,6 +3736,163 @@ class CreateProClusterResponse(AbstractModel):
3736
3736
  self._RequestId = params.get("RequestId")
3737
3737
 
3738
3738
 
3739
+ class CreateRabbitMQBindingRequest(AbstractModel):
3740
+ """CreateRabbitMQBinding请求参数结构体
3741
+
3742
+ """
3743
+
3744
+ def __init__(self):
3745
+ r"""
3746
+ :param _InstanceId: 实例Id
3747
+ :type InstanceId: str
3748
+ :param _VirtualHost: Vhost参数
3749
+ :type VirtualHost: str
3750
+ :param _Source: 源exchange
3751
+ :type Source: str
3752
+ :param _DestinationType: 目标类型,取值queue或exchange
3753
+ :type DestinationType: str
3754
+ :param _Destination: 目标
3755
+ :type Destination: str
3756
+ :param _RoutingKey: 绑定key
3757
+ :type RoutingKey: str
3758
+ """
3759
+ self._InstanceId = None
3760
+ self._VirtualHost = None
3761
+ self._Source = None
3762
+ self._DestinationType = None
3763
+ self._Destination = None
3764
+ self._RoutingKey = None
3765
+
3766
+ @property
3767
+ def InstanceId(self):
3768
+ return self._InstanceId
3769
+
3770
+ @InstanceId.setter
3771
+ def InstanceId(self, InstanceId):
3772
+ self._InstanceId = InstanceId
3773
+
3774
+ @property
3775
+ def VirtualHost(self):
3776
+ return self._VirtualHost
3777
+
3778
+ @VirtualHost.setter
3779
+ def VirtualHost(self, VirtualHost):
3780
+ self._VirtualHost = VirtualHost
3781
+
3782
+ @property
3783
+ def Source(self):
3784
+ return self._Source
3785
+
3786
+ @Source.setter
3787
+ def Source(self, Source):
3788
+ self._Source = Source
3789
+
3790
+ @property
3791
+ def DestinationType(self):
3792
+ return self._DestinationType
3793
+
3794
+ @DestinationType.setter
3795
+ def DestinationType(self, DestinationType):
3796
+ self._DestinationType = DestinationType
3797
+
3798
+ @property
3799
+ def Destination(self):
3800
+ return self._Destination
3801
+
3802
+ @Destination.setter
3803
+ def Destination(self, Destination):
3804
+ self._Destination = Destination
3805
+
3806
+ @property
3807
+ def RoutingKey(self):
3808
+ return self._RoutingKey
3809
+
3810
+ @RoutingKey.setter
3811
+ def RoutingKey(self, RoutingKey):
3812
+ self._RoutingKey = RoutingKey
3813
+
3814
+
3815
+ def _deserialize(self, params):
3816
+ self._InstanceId = params.get("InstanceId")
3817
+ self._VirtualHost = params.get("VirtualHost")
3818
+ self._Source = params.get("Source")
3819
+ self._DestinationType = params.get("DestinationType")
3820
+ self._Destination = params.get("Destination")
3821
+ self._RoutingKey = params.get("RoutingKey")
3822
+ memeber_set = set(params.keys())
3823
+ for name, value in vars(self).items():
3824
+ property_name = name[1:]
3825
+ if property_name in memeber_set:
3826
+ memeber_set.remove(property_name)
3827
+ if len(memeber_set) > 0:
3828
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
3829
+
3830
+
3831
+
3832
+ class CreateRabbitMQBindingResponse(AbstractModel):
3833
+ """CreateRabbitMQBinding返回参数结构体
3834
+
3835
+ """
3836
+
3837
+ def __init__(self):
3838
+ r"""
3839
+ :param _InstanceId: 队列名称
3840
+ 注意:此字段可能返回 null,表示取不到有效值。
3841
+ :type InstanceId: str
3842
+ :param _VirtualHost: vhost参数
3843
+ 注意:此字段可能返回 null,表示取不到有效值。
3844
+ :type VirtualHost: str
3845
+ :param _BindingId: 路由关系Id
3846
+ 注意:此字段可能返回 null,表示取不到有效值。
3847
+ :type BindingId: int
3848
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3849
+ :type RequestId: str
3850
+ """
3851
+ self._InstanceId = None
3852
+ self._VirtualHost = None
3853
+ self._BindingId = None
3854
+ self._RequestId = None
3855
+
3856
+ @property
3857
+ def InstanceId(self):
3858
+ return self._InstanceId
3859
+
3860
+ @InstanceId.setter
3861
+ def InstanceId(self, InstanceId):
3862
+ self._InstanceId = InstanceId
3863
+
3864
+ @property
3865
+ def VirtualHost(self):
3866
+ return self._VirtualHost
3867
+
3868
+ @VirtualHost.setter
3869
+ def VirtualHost(self, VirtualHost):
3870
+ self._VirtualHost = VirtualHost
3871
+
3872
+ @property
3873
+ def BindingId(self):
3874
+ return self._BindingId
3875
+
3876
+ @BindingId.setter
3877
+ def BindingId(self, BindingId):
3878
+ self._BindingId = BindingId
3879
+
3880
+ @property
3881
+ def RequestId(self):
3882
+ return self._RequestId
3883
+
3884
+ @RequestId.setter
3885
+ def RequestId(self, RequestId):
3886
+ self._RequestId = RequestId
3887
+
3888
+
3889
+ def _deserialize(self, params):
3890
+ self._InstanceId = params.get("InstanceId")
3891
+ self._VirtualHost = params.get("VirtualHost")
3892
+ self._BindingId = params.get("BindingId")
3893
+ self._RequestId = params.get("RequestId")
3894
+
3895
+
3739
3896
  class CreateRabbitMQUserRequest(AbstractModel):
3740
3897
  """CreateRabbitMQUser请求参数结构体
3741
3898
 
@@ -4355,7 +4512,7 @@ class CreateRocketMQEnvironmentRoleRequest(AbstractModel):
4355
4512
 
4356
4513
  def __init__(self):
4357
4514
  r"""
4358
- :param _EnvironmentId: 环境(命名空间)名称。
4515
+ :param _EnvironmentId: 命名空间
4359
4516
  :type EnvironmentId: str
4360
4517
  :param _RoleName: 角色名称。
4361
4518
  :type RoleName: str
@@ -6139,6 +6296,127 @@ class DeleteProClusterResponse(AbstractModel):
6139
6296
  self._RequestId = params.get("RequestId")
6140
6297
 
6141
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
+
6142
6420
  class DeleteRabbitMQUserRequest(AbstractModel):
6143
6421
  """DeleteRabbitMQUser请求参数结构体
6144
6422
 
@@ -6444,7 +6722,7 @@ class DeleteRocketMQEnvironmentRolesRequest(AbstractModel):
6444
6722
  :type EnvironmentId: str
6445
6723
  :param _RoleNames: 角色名称数组。
6446
6724
  :type RoleNames: list of str
6447
- :param _ClusterId: 必填字段,集群的ID
6725
+ :param _ClusterId: 集群的ID
6448
6726
  :type ClusterId: str
6449
6727
  """
6450
6728
  self._EnvironmentId = None
@@ -10419,6 +10697,179 @@ class DescribePulsarProInstancesResponse(AbstractModel):
10419
10697
  self._RequestId = params.get("RequestId")
10420
10698
 
10421
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
+
10422
10873
  class DescribeRabbitMQExchangesRequest(AbstractModel):
10423
10874
  """DescribeRabbitMQExchanges请求参数结构体
10424
10875
 
@@ -12845,7 +13296,7 @@ class DescribeRocketMQEnvironmentRolesRequest(AbstractModel):
12845
13296
  r"""
12846
13297
  :param _ClusterId: 必填字段,RocketMQ集群的ID
12847
13298
  :type ClusterId: str
12848
- :param _EnvironmentId: 环境(命名空间)名称。
13299
+ :param _EnvironmentId: 命名空间
12849
13300
  :type EnvironmentId: str
12850
13301
  :param _Offset: 起始下标,不填默认为0。
12851
13302
  :type Offset: int
@@ -12853,10 +13304,7 @@ class DescribeRocketMQEnvironmentRolesRequest(AbstractModel):
12853
13304
  :type Limit: int
12854
13305
  :param _RoleName: 角色名称
12855
13306
  :type RoleName: str
12856
- :param _Filters: * RoleName
12857
- 按照角色名进行过滤,精确查询。
12858
- 类型:String
12859
- 必选:否
13307
+ :param _Filters: RoleName按照角色名进行过滤,精确查询。类型:String必选:否
12860
13308
  :type Filters: list of Filter
12861
13309
  """
12862
13310
  self._ClusterId = None
@@ -13703,48 +14151,7 @@ class DescribeRocketMQMsgTraceResponse(AbstractModel):
13703
14151
 
13704
14152
  def __init__(self):
13705
14153
  r"""
13706
- :param _Result: [
13707
- {
13708
- "Stage": "produce",
13709
- "Data": {
13710
- "ProducerName": "生产者名",
13711
- "ProduceTime": "消息生产时间",
13712
- "ProducerAddr": "客户端地址",
13713
- "Duration": "耗时ms",
13714
- "Status": "状态(0:成功,1:失败)"
13715
- }
13716
- },
13717
- {
13718
- "Stage": "persist",
13719
- "Data": {
13720
- "PersistTime": "存储时间",
13721
- "Duration": "耗时ms",
13722
- "Status": "状态(0:成功,1:失败)"
13723
- }
13724
- },
13725
- {
13726
- "Stage": "consume",
13727
- "Data": {
13728
- "TotalCount": 2,
13729
- "RocketMqConsumeLogs": [
13730
- {
13731
- "ConsumerGroup": "消费组",
13732
- "ConsumeModel": "消费模式",
13733
- "ConsumerAddr": "消费者地址",
13734
- "ConsumeTime": "推送时间",
13735
- "Status": "状态(0:已推送未确认, 2:已确认, 3:转入重试, 4:已重试未确认, 5:已转入死信队列)"
13736
- },
13737
- {
13738
- "ConsumerGroup": "消费组",
13739
- "ConsumeModel": "消费模式",
13740
- "ConsumerAddr": "消费者地址",
13741
- "ConsumeTime": "推送时间",
13742
- "Status": "状态(0:已推送未确认, 2:已确认, 3:转入重试, 4:已重试未确认, 5:已转入死信队列)"
13743
- }
13744
- ]
13745
- }
13746
- }
13747
- ]
14154
+ :param _Result: 轨迹详情列表
13748
14155
  :type Result: list of TraceResult
13749
14156
  :param _ShowTopicName: 消息轨迹页展示的topic名称
13750
14157
  :type ShowTopicName: str
@@ -14278,10 +14685,7 @@ class DescribeRocketMQRolesRequest(AbstractModel):
14278
14685
  :type ClusterId: str
14279
14686
  :param _RoleName: 角色名称,模糊查询
14280
14687
  :type RoleName: str
14281
- :param _Filters: * RoleName
14282
- 按照角色名进行过滤,精确查询。
14283
- 类型:String
14284
- 必选:否
14688
+ :param _Filters: RoleName按照角色名进行过滤,精确查询。类型:String必选:否
14285
14689
  :type Filters: list of Filter
14286
14690
  """
14287
14691
  self._Offset = None
@@ -15939,6 +16343,7 @@ class DescribeRocketMQVipInstancesRequest(AbstractModel):
15939
16343
  :param _Filters: 查询条件过滤器,支持的查询条件如下:
15940
16344
  instanceIds - 实例ID
15941
16345
  instanceName - 实例名称
16346
+ status - 实例状态
15942
16347
  :type Filters: list of Filter
15943
16348
  :param _Limit: 查询数目上限,默认20
15944
16349
  :type Limit: int
@@ -21923,6 +22328,144 @@ class QueueQuota(AbstractModel):
21923
22328
 
21924
22329
 
21925
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
+
21926
22469
  class RabbitMQClusterAccessInfo(AbstractModel):
21927
22470
  """RabbitMQ集群访问信息
21928
22471
 
@@ -25222,7 +25765,7 @@ class RocketMQConsumerTopic(AbstractModel):
25222
25765
  r"""
25223
25766
  :param _Topic: 主题名称
25224
25767
  :type Topic: str
25225
- :param _Type: 主题类型,Default表示普通,GlobalOrder表示全局顺序,PartitionedOrder表示局部顺序,Transaction表示事务,Retry表示重试,DeadLetter表示死信
25768
+ :param _Type: 主题类型,Normal表示普通,GlobalOrder表示全局顺序,PartitionedOrder表示局部顺序,Transaction表示事务,Retry表示重试,DeadLetter表示死信
25226
25769
  :type Type: str
25227
25770
  :param _PartitionNum: 分区数
25228
25771
  :type PartitionNum: int
@@ -26491,6 +27034,8 @@ DeadLetter 死信
26491
27034
  注意:此字段可能返回 null,表示取不到有效值。
26492
27035
  :type IsOnline: bool
26493
27036
  :param _ConsumeType: 消费类型
27037
+ 0: 广播消费
27038
+ 1: 集群消费
26494
27039
  注意:此字段可能返回 null,表示取不到有效值。
26495
27040
  :type ConsumeType: int
26496
27041
  :param _Consistency: 订阅一致性
@@ -29281,7 +29826,7 @@ class VerifyRocketMQConsumeRequest(AbstractModel):
29281
29826
  :type MsgId: str
29282
29827
  :param _ClientId: 客户端ID
29283
29828
  :type ClientId: str
29284
- :param _TopicName: topic名称
29829
+ :param _TopicName: 主题名称
29285
29830
  :type TopicName: str
29286
29831
  """
29287
29832
  self._ClusterId = None