tencentcloud-sdk-python 3.0.1410__py2.py3-none-any.whl → 3.0.1411__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 (37) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ams/v20201229/models.py +16 -189
  3. tencentcloud/apm/v20210622/models.py +15 -0
  4. tencentcloud/cdb/v20170320/cdb_client.py +2 -2
  5. tencentcloud/cdb/v20170320/models.py +20 -12
  6. tencentcloud/ctem/__init__.py +0 -0
  7. tencentcloud/ctem/v20231128/__init__.py +0 -0
  8. tencentcloud/ctem/v20231128/ctem_client.py +601 -0
  9. tencentcloud/ctem/v20231128/errorcodes.py +75 -0
  10. tencentcloud/ctem/v20231128/models.py +10459 -0
  11. tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
  12. tencentcloud/dlc/v20210125/dlc_client.py +3 -1
  13. tencentcloud/dlc/v20210125/models.py +24 -7
  14. tencentcloud/dnspod/v20210323/errorcodes.py +1 -1
  15. tencentcloud/hunyuan/v20230901/models.py +17 -2
  16. tencentcloud/ims/v20201229/models.py +2 -30
  17. tencentcloud/iotexplorer/v20190423/models.py +4 -4
  18. tencentcloud/iotvideo/v20201215/models.py +2 -2
  19. tencentcloud/iotvideo/v20211125/models.py +2 -2
  20. tencentcloud/lke/v20231130/models.py +32 -2
  21. tencentcloud/mongodb/v20190725/models.py +15 -0
  22. tencentcloud/mps/v20190612/models.py +217 -18
  23. tencentcloud/mqtt/v20240516/errorcodes.py +3 -0
  24. tencentcloud/mqtt/v20240516/models.py +255 -0
  25. tencentcloud/mqtt/v20240516/mqtt_client.py +23 -0
  26. tencentcloud/redis/v20180412/models.py +6 -6
  27. tencentcloud/tke/v20180525/models.py +19 -0
  28. tencentcloud/trocket/v20230308/models.py +164 -130
  29. tencentcloud/trocket/v20230308/trocket_client.py +2 -2
  30. tencentcloud/vm/v20210922/models.py +45 -172
  31. tencentcloud/wedata/v20210820/models.py +239 -0
  32. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  33. {tencentcloud_sdk_python-3.0.1410.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/METADATA +1 -1
  34. {tencentcloud_sdk_python-3.0.1410.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/RECORD +37 -32
  35. {tencentcloud_sdk_python-3.0.1410.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/LICENSE +0 -0
  36. {tencentcloud_sdk_python-3.0.1410.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/WHEEL +0 -0
  37. {tencentcloud_sdk_python-3.0.1410.dist-info → tencentcloud_sdk_python-3.0.1411.dist-info}/top_level.txt +0 -0
@@ -543,18 +543,18 @@ class CreateConsumerGroupRequest(AbstractModel):
543
543
 
544
544
  def __init__(self):
545
545
  r"""
546
- :param _InstanceId: 集群ID
546
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
547
547
  :type InstanceId: str
548
- :param _MaxRetryTimes: 最大重试次数
548
+ :param _MaxRetryTimes: 最大重试次数,取值范围0~1000
549
549
  :type MaxRetryTimes: int
550
550
  :param _ConsumeEnable: 是否开启消费
551
551
  :type ConsumeEnable: bool
552
552
  :param _ConsumeMessageOrderly: 顺序投递:true
553
553
  并发投递:false
554
554
  :type ConsumeMessageOrderly: bool
555
- :param _ConsumerGroup: 消费组名称
555
+ :param _ConsumerGroup: 消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
556
556
  :type ConsumerGroup: str
557
- :param _Remark: 备注
557
+ :param _Remark: 备注信息,最多 128 个字符
558
558
  :type Remark: str
559
559
  :param _TagList: 标签列表
560
560
  :type TagList: list of Tag
@@ -569,7 +569,7 @@ class CreateConsumerGroupRequest(AbstractModel):
569
569
 
570
570
  @property
571
571
  def InstanceId(self):
572
- """集群ID
572
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
573
573
  :rtype: str
574
574
  """
575
575
  return self._InstanceId
@@ -580,7 +580,7 @@ class CreateConsumerGroupRequest(AbstractModel):
580
580
 
581
581
  @property
582
582
  def MaxRetryTimes(self):
583
- """最大重试次数
583
+ """最大重试次数,取值范围0~1000
584
584
  :rtype: int
585
585
  """
586
586
  return self._MaxRetryTimes
@@ -614,7 +614,7 @@ class CreateConsumerGroupRequest(AbstractModel):
614
614
 
615
615
  @property
616
616
  def ConsumerGroup(self):
617
- """消费组名称
617
+ """消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
618
618
  :rtype: str
619
619
  """
620
620
  return self._ConsumerGroup
@@ -625,7 +625,7 @@ class CreateConsumerGroupRequest(AbstractModel):
625
625
 
626
626
  @property
627
627
  def Remark(self):
628
- """备注
628
+ """备注信息,最多 128 个字符
629
629
  :rtype: str
630
630
  """
631
631
  return self._Remark
@@ -1699,7 +1699,7 @@ class CreateRoleRequest(AbstractModel):
1699
1699
 
1700
1700
  def __init__(self):
1701
1701
  r"""
1702
- :param _InstanceId: 集群ID
1702
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
1703
1703
  :type InstanceId: str
1704
1704
  :param _Role: 角色名称
1705
1705
  :type Role: str
@@ -1711,7 +1711,7 @@ class CreateRoleRequest(AbstractModel):
1711
1711
  :type Remark: str
1712
1712
  :param _PermType: 权限类型,默认按集群授权(Cluster:集群级别;TopicAndGroup:主题&消费组级别)
1713
1713
  :type PermType: str
1714
- :param _DetailedPerms: Topic&Group维度权限配置
1714
+ :param _DetailedPerms: Topic&Group维度权限配置,权限类型为 TopicAndGroup 时必填
1715
1715
  :type DetailedPerms: list of DetailedRolePerm
1716
1716
  """
1717
1717
  self._InstanceId = None
@@ -1724,7 +1724,7 @@ class CreateRoleRequest(AbstractModel):
1724
1724
 
1725
1725
  @property
1726
1726
  def InstanceId(self):
1727
- """集群ID
1727
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
1728
1728
  :rtype: str
1729
1729
  """
1730
1730
  return self._InstanceId
@@ -1790,7 +1790,7 @@ class CreateRoleRequest(AbstractModel):
1790
1790
 
1791
1791
  @property
1792
1792
  def DetailedPerms(self):
1793
- """Topic&Group维度权限配置
1793
+ """Topic&Group维度权限配置,权限类型为 TopicAndGroup 时必填
1794
1794
  :rtype: list of DetailedRolePerm
1795
1795
  """
1796
1796
  return self._DetailedPerms
@@ -1873,9 +1873,9 @@ class CreateTopicRequest(AbstractModel):
1873
1873
 
1874
1874
  def __init__(self):
1875
1875
  r"""
1876
- :param _InstanceId: 集群ID
1876
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
1877
1877
  :type InstanceId: str
1878
- :param _Topic: 主题名称
1878
+ :param _Topic: 主题名称,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口或控制台获得。
1879
1879
  :type Topic: str
1880
1880
  :param _TopicType: 主题类型
1881
1881
  UNSPECIFIED:未指定,
@@ -1884,11 +1884,11 @@ FIFO:顺序消息,
1884
1884
  DELAY:延时消息,
1885
1885
  TRANSACTION:事务消息
1886
1886
  :type TopicType: str
1887
- :param _QueueNum: 队列数量
1887
+ :param _QueueNum: 队列数量,取值范围3~16
1888
1888
  :type QueueNum: int
1889
- :param _Remark: 备注
1889
+ :param _Remark: 备注,最多 128 字符
1890
1890
  :type Remark: str
1891
- :param _MsgTTL: 消息保留时长
1891
+ :param _MsgTTL: 消息保留时长(单位:小时)
1892
1892
  :type MsgTTL: int
1893
1893
  :param _TagList: 标签列表
1894
1894
  :type TagList: list of Tag
@@ -1903,7 +1903,7 @@ TRANSACTION:事务消息
1903
1903
 
1904
1904
  @property
1905
1905
  def InstanceId(self):
1906
- """集群ID
1906
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
1907
1907
  :rtype: str
1908
1908
  """
1909
1909
  return self._InstanceId
@@ -1914,7 +1914,7 @@ TRANSACTION:事务消息
1914
1914
 
1915
1915
  @property
1916
1916
  def Topic(self):
1917
- """主题名称
1917
+ """主题名称,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口或控制台获得。
1918
1918
  :rtype: str
1919
1919
  """
1920
1920
  return self._Topic
@@ -1941,7 +1941,7 @@ TRANSACTION:事务消息
1941
1941
 
1942
1942
  @property
1943
1943
  def QueueNum(self):
1944
- """队列数量
1944
+ """队列数量,取值范围3~16
1945
1945
  :rtype: int
1946
1946
  """
1947
1947
  return self._QueueNum
@@ -1952,7 +1952,7 @@ TRANSACTION:事务消息
1952
1952
 
1953
1953
  @property
1954
1954
  def Remark(self):
1955
- """备注
1955
+ """备注,最多 128 字符
1956
1956
  :rtype: str
1957
1957
  """
1958
1958
  return self._Remark
@@ -1963,7 +1963,7 @@ TRANSACTION:事务消息
1963
1963
 
1964
1964
  @property
1965
1965
  def MsgTTL(self):
1966
- """消息保留时长
1966
+ """消息保留时长(单位:小时)
1967
1967
  :rtype: int
1968
1968
  """
1969
1969
  return self._MsgTTL
@@ -2127,9 +2127,9 @@ class DeleteConsumerGroupRequest(AbstractModel):
2127
2127
 
2128
2128
  def __init__(self):
2129
2129
  r"""
2130
- :param _InstanceId: 集群ID
2130
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
2131
2131
  :type InstanceId: str
2132
- :param _ConsumerGroup: 消费组名称
2132
+ :param _ConsumerGroup: 消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
2133
2133
  :type ConsumerGroup: str
2134
2134
  """
2135
2135
  self._InstanceId = None
@@ -2137,7 +2137,7 @@ class DeleteConsumerGroupRequest(AbstractModel):
2137
2137
 
2138
2138
  @property
2139
2139
  def InstanceId(self):
2140
- """集群ID
2140
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
2141
2141
  :rtype: str
2142
2142
  """
2143
2143
  return self._InstanceId
@@ -2148,7 +2148,7 @@ class DeleteConsumerGroupRequest(AbstractModel):
2148
2148
 
2149
2149
  @property
2150
2150
  def ConsumerGroup(self):
2151
- """消费组名称
2151
+ """消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
2152
2152
  :rtype: str
2153
2153
  """
2154
2154
  return self._ConsumerGroup
@@ -2556,9 +2556,9 @@ class DeleteRoleRequest(AbstractModel):
2556
2556
 
2557
2557
  def __init__(self):
2558
2558
  r"""
2559
- :param _InstanceId: 集群ID
2559
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
2560
2560
  :type InstanceId: str
2561
- :param _Role: 角色名称
2561
+ :param _Role: 角色名称,从 [DescribeRoleList](https://cloud.tencent.com/document/api/1493/98862) 接口或控制台获得。
2562
2562
  :type Role: str
2563
2563
  """
2564
2564
  self._InstanceId = None
@@ -2566,7 +2566,7 @@ class DeleteRoleRequest(AbstractModel):
2566
2566
 
2567
2567
  @property
2568
2568
  def InstanceId(self):
2569
- """集群ID
2569
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
2570
2570
  :rtype: str
2571
2571
  """
2572
2572
  return self._InstanceId
@@ -2577,7 +2577,7 @@ class DeleteRoleRequest(AbstractModel):
2577
2577
 
2578
2578
  @property
2579
2579
  def Role(self):
2580
- """角色名称
2580
+ """角色名称,从 [DescribeRoleList](https://cloud.tencent.com/document/api/1493/98862) 接口或控制台获得。
2581
2581
  :rtype: str
2582
2582
  """
2583
2583
  return self._Role
@@ -2701,9 +2701,9 @@ class DeleteTopicRequest(AbstractModel):
2701
2701
 
2702
2702
  def __init__(self):
2703
2703
  r"""
2704
- :param _InstanceId: 集群ID
2704
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
2705
2705
  :type InstanceId: str
2706
- :param _Topic: 主题名称
2706
+ :param _Topic: 主题名称,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口或控制台获得。
2707
2707
  :type Topic: str
2708
2708
  """
2709
2709
  self._InstanceId = None
@@ -2711,7 +2711,7 @@ class DeleteTopicRequest(AbstractModel):
2711
2711
 
2712
2712
  @property
2713
2713
  def InstanceId(self):
2714
- """集群ID
2714
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
2715
2715
  :rtype: str
2716
2716
  """
2717
2717
  return self._InstanceId
@@ -2722,7 +2722,7 @@ class DeleteTopicRequest(AbstractModel):
2722
2722
 
2723
2723
  @property
2724
2724
  def Topic(self):
2725
- """主题名称
2725
+ """主题名称,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口或控制台获得。
2726
2726
  :rtype: str
2727
2727
  """
2728
2728
  return self._Topic
@@ -2780,15 +2780,15 @@ class DescribeConsumerClientListRequest(AbstractModel):
2780
2780
 
2781
2781
  def __init__(self):
2782
2782
  r"""
2783
- :param _InstanceId: 集群ID
2783
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
2784
2784
  :type InstanceId: str
2785
- :param _ConsumerGroup: 消费组名称
2785
+ :param _ConsumerGroup: 消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
2786
2786
  :type ConsumerGroup: str
2787
- :param _Filters: 查询条件列表
2787
+ :param _Filters: 过滤查询条件列表,请在引用此参数的API说明中了解使用方法。
2788
2788
  :type Filters: list of Filter
2789
- :param _Offset: 查询起始位置
2789
+ :param _Offset: 查询起始位置,默认为0。
2790
2790
  :type Offset: int
2791
- :param _Limit: 查询结果限制数量
2791
+ :param _Limit: 查询结果限制数量,默认20。
2792
2792
  :type Limit: int
2793
2793
  """
2794
2794
  self._InstanceId = None
@@ -2799,7 +2799,7 @@ class DescribeConsumerClientListRequest(AbstractModel):
2799
2799
 
2800
2800
  @property
2801
2801
  def InstanceId(self):
2802
- """集群ID
2802
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
2803
2803
  :rtype: str
2804
2804
  """
2805
2805
  return self._InstanceId
@@ -2810,7 +2810,7 @@ class DescribeConsumerClientListRequest(AbstractModel):
2810
2810
 
2811
2811
  @property
2812
2812
  def ConsumerGroup(self):
2813
- """消费组名称
2813
+ """消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
2814
2814
  :rtype: str
2815
2815
  """
2816
2816
  return self._ConsumerGroup
@@ -2821,7 +2821,7 @@ class DescribeConsumerClientListRequest(AbstractModel):
2821
2821
 
2822
2822
  @property
2823
2823
  def Filters(self):
2824
- """查询条件列表
2824
+ """过滤查询条件列表,请在引用此参数的API说明中了解使用方法。
2825
2825
  :rtype: list of Filter
2826
2826
  """
2827
2827
  return self._Filters
@@ -2832,7 +2832,7 @@ class DescribeConsumerClientListRequest(AbstractModel):
2832
2832
 
2833
2833
  @property
2834
2834
  def Offset(self):
2835
- """查询起始位置
2835
+ """查询起始位置,默认为0。
2836
2836
  :rtype: int
2837
2837
  """
2838
2838
  return self._Offset
@@ -2843,7 +2843,7 @@ class DescribeConsumerClientListRequest(AbstractModel):
2843
2843
 
2844
2844
  @property
2845
2845
  def Limit(self):
2846
- """查询结果限制数量
2846
+ """查询结果限制数量,默认20。
2847
2847
  :rtype: int
2848
2848
  """
2849
2849
  return self._Limit
@@ -2944,17 +2944,17 @@ class DescribeConsumerClientRequest(AbstractModel):
2944
2944
 
2945
2945
  def __init__(self):
2946
2946
  r"""
2947
- :param _InstanceId: 集群ID
2947
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
2948
2948
  :type InstanceId: str
2949
- :param _ClientId: 客户端ID
2949
+ :param _ClientId: 客户端ID,从 [DescribeConsumerClientList](https://cloud.tencent.com/document/api/1493/120140) 接口中的 [ConsumerClient](https://cloud.tencent.com/document/api/1493/96031#ConsumerClient) 出参中获得。
2950
2950
  :type ClientId: str
2951
- :param _Filters: 查询条件列表
2951
+ :param _Filters: 过滤查询条件列表,请在引用此参数的API说明中了解使用方法。
2952
2952
  :type Filters: list of Filter
2953
- :param _Offset: 查询起始位置
2953
+ :param _Offset: 查询起始位置,默认为0。
2954
2954
  :type Offset: int
2955
- :param _Limit: 查询结果限制数量
2955
+ :param _Limit: 查询结果限制数量,默认20。
2956
2956
  :type Limit: int
2957
- :param _ConsumerGroup: 消费组名称
2957
+ :param _ConsumerGroup: 消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
2958
2958
  :type ConsumerGroup: str
2959
2959
  """
2960
2960
  self._InstanceId = None
@@ -2966,7 +2966,7 @@ class DescribeConsumerClientRequest(AbstractModel):
2966
2966
 
2967
2967
  @property
2968
2968
  def InstanceId(self):
2969
- """集群ID
2969
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
2970
2970
  :rtype: str
2971
2971
  """
2972
2972
  return self._InstanceId
@@ -2977,7 +2977,7 @@ class DescribeConsumerClientRequest(AbstractModel):
2977
2977
 
2978
2978
  @property
2979
2979
  def ClientId(self):
2980
- """客户端ID
2980
+ """客户端ID,从 [DescribeConsumerClientList](https://cloud.tencent.com/document/api/1493/120140) 接口中的 [ConsumerClient](https://cloud.tencent.com/document/api/1493/96031#ConsumerClient) 出参中获得。
2981
2981
  :rtype: str
2982
2982
  """
2983
2983
  return self._ClientId
@@ -2988,7 +2988,7 @@ class DescribeConsumerClientRequest(AbstractModel):
2988
2988
 
2989
2989
  @property
2990
2990
  def Filters(self):
2991
- """查询条件列表
2991
+ """过滤查询条件列表,请在引用此参数的API说明中了解使用方法。
2992
2992
  :rtype: list of Filter
2993
2993
  """
2994
2994
  return self._Filters
@@ -2999,7 +2999,7 @@ class DescribeConsumerClientRequest(AbstractModel):
2999
2999
 
3000
3000
  @property
3001
3001
  def Offset(self):
3002
- """查询起始位置
3002
+ """查询起始位置,默认为0。
3003
3003
  :rtype: int
3004
3004
  """
3005
3005
  return self._Offset
@@ -3010,7 +3010,7 @@ class DescribeConsumerClientRequest(AbstractModel):
3010
3010
 
3011
3011
  @property
3012
3012
  def Limit(self):
3013
- """查询结果限制数量
3013
+ """查询结果限制数量,默认20。
3014
3014
  :rtype: int
3015
3015
  """
3016
3016
  return self._Limit
@@ -3021,7 +3021,7 @@ class DescribeConsumerClientRequest(AbstractModel):
3021
3021
 
3022
3022
  @property
3023
3023
  def ConsumerGroup(self):
3024
- """消费组名称
3024
+ """消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
3025
3025
  :rtype: str
3026
3026
  """
3027
3027
  return self._ConsumerGroup
@@ -3293,9 +3293,9 @@ class DescribeConsumerGroupRequest(AbstractModel):
3293
3293
 
3294
3294
  def __init__(self):
3295
3295
  r"""
3296
- :param _InstanceId: 集群ID
3296
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
3297
3297
  :type InstanceId: str
3298
- :param _ConsumerGroup: 消费组名称
3298
+ :param _ConsumerGroup: 消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
3299
3299
  :type ConsumerGroup: str
3300
3300
  """
3301
3301
  self._InstanceId = None
@@ -3303,7 +3303,7 @@ class DescribeConsumerGroupRequest(AbstractModel):
3303
3303
 
3304
3304
  @property
3305
3305
  def InstanceId(self):
3306
- """集群ID
3306
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
3307
3307
  :rtype: str
3308
3308
  """
3309
3309
  return self._InstanceId
@@ -3314,7 +3314,7 @@ class DescribeConsumerGroupRequest(AbstractModel):
3314
3314
 
3315
3315
  @property
3316
3316
  def ConsumerGroup(self):
3317
- """消费组名称
3317
+ """消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
3318
3318
  :rtype: str
3319
3319
  """
3320
3320
  return self._ConsumerGroup
@@ -3350,9 +3350,13 @@ class DescribeConsumerGroupResponse(AbstractModel):
3350
3350
  :type Tps: int
3351
3351
  :param _ConsumerLag: 消息堆积数量
3352
3352
  :type ConsumerLag: int
3353
- :param _ConsumeType: 消费者类型
3353
+ :param _ConsumeType: 消费类型,枚举值如下:
3354
+
3355
+ - PULL:PULL 消费类型
3356
+ - PUSH:PUSH 消费类型
3357
+ - POP:POP 消费类型
3354
3358
  :type ConsumeType: str
3355
- :param _CreatedTime: 创建时间,秒为单位
3359
+ :param _CreatedTime: 创建时间,**Unix时间戳(毫秒)**
3356
3360
  :type CreatedTime: int
3357
3361
  :param _ConsumeMessageOrderly: 顺序投递:true
3358
3362
  并发投递:false
@@ -3417,7 +3421,11 @@ CLUSTERING 集群模式
3417
3421
 
3418
3422
  @property
3419
3423
  def ConsumeType(self):
3420
- """消费者类型
3424
+ """消费类型,枚举值如下:
3425
+
3426
+ - PULL:PULL 消费类型
3427
+ - PUSH:PUSH 消费类型
3428
+ - POP:POP 消费类型
3421
3429
  :rtype: str
3422
3430
  """
3423
3431
  return self._ConsumeType
@@ -3428,7 +3436,7 @@ CLUSTERING 集群模式
3428
3436
 
3429
3437
  @property
3430
3438
  def CreatedTime(self):
3431
- """创建时间,秒为单位
3439
+ """创建时间,**Unix时间戳(毫秒)**
3432
3440
  :rtype: int
3433
3441
  """
3434
3442
  return self._CreatedTime
@@ -3528,13 +3536,13 @@ class DescribeConsumerLagRequest(AbstractModel):
3528
3536
 
3529
3537
  def __init__(self):
3530
3538
  r"""
3531
- :param _InstanceId: 集群ID
3539
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
3532
3540
  :type InstanceId: str
3533
- :param _ConsumerGroup: 消费组名称
3541
+ :param _ConsumerGroup: 消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
3534
3542
  :type ConsumerGroup: str
3535
- :param _Namespace: 命名空间,4.x集群必填
3543
+ :param _Namespace: 命名空间,4.x集群必填,从 [DescribeRocketMQNamespaces](https://cloud.tencent.com/document/api/1179/63419) 接口或控制台获得。
3536
3544
  :type Namespace: str
3537
- :param _SubscribeTopic: 订阅主题,不为空则查询订阅了该主题的消费组的堆积
3545
+ :param _SubscribeTopic: 订阅主题,不为空则查询订阅了该主题的消费组的堆积,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口或控制台获得。
3538
3546
  :type SubscribeTopic: str
3539
3547
  """
3540
3548
  self._InstanceId = None
@@ -3544,7 +3552,7 @@ class DescribeConsumerLagRequest(AbstractModel):
3544
3552
 
3545
3553
  @property
3546
3554
  def InstanceId(self):
3547
- """集群ID
3555
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
3548
3556
  :rtype: str
3549
3557
  """
3550
3558
  return self._InstanceId
@@ -3555,7 +3563,7 @@ class DescribeConsumerLagRequest(AbstractModel):
3555
3563
 
3556
3564
  @property
3557
3565
  def ConsumerGroup(self):
3558
- """消费组名称
3566
+ """消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
3559
3567
  :rtype: str
3560
3568
  """
3561
3569
  return self._ConsumerGroup
@@ -3566,7 +3574,7 @@ class DescribeConsumerLagRequest(AbstractModel):
3566
3574
 
3567
3575
  @property
3568
3576
  def Namespace(self):
3569
- """命名空间,4.x集群必填
3577
+ """命名空间,4.x集群必填,从 [DescribeRocketMQNamespaces](https://cloud.tencent.com/document/api/1179/63419) 接口或控制台获得。
3570
3578
  :rtype: str
3571
3579
  """
3572
3580
  return self._Namespace
@@ -3577,7 +3585,7 @@ class DescribeConsumerLagRequest(AbstractModel):
3577
3585
 
3578
3586
  @property
3579
3587
  def SubscribeTopic(self):
3580
- """订阅主题,不为空则查询订阅了该主题的消费组的堆积
3588
+ """订阅主题,不为空则查询订阅了该主题的消费组的堆积,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口或控制台获得。
3581
3589
  :rtype: str
3582
3590
  """
3583
3591
  return self._SubscribeTopic
@@ -8338,15 +8346,15 @@ class DescribeTopicListByGroupRequest(AbstractModel):
8338
8346
 
8339
8347
  def __init__(self):
8340
8348
  r"""
8341
- :param _InstanceId: 集群ID
8349
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
8342
8350
  :type InstanceId: str
8343
- :param _Offset: 查询起始位置
8351
+ :param _Offset: 查询起始位置,默认为0。
8344
8352
  :type Offset: int
8345
- :param _Limit: 查询结果限制数量
8353
+ :param _Limit: 查询结果限制数量,默认20。
8346
8354
  :type Limit: int
8347
- :param _ConsumerGroup: 消费组名称
8355
+ :param _ConsumerGroup: 消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
8348
8356
  :type ConsumerGroup: str
8349
- :param _Filters: 查询条件列表
8357
+ :param _Filters: 过滤查询条件列表,请在引用此参数的API说明中了解使用方法。
8350
8358
  :type Filters: list of Filter
8351
8359
  """
8352
8360
  self._InstanceId = None
@@ -8357,7 +8365,7 @@ class DescribeTopicListByGroupRequest(AbstractModel):
8357
8365
 
8358
8366
  @property
8359
8367
  def InstanceId(self):
8360
- """集群ID
8368
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
8361
8369
  :rtype: str
8362
8370
  """
8363
8371
  return self._InstanceId
@@ -8368,7 +8376,7 @@ class DescribeTopicListByGroupRequest(AbstractModel):
8368
8376
 
8369
8377
  @property
8370
8378
  def Offset(self):
8371
- """查询起始位置
8379
+ """查询起始位置,默认为0。
8372
8380
  :rtype: int
8373
8381
  """
8374
8382
  return self._Offset
@@ -8379,7 +8387,7 @@ class DescribeTopicListByGroupRequest(AbstractModel):
8379
8387
 
8380
8388
  @property
8381
8389
  def Limit(self):
8382
- """查询结果限制数量
8390
+ """查询结果限制数量,默认20。
8383
8391
  :rtype: int
8384
8392
  """
8385
8393
  return self._Limit
@@ -8390,7 +8398,7 @@ class DescribeTopicListByGroupRequest(AbstractModel):
8390
8398
 
8391
8399
  @property
8392
8400
  def ConsumerGroup(self):
8393
- """消费组名称
8401
+ """消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
8394
8402
  :rtype: str
8395
8403
  """
8396
8404
  return self._ConsumerGroup
@@ -8401,7 +8409,7 @@ class DescribeTopicListByGroupRequest(AbstractModel):
8401
8409
 
8402
8410
  @property
8403
8411
  def Filters(self):
8404
- """查询条件列表
8412
+ """过滤查询条件列表,请在引用此参数的API说明中了解使用方法。
8405
8413
  :rtype: list of Filter
8406
8414
  """
8407
8415
  return self._Filters
@@ -8651,15 +8659,15 @@ class DescribeTopicRequest(AbstractModel):
8651
8659
 
8652
8660
  def __init__(self):
8653
8661
  r"""
8654
- :param _InstanceId: 集群ID
8662
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
8655
8663
  :type InstanceId: str
8656
- :param _Topic: 主题名称
8664
+ :param _Topic: 主题名称,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口或控制台获得。
8657
8665
  :type Topic: str
8658
- :param _Filters: 查询条件列表
8666
+ :param _Filters: 过滤查询条件列表,请在引用此参数的API说明中了解使用方法。
8659
8667
  :type Filters: list of Filter
8660
- :param _Offset: 查询起始位置
8668
+ :param _Offset: 查询起始位置,默认为0。
8661
8669
  :type Offset: int
8662
- :param _Limit: 查询结果限制数量
8670
+ :param _Limit: 查询结果限制数量,默认20。
8663
8671
  :type Limit: int
8664
8672
  """
8665
8673
  self._InstanceId = None
@@ -8670,7 +8678,7 @@ class DescribeTopicRequest(AbstractModel):
8670
8678
 
8671
8679
  @property
8672
8680
  def InstanceId(self):
8673
- """集群ID
8681
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
8674
8682
  :rtype: str
8675
8683
  """
8676
8684
  return self._InstanceId
@@ -8681,7 +8689,7 @@ class DescribeTopicRequest(AbstractModel):
8681
8689
 
8682
8690
  @property
8683
8691
  def Topic(self):
8684
- """主题名称
8692
+ """主题名称,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口或控制台获得。
8685
8693
  :rtype: str
8686
8694
  """
8687
8695
  return self._Topic
@@ -8692,7 +8700,7 @@ class DescribeTopicRequest(AbstractModel):
8692
8700
 
8693
8701
  @property
8694
8702
  def Filters(self):
8695
- """查询条件列表
8703
+ """过滤查询条件列表,请在引用此参数的API说明中了解使用方法。
8696
8704
  :rtype: list of Filter
8697
8705
  """
8698
8706
  return self._Filters
@@ -8703,7 +8711,7 @@ class DescribeTopicRequest(AbstractModel):
8703
8711
 
8704
8712
  @property
8705
8713
  def Offset(self):
8706
- """查询起始位置
8714
+ """查询起始位置,默认为0。
8707
8715
  :rtype: int
8708
8716
  """
8709
8717
  return self._Offset
@@ -8714,7 +8722,7 @@ class DescribeTopicRequest(AbstractModel):
8714
8722
 
8715
8723
  @property
8716
8724
  def Limit(self):
8717
- """查询结果限制数量
8725
+ """查询结果限制数量,默认20。
8718
8726
  :rtype: int
8719
8727
  """
8720
8728
  return self._Limit
@@ -8931,6 +8939,8 @@ class DetailedRolePerm(AbstractModel):
8931
8939
  def __init__(self):
8932
8940
  r"""
8933
8941
  :param _Resource: 权限对应的资源
8942
+ 可以是主题名称,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口或控制台获得。
8943
+ 可以是消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
8934
8944
  :type Resource: str
8935
8945
  :param _PermWrite: 是否开启生产权限
8936
8946
  :type PermWrite: bool
@@ -8950,6 +8960,8 @@ class DetailedRolePerm(AbstractModel):
8950
8960
  @property
8951
8961
  def Resource(self):
8952
8962
  """权限对应的资源
8963
+ 可以是主题名称,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口或控制台获得。
8964
+ 可以是消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
8953
8965
  :rtype: str
8954
8966
  """
8955
8967
  return self._Resource
@@ -12259,18 +12271,18 @@ class ModifyConsumerGroupRequest(AbstractModel):
12259
12271
 
12260
12272
  def __init__(self):
12261
12273
  r"""
12262
- :param _InstanceId: 集群ID
12274
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
12263
12275
  :type InstanceId: str
12264
- :param _ConsumerGroup: 消费组名称
12276
+ :param _ConsumerGroup: 消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
12265
12277
  :type ConsumerGroup: str
12266
12278
  :param _ConsumeEnable: 是否开启消费
12267
12279
  :type ConsumeEnable: bool
12268
12280
  :param _ConsumeMessageOrderly: 顺序投递:true
12269
12281
  并发投递:false
12270
12282
  :type ConsumeMessageOrderly: bool
12271
- :param _MaxRetryTimes: 最大重试次数
12283
+ :param _MaxRetryTimes: 最大重试次数,取值范围0~1000
12272
12284
  :type MaxRetryTimes: int
12273
- :param _Remark: 备注
12285
+ :param _Remark: 备注信息,最多 128 个字符
12274
12286
  :type Remark: str
12275
12287
  """
12276
12288
  self._InstanceId = None
@@ -12282,7 +12294,7 @@ class ModifyConsumerGroupRequest(AbstractModel):
12282
12294
 
12283
12295
  @property
12284
12296
  def InstanceId(self):
12285
- """集群ID
12297
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
12286
12298
  :rtype: str
12287
12299
  """
12288
12300
  return self._InstanceId
@@ -12293,7 +12305,7 @@ class ModifyConsumerGroupRequest(AbstractModel):
12293
12305
 
12294
12306
  @property
12295
12307
  def ConsumerGroup(self):
12296
- """消费组名称
12308
+ """消费组名称,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口或控制台获得。
12297
12309
  :rtype: str
12298
12310
  """
12299
12311
  return self._ConsumerGroup
@@ -12327,7 +12339,7 @@ class ModifyConsumerGroupRequest(AbstractModel):
12327
12339
 
12328
12340
  @property
12329
12341
  def MaxRetryTimes(self):
12330
- """最大重试次数
12342
+ """最大重试次数,取值范围0~1000
12331
12343
  :rtype: int
12332
12344
  """
12333
12345
  return self._MaxRetryTimes
@@ -12338,7 +12350,7 @@ class ModifyConsumerGroupRequest(AbstractModel):
12338
12350
 
12339
12351
  @property
12340
12352
  def Remark(self):
12341
- """备注
12353
+ """备注信息,最多 128 个字符
12342
12354
  :rtype: str
12343
12355
  """
12344
12356
  return self._Remark
@@ -13264,9 +13276,9 @@ class ModifyRoleRequest(AbstractModel):
13264
13276
 
13265
13277
  def __init__(self):
13266
13278
  r"""
13267
- :param _InstanceId: 集群ID
13279
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
13268
13280
  :type InstanceId: str
13269
- :param _Role: 角色名称
13281
+ :param _Role: 角色名称,从 [DescribeRoleList](https://cloud.tencent.com/document/api/1493/98862) 接口或控制台获得。
13270
13282
  :type Role: str
13271
13283
  :param _PermRead: 是否开启消费
13272
13284
  :type PermRead: bool
@@ -13276,7 +13288,7 @@ class ModifyRoleRequest(AbstractModel):
13276
13288
  :type PermType: str
13277
13289
  :param _Remark: 备注
13278
13290
  :type Remark: str
13279
- :param _DetailedPerms: Topic&Group维度权限配置
13291
+ :param _DetailedPerms: Topic&Group维度权限配置,权限类型为 TopicAndGroup 时必填
13280
13292
  :type DetailedPerms: list of DetailedRolePerm
13281
13293
  """
13282
13294
  self._InstanceId = None
@@ -13289,7 +13301,7 @@ class ModifyRoleRequest(AbstractModel):
13289
13301
 
13290
13302
  @property
13291
13303
  def InstanceId(self):
13292
- """集群ID
13304
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
13293
13305
  :rtype: str
13294
13306
  """
13295
13307
  return self._InstanceId
@@ -13300,7 +13312,7 @@ class ModifyRoleRequest(AbstractModel):
13300
13312
 
13301
13313
  @property
13302
13314
  def Role(self):
13303
- """角色名称
13315
+ """角色名称,从 [DescribeRoleList](https://cloud.tencent.com/document/api/1493/98862) 接口或控制台获得。
13304
13316
  :rtype: str
13305
13317
  """
13306
13318
  return self._Role
@@ -13355,7 +13367,7 @@ class ModifyRoleRequest(AbstractModel):
13355
13367
 
13356
13368
  @property
13357
13369
  def DetailedPerms(self):
13358
- """Topic&Group维度权限配置
13370
+ """Topic&Group维度权限配置,权限类型为 TopicAndGroup 时必填
13359
13371
  :rtype: list of DetailedRolePerm
13360
13372
  """
13361
13373
  return self._DetailedPerms
@@ -13423,15 +13435,15 @@ class ModifyTopicRequest(AbstractModel):
13423
13435
 
13424
13436
  def __init__(self):
13425
13437
  r"""
13426
- :param _InstanceId: 集群ID
13438
+ :param _InstanceId: 腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
13427
13439
  :type InstanceId: str
13428
- :param _Topic: 主题名称
13440
+ :param _Topic: 主题名称,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口或控制台获得。
13429
13441
  :type Topic: str
13430
- :param _QueueNum: 队列数量
13442
+ :param _QueueNum: 队列数量,取值范围3~16
13431
13443
  :type QueueNum: int
13432
- :param _Remark: 备注信息
13444
+ :param _Remark: 备注信息,最多 128 个字符
13433
13445
  :type Remark: str
13434
- :param _MsgTTL: 消息保留时长
13446
+ :param _MsgTTL: 消息保留时长(单位:小时)
13435
13447
  :type MsgTTL: int
13436
13448
  """
13437
13449
  self._InstanceId = None
@@ -13442,7 +13454,7 @@ class ModifyTopicRequest(AbstractModel):
13442
13454
 
13443
13455
  @property
13444
13456
  def InstanceId(self):
13445
- """集群ID
13457
+ """腾讯云 RocketMQ 实例 ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1493/96028) 接口或控制台获得。
13446
13458
  :rtype: str
13447
13459
  """
13448
13460
  return self._InstanceId
@@ -13453,7 +13465,7 @@ class ModifyTopicRequest(AbstractModel):
13453
13465
 
13454
13466
  @property
13455
13467
  def Topic(self):
13456
- """主题名称
13468
+ """主题名称,从 [DescribeTopicList](https://cloud.tencent.com/document/api/1493/96030) 接口或控制台获得。
13457
13469
  :rtype: str
13458
13470
  """
13459
13471
  return self._Topic
@@ -13464,7 +13476,7 @@ class ModifyTopicRequest(AbstractModel):
13464
13476
 
13465
13477
  @property
13466
13478
  def QueueNum(self):
13467
- """队列数量
13479
+ """队列数量,取值范围3~16
13468
13480
  :rtype: int
13469
13481
  """
13470
13482
  return self._QueueNum
@@ -13475,7 +13487,7 @@ class ModifyTopicRequest(AbstractModel):
13475
13487
 
13476
13488
  @property
13477
13489
  def Remark(self):
13478
- """备注信息
13490
+ """备注信息,最多 128 个字符
13479
13491
  :rtype: str
13480
13492
  """
13481
13493
  return self._Remark
@@ -13486,7 +13498,7 @@ class ModifyTopicRequest(AbstractModel):
13486
13498
 
13487
13499
  @property
13488
13500
  def MsgTTL(self):
13489
- """消息保留时长
13501
+ """消息保留时长(单位:小时)
13490
13502
  :rtype: int
13491
13503
  """
13492
13504
  return self._MsgTTL
@@ -15219,7 +15231,11 @@ class SubscriptionData(AbstractModel):
15219
15231
  :param _IsOnline: 是否在线
15220
15232
  注意:此字段可能返回 null,表示取不到有效值。
15221
15233
  :type IsOnline: bool
15222
- :param _ConsumeType: 消费类型
15234
+ :param _ConsumeType: 消费类型,枚举值如下:
15235
+
15236
+ - PULL:PULL 消费类型
15237
+ - PUSH:PUSH 消费类型
15238
+ - POP:POP 消费类型
15223
15239
  注意:此字段可能返回 null,表示取不到有效值。
15224
15240
  :type ConsumeType: str
15225
15241
  :param _SubString: 订阅规则
@@ -15228,7 +15244,10 @@ class SubscriptionData(AbstractModel):
15228
15244
  :param _ExpressionType: 过滤类型
15229
15245
  注意:此字段可能返回 null,表示取不到有效值。
15230
15246
  :type ExpressionType: str
15231
- :param _Consistency: 订阅一致性
15247
+ :param _Consistency: 订阅一致性,枚举如下:
15248
+
15249
+ - 0: 订阅一致
15250
+ - 1: 订阅不一致
15232
15251
  注意:此字段可能返回 null,表示取不到有效值。
15233
15252
  :type Consistency: int
15234
15253
  :param _ConsumerLag: 消费堆积
@@ -15343,7 +15362,11 @@ CLUSTERING 集群模式;
15343
15362
 
15344
15363
  @property
15345
15364
  def ConsumeType(self):
15346
- """消费类型
15365
+ """消费类型,枚举值如下:
15366
+
15367
+ - PULL:PULL 消费类型
15368
+ - PUSH:PUSH 消费类型
15369
+ - POP:POP 消费类型
15347
15370
  注意:此字段可能返回 null,表示取不到有效值。
15348
15371
  :rtype: str
15349
15372
  """
@@ -15379,7 +15402,10 @@ CLUSTERING 集群模式;
15379
15402
 
15380
15403
  @property
15381
15404
  def Consistency(self):
15382
- """订阅一致性
15405
+ """订阅一致性,枚举如下:
15406
+
15407
+ - 0: 订阅一致
15408
+ - 1: 订阅不一致
15383
15409
  注意:此字段可能返回 null,表示取不到有效值。
15384
15410
  :rtype: int
15385
15411
  """
@@ -15611,15 +15637,20 @@ class TopicConsumeStats(AbstractModel):
15611
15637
  r"""
15612
15638
  :param _Topic: 主题名称
15613
15639
  :type Topic: str
15614
- :param _TopicType: 主题类型
15640
+ :param _TopicType: 主题类型,枚举值如下:
15641
+
15642
+ - NORMAL:普通消息主题
15643
+ - FIFO:顺序消息主题
15644
+ - DELAY:延迟消息主题
15645
+ - TRANSACTION:事务消息主题
15615
15646
  :type TopicType: str
15616
15647
  :param _QueueNum: 单节点主题队列数量
15617
15648
  :type QueueNum: int
15618
15649
  :param _ConsumerLag: 消费堆积
15619
15650
  :type ConsumerLag: int
15620
- :param _SubString: 订阅规则
15651
+ :param _SubString: 订阅规则,`*`表示订阅全部TAG
15621
15652
  :type SubString: str
15622
- :param _LastUpdateTime: 最后消费进度更新时间
15653
+ :param _LastUpdateTime: 最后消费进度更新时间,**Unix时间戳(毫秒)**
15623
15654
  :type LastUpdateTime: int
15624
15655
  """
15625
15656
  self._Topic = None
@@ -15642,7 +15673,12 @@ class TopicConsumeStats(AbstractModel):
15642
15673
 
15643
15674
  @property
15644
15675
  def TopicType(self):
15645
- """主题类型
15676
+ """主题类型,枚举值如下:
15677
+
15678
+ - NORMAL:普通消息主题
15679
+ - FIFO:顺序消息主题
15680
+ - DELAY:延迟消息主题
15681
+ - TRANSACTION:事务消息主题
15646
15682
  :rtype: str
15647
15683
  """
15648
15684
  return self._TopicType
@@ -15675,7 +15711,7 @@ class TopicConsumeStats(AbstractModel):
15675
15711
 
15676
15712
  @property
15677
15713
  def SubString(self):
15678
- """订阅规则
15714
+ """订阅规则,`*`表示订阅全部TAG
15679
15715
  :rtype: str
15680
15716
  """
15681
15717
  return self._SubString
@@ -15686,7 +15722,7 @@ class TopicConsumeStats(AbstractModel):
15686
15722
 
15687
15723
  @property
15688
15724
  def LastUpdateTime(self):
15689
- """最后消费进度更新时间
15725
+ """最后消费进度更新时间,**Unix时间戳(毫秒)**
15690
15726
  :rtype: int
15691
15727
  """
15692
15728
  return self._LastUpdateTime
@@ -15732,7 +15768,7 @@ TRANSACTION:事务消息
15732
15768
  :type TopicType: str
15733
15769
  :param _QueueNum: 队列数量
15734
15770
  :type QueueNum: int
15735
- :param _Remark: 描述
15771
+ :param _Remark: 备注信息
15736
15772
  :type Remark: str
15737
15773
  :param _ClusterIdV4: 4.x的集群id
15738
15774
  注意:此字段可能返回 null,表示取不到有效值。
@@ -15747,7 +15783,6 @@ TRANSACTION:事务消息
15747
15783
  注意:此字段可能返回 null,表示取不到有效值。
15748
15784
  :type FullNamespaceV4: str
15749
15785
  :param _MsgTTL: 消息保留时长
15750
- 注意:此字段可能返回 null,表示取不到有效值。
15751
15786
  :type MsgTTL: int
15752
15787
  """
15753
15788
  self._InstanceId = None
@@ -15811,7 +15846,7 @@ TRANSACTION:事务消息
15811
15846
 
15812
15847
  @property
15813
15848
  def Remark(self):
15814
- """描述
15849
+ """备注信息
15815
15850
  :rtype: str
15816
15851
  """
15817
15852
  return self._Remark
@@ -15871,7 +15906,6 @@ TRANSACTION:事务消息
15871
15906
  @property
15872
15907
  def MsgTTL(self):
15873
15908
  """消息保留时长
15874
- 注意:此字段可能返回 null,表示取不到有效值。
15875
15909
  :rtype: int
15876
15910
  """
15877
15911
  return self._MsgTTL