tencentcloud-sdk-python 3.0.1190__py2.py3-none-any.whl → 3.0.1191__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/cdc/v20201214/models.py +103 -0
- tencentcloud/cvm/v20170312/errorcodes.py +18 -0
- tencentcloud/cvm/v20170312/models.py +10 -10
- tencentcloud/dlc/v20210125/models.py +25 -1
- tencentcloud/es/v20180416/models.py +25 -1
- tencentcloud/gaap/v20180529/models.py +25 -0
- tencentcloud/hunyuan/v20230901/models.py +12 -0
- tencentcloud/lcic/v20220817/models.py +25 -1
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/monitor/v20180724/models.py +102 -33
- tencentcloud/tdmq/v20200217/models.py +422 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +69 -0
- tencentcloud/tsi/v20210325/tsi_client.py +14 -1
- tencentcloud/vpc/v20170312/models.py +168 -19
- {tencentcloud_sdk_python-3.0.1190.dist-info → tencentcloud_sdk_python-3.0.1191.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1190.dist-info → tencentcloud_sdk_python-3.0.1191.dist-info}/RECORD +20 -20
- {tencentcloud_sdk_python-3.0.1190.dist-info → tencentcloud_sdk_python-3.0.1191.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1190.dist-info → tencentcloud_sdk_python-3.0.1191.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1190.dist-info → tencentcloud_sdk_python-3.0.1191.dist-info}/top_level.txt +0 -0
| @@ -5944,7 +5944,38 @@ class CreateServiceDiscoveryRequest(AbstractModel): | |
| 5944 5944 | 
             
            <li> 2 = PodMonitor</li>
         | 
| 5945 5945 | 
             
            <li> 3 = JobMonitor</li>
         | 
| 5946 5946 | 
             
                    :type Type: int
         | 
| 5947 | 
            -
                    :param _Yaml:  | 
| 5947 | 
            +
                    :param _Yaml: 服务发现配置信息,YAML 格式
         | 
| 5948 | 
            +
             | 
| 5949 | 
            +
            示例值:
         | 
| 5950 | 
            +
             | 
| 5951 | 
            +
            ```
         | 
| 5952 | 
            +
            apiVersion: monitoring.coreos.com/v1
         | 
| 5953 | 
            +
            kind: ServiceMonitor
         | 
| 5954 | 
            +
            metadata:
         | 
| 5955 | 
            +
              name: go-demo    # 填写一个唯一名称
         | 
| 5956 | 
            +
              namespace: cm-prometheus  # namespace固定,不要修改
         | 
| 5957 | 
            +
            spec:
         | 
| 5958 | 
            +
              endpoints:
         | 
| 5959 | 
            +
              - interval: 30s
         | 
| 5960 | 
            +
                # 填写service yaml中Prometheus Exporter对应的Port的Name
         | 
| 5961 | 
            +
                port: 2112
         | 
| 5962 | 
            +
                # 填写Prometheus Exporter对应的Path的值,不填默认/metrics
         | 
| 5963 | 
            +
                path: /metrics
         | 
| 5964 | 
            +
                relabelings:
         | 
| 5965 | 
            +
                # ** 必须要有一个 label 为 application,这里假设 k8s 有一个 label 为 app,
         | 
| 5966 | 
            +
                # 我们通过 relabel 的 replace 动作把它替换成了 application
         | 
| 5967 | 
            +
                - action: replace
         | 
| 5968 | 
            +
                  sourceLabels:  [__meta_kubernetes_pod_label_app]
         | 
| 5969 | 
            +
                  targetLabel: application
         | 
| 5970 | 
            +
              # 选择要监控service所在的namespace
         | 
| 5971 | 
            +
              namespaceSelector:
         | 
| 5972 | 
            +
                matchNames:
         | 
| 5973 | 
            +
                - golang-demo
         | 
| 5974 | 
            +
                # 填写要监控service的Label值,以定位目标service
         | 
| 5975 | 
            +
              selector:
         | 
| 5976 | 
            +
                matchLabels:
         | 
| 5977 | 
            +
                  app: golang-app-demo
         | 
| 5978 | 
            +
            ```
         | 
| 5948 5979 | 
             
                    :type Yaml: str
         | 
| 5949 5980 | 
             
                    """
         | 
| 5950 5981 | 
             
                    self._InstanceId = None
         | 
| @@ -7555,7 +7586,38 @@ class DeleteServiceDiscoveryRequest(AbstractModel): | |
| 7555 7586 | 
             
            <li> 2 = PodMonitor</li>
         | 
| 7556 7587 | 
             
            <li> 3 = PodMonitor</li>
         | 
| 7557 7588 | 
             
                    :type Type: int
         | 
| 7558 | 
            -
                    :param _Yaml:  | 
| 7589 | 
            +
                    :param _Yaml: 服务发现配置信息,YAML 格式
         | 
| 7590 | 
            +
             | 
| 7591 | 
            +
            示例值:
         | 
| 7592 | 
            +
             | 
| 7593 | 
            +
            ```
         | 
| 7594 | 
            +
            apiVersion: monitoring.coreos.com/v1
         | 
| 7595 | 
            +
            kind: ServiceMonitor
         | 
| 7596 | 
            +
            metadata:
         | 
| 7597 | 
            +
              name: go-demo    # 填写一个唯一名称
         | 
| 7598 | 
            +
              namespace: cm-prometheus  # namespace固定,不要修改
         | 
| 7599 | 
            +
            spec:
         | 
| 7600 | 
            +
              endpoints:
         | 
| 7601 | 
            +
              - interval: 30s
         | 
| 7602 | 
            +
                # 填写service yaml中Prometheus Exporter对应的Port的Name
         | 
| 7603 | 
            +
                port: 2112
         | 
| 7604 | 
            +
                # 填写Prometheus Exporter对应的Path的值,不填默认/metrics
         | 
| 7605 | 
            +
                path: /metrics
         | 
| 7606 | 
            +
                relabelings:
         | 
| 7607 | 
            +
                # ** 必须要有一个 label 为 application,这里假设 k8s 有一个 label 为 app,
         | 
| 7608 | 
            +
                # 我们通过 relabel 的 replace 动作把它替换成了 application
         | 
| 7609 | 
            +
                - action: replace
         | 
| 7610 | 
            +
                  sourceLabels:  [__meta_kubernetes_pod_label_app]
         | 
| 7611 | 
            +
                  targetLabel: application
         | 
| 7612 | 
            +
              # 选择要监控service所在的namespace
         | 
| 7613 | 
            +
              namespaceSelector:
         | 
| 7614 | 
            +
                matchNames:
         | 
| 7615 | 
            +
                - golang-demo
         | 
| 7616 | 
            +
                # 填写要监控service的Label值,以定位目标service
         | 
| 7617 | 
            +
              selector:
         | 
| 7618 | 
            +
                matchLabels:
         | 
| 7619 | 
            +
                  app: golang-app-demo
         | 
| 7620 | 
            +
            ```
         | 
| 7559 7621 | 
             
                    :type Yaml: str
         | 
| 7560 7622 | 
             
                    """
         | 
| 7561 7623 | 
             
                    self._InstanceId = None
         | 
| @@ -17397,7 +17459,7 @@ class DescribePrometheusInstanceUsageRequest(AbstractModel): | |
| 17397 17459 |  | 
| 17398 17460 | 
             
                def __init__(self):
         | 
| 17399 17461 | 
             
                    r"""
         | 
| 17400 | 
            -
                    :param _InstanceIds: 按照一个或者多个实例ID查询。实例ID形如:prom-xxxxxxxx | 
| 17462 | 
            +
                    :param _InstanceIds: 按照一个或者多个实例ID查询。实例ID形如:prom-xxxxxxxx。
         | 
| 17401 17463 | 
             
                    :type InstanceIds: list of str
         | 
| 17402 17464 | 
             
                    :param _StartCalcDate: 开始时间
         | 
| 17403 17465 | 
             
                    :type StartCalcDate: str
         | 
| @@ -23820,7 +23882,7 @@ class ModifyPrometheusInstanceAttributesRequest(AbstractModel): | |
| 23820 23882 | 
             
                    :type InstanceId: str
         | 
| 23821 23883 | 
             
                    :param _InstanceName: 实例名称
         | 
| 23822 23884 | 
             
                    :type InstanceName: str
         | 
| 23823 | 
            -
                    :param _DataRetentionTime:  | 
| 23885 | 
            +
                    :param _DataRetentionTime: 数据存储时间(单位天),限制值为15, 30, 45, 90, 180, 365, 730之一
         | 
| 23824 23886 | 
             
                    :type DataRetentionTime: int
         | 
| 23825 23887 | 
             
                    """
         | 
| 23826 23888 | 
             
                    self._InstanceId = None
         | 
| @@ -25905,7 +25967,7 @@ class PrometheusClusterAgentBasic(AbstractModel): | |
| 25905 25967 |  | 
| 25906 25968 | 
             
                def __init__(self):
         | 
| 25907 25969 | 
             
                    r"""
         | 
| 25908 | 
            -
                    :param _Region:  | 
| 25970 | 
            +
                    :param _Region: 地域
         | 
| 25909 25971 | 
             
                    :type Region: str
         | 
| 25910 25972 | 
             
                    :param _ClusterType: 集群类型。可填入tke、eks、tkeedge、tdcc,分别代表标准集群、弹性集群、边缘集群、注册集群
         | 
| 25911 25973 | 
             
                    :type ClusterType: str
         | 
| @@ -31235,6 +31297,8 @@ class UpdatePrometheusAgentStatusRequest(AbstractModel): | |
| 31235 31297 | 
             
                    :param _InstanceId: Prometheus 实例 ID,例如:prom-abcd1234
         | 
| 31236 31298 | 
             
                    :type InstanceId: str
         | 
| 31237 31299 | 
             
                    :param _AgentIds: Agent ID 列表,例如:agent-abcd1234,可在控制台 Agent 管理中获取
         | 
| 31300 | 
            +
             | 
| 31301 | 
            +
            示例值:["agent-abcd1234"]
         | 
| 31238 31302 | 
             
                    :type AgentIds: list of str
         | 
| 31239 31303 | 
             
                    :param _Status: 要更新的状态
         | 
| 31240 31304 | 
             
            <li> 1= 开启 </li>
         | 
| @@ -31892,7 +31956,38 @@ class UpdateServiceDiscoveryRequest(AbstractModel): | |
| 31892 31956 | 
             
            <li> 2 = PodMonitor</li>
         | 
| 31893 31957 | 
             
            <li> 3 = JobMonitor</li>
         | 
| 31894 31958 | 
             
                    :type Type: int
         | 
| 31895 | 
            -
                    :param _Yaml:  | 
| 31959 | 
            +
                    :param _Yaml: 服务发现配置信息,YAML 格式
         | 
| 31960 | 
            +
             | 
| 31961 | 
            +
            示例值:
         | 
| 31962 | 
            +
             | 
| 31963 | 
            +
            ```
         | 
| 31964 | 
            +
            apiVersion: monitoring.coreos.com/v1
         | 
| 31965 | 
            +
            kind: ServiceMonitor
         | 
| 31966 | 
            +
            metadata:
         | 
| 31967 | 
            +
              name: go-demo    # 填写一个唯一名称
         | 
| 31968 | 
            +
              namespace: cm-prometheus  # namespace固定,不要修改
         | 
| 31969 | 
            +
            spec:
         | 
| 31970 | 
            +
              endpoints:
         | 
| 31971 | 
            +
              - interval: 30s
         | 
| 31972 | 
            +
                # 填写service yaml中Prometheus Exporter对应的Port的Name
         | 
| 31973 | 
            +
                port: 2112
         | 
| 31974 | 
            +
                # 填写Prometheus Exporter对应的Path的值,不填默认/metrics
         | 
| 31975 | 
            +
                path: /metrics
         | 
| 31976 | 
            +
                relabelings:
         | 
| 31977 | 
            +
                # ** 必须要有一个 label 为 application,这里假设 k8s 有一个 label 为 app,
         | 
| 31978 | 
            +
                # 我们通过 relabel 的 replace 动作把它替换成了 application
         | 
| 31979 | 
            +
                - action: replace
         | 
| 31980 | 
            +
                  sourceLabels:  [__meta_kubernetes_pod_label_app]
         | 
| 31981 | 
            +
                  targetLabel: application
         | 
| 31982 | 
            +
              # 选择要监控service所在的namespace
         | 
| 31983 | 
            +
              namespaceSelector:
         | 
| 31984 | 
            +
                matchNames:
         | 
| 31985 | 
            +
                - golang-demo
         | 
| 31986 | 
            +
                # 填写要监控service的Label值,以定位目标service
         | 
| 31987 | 
            +
              selector:
         | 
| 31988 | 
            +
                matchLabels:
         | 
| 31989 | 
            +
                  app: golang-app-demo
         | 
| 31990 | 
            +
            ```
         | 
| 31896 31991 | 
             
                    :type Yaml: str
         | 
| 31897 31992 | 
             
                    """
         | 
| 31898 31993 | 
             
                    self._InstanceId = None
         | 
| @@ -32006,33 +32101,7 @@ class UpgradeGrafanaDashboardRequest(AbstractModel): | |
| 32006 32101 | 
             
                    r"""
         | 
| 32007 32102 | 
             
                    :param _InstanceId: 实例 ID
         | 
| 32008 32103 | 
             
                    :type InstanceId: str
         | 
| 32009 | 
            -
                    :param _IntegrationCodes: Prometheus 集成项 Code,升级对应的 Dashboard | 
| 32010 | 
            -
            <li>qcloud</li>
         | 
| 32011 | 
            -
            <li>cvm_process_exporter</li>
         | 
| 32012 | 
            -
            <li>cvm_node_exporter</li>
         | 
| 32013 | 
            -
            <li>cvm</li>
         | 
| 32014 | 
            -
            <li>kubernetes</li>
         | 
| 32015 | 
            -
            <li>cdwch</li>
         | 
| 32016 | 
            -
            <li>rocketmq</li>
         | 
| 32017 | 
            -
            <li>spring_mvc</li>
         | 
| 32018 | 
            -
            <li>mysql</li>
         | 
| 32019 | 
            -
            <li>go</li>
         | 
| 32020 | 
            -
            <li>redis</li>
         | 
| 32021 | 
            -
            <li>jvm</li>
         | 
| 32022 | 
            -
            <li>pgsql</li>
         | 
| 32023 | 
            -
            <li>mongo</li>
         | 
| 32024 | 
            -
            <li>kafka</li>
         | 
| 32025 | 
            -
            <li>es</li>
         | 
| 32026 | 
            -
            <li>flink</li>
         | 
| 32027 | 
            -
            <li>blackbox</li>
         | 
| 32028 | 
            -
            <li>consule</li>
         | 
| 32029 | 
            -
            <li>memcached</li>
         | 
| 32030 | 
            -
            <li>zk</li>
         | 
| 32031 | 
            -
            <li>tps</li>
         | 
| 32032 | 
            -
            <li>istio</li>
         | 
| 32033 | 
            -
            <li>etcd</li>
         | 
| 32034 | 
            -
            <li>pts</li>
         | 
| 32035 | 
            -
            <li>kong</li>
         | 
| 32104 | 
            +
                    :param _IntegrationCodes: Prometheus 集成项 Code,升级对应的 Dashboard,取值如下:<li>qcloud</li><li>cvm_process_exporter</li><li>cvm_node_exporter</li><li>cvm</li><li>tps</li><li>nginx-ingress</li><li>nvidia-gpu</li><li>cdwch</li><li>emr</li><li>apache</li><li>rocketmq</li><li>rabbitmq</li><li>spring_mvc</li><li>mysql</li><li>mssql</li><li>go</li><li>redis</li><li>jvm</li><li>pgsql</li><li>ceph</li><li>docker</li><li>nginx</li><li>oracledb</li><li>mongo</li><li>kafka</li><li>es</li><li>flink</li><li>blackbox</li><li>consule</li><li>memcached</li><li>zk</li><li>tps</li><li>istio</li><li>etcd</li><li>pts</li><li>kong</li>
         | 
| 32036 32105 | 
             
                    :type IntegrationCodes: list of str
         | 
| 32037 32106 | 
             
                    """
         | 
| 32038 32107 | 
             
                    self._InstanceId = None
         | 
| @@ -15357,6 +15357,235 @@ class DescribeRocketMQTopicMsgsResponse(AbstractModel): | |
| 15357 15357 | 
             
                    self._RequestId = params.get("RequestId")
         | 
| 15358 15358 |  | 
| 15359 15359 |  | 
| 15360 | 
            +
            class DescribeRocketMQTopicStatsRequest(AbstractModel):
         | 
| 15361 | 
            +
                """DescribeRocketMQTopicStats请求参数结构体
         | 
| 15362 | 
            +
             | 
| 15363 | 
            +
                """
         | 
| 15364 | 
            +
             | 
| 15365 | 
            +
                def __init__(self):
         | 
| 15366 | 
            +
                    r"""
         | 
| 15367 | 
            +
                    :param _ClusterId: 实例ID
         | 
| 15368 | 
            +
                    :type ClusterId: str
         | 
| 15369 | 
            +
                    :param _NamespaceId: 命名空间
         | 
| 15370 | 
            +
                    :type NamespaceId: str
         | 
| 15371 | 
            +
                    :param _TopicName: 主题名
         | 
| 15372 | 
            +
                    :type TopicName: str
         | 
| 15373 | 
            +
                    """
         | 
| 15374 | 
            +
                    self._ClusterId = None
         | 
| 15375 | 
            +
                    self._NamespaceId = None
         | 
| 15376 | 
            +
                    self._TopicName = None
         | 
| 15377 | 
            +
             | 
| 15378 | 
            +
                @property
         | 
| 15379 | 
            +
                def ClusterId(self):
         | 
| 15380 | 
            +
                    return self._ClusterId
         | 
| 15381 | 
            +
             | 
| 15382 | 
            +
                @ClusterId.setter
         | 
| 15383 | 
            +
                def ClusterId(self, ClusterId):
         | 
| 15384 | 
            +
                    self._ClusterId = ClusterId
         | 
| 15385 | 
            +
             | 
| 15386 | 
            +
                @property
         | 
| 15387 | 
            +
                def NamespaceId(self):
         | 
| 15388 | 
            +
                    return self._NamespaceId
         | 
| 15389 | 
            +
             | 
| 15390 | 
            +
                @NamespaceId.setter
         | 
| 15391 | 
            +
                def NamespaceId(self, NamespaceId):
         | 
| 15392 | 
            +
                    self._NamespaceId = NamespaceId
         | 
| 15393 | 
            +
             | 
| 15394 | 
            +
                @property
         | 
| 15395 | 
            +
                def TopicName(self):
         | 
| 15396 | 
            +
                    return self._TopicName
         | 
| 15397 | 
            +
             | 
| 15398 | 
            +
                @TopicName.setter
         | 
| 15399 | 
            +
                def TopicName(self, TopicName):
         | 
| 15400 | 
            +
                    self._TopicName = TopicName
         | 
| 15401 | 
            +
             | 
| 15402 | 
            +
             | 
| 15403 | 
            +
                def _deserialize(self, params):
         | 
| 15404 | 
            +
                    self._ClusterId = params.get("ClusterId")
         | 
| 15405 | 
            +
                    self._NamespaceId = params.get("NamespaceId")
         | 
| 15406 | 
            +
                    self._TopicName = params.get("TopicName")
         | 
| 15407 | 
            +
                    memeber_set = set(params.keys())
         | 
| 15408 | 
            +
                    for name, value in vars(self).items():
         | 
| 15409 | 
            +
                        property_name = name[1:]
         | 
| 15410 | 
            +
                        if property_name in memeber_set:
         | 
| 15411 | 
            +
                            memeber_set.remove(property_name)
         | 
| 15412 | 
            +
                    if len(memeber_set) > 0:
         | 
| 15413 | 
            +
                        warnings.warn("%s fileds are useless." % ",".join(memeber_set))
         | 
| 15414 | 
            +
                    
         | 
| 15415 | 
            +
             | 
| 15416 | 
            +
             | 
| 15417 | 
            +
            class DescribeRocketMQTopicStatsResponse(AbstractModel):
         | 
| 15418 | 
            +
                """DescribeRocketMQTopicStats返回参数结构体
         | 
| 15419 | 
            +
             | 
| 15420 | 
            +
                """
         | 
| 15421 | 
            +
             | 
| 15422 | 
            +
                def __init__(self):
         | 
| 15423 | 
            +
                    r"""
         | 
| 15424 | 
            +
                    :param _TopicStatsList: 生产详情列表
         | 
| 15425 | 
            +
                    :type TopicStatsList: list of TopicStats
         | 
| 15426 | 
            +
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 15427 | 
            +
                    :type RequestId: str
         | 
| 15428 | 
            +
                    """
         | 
| 15429 | 
            +
                    self._TopicStatsList = None
         | 
| 15430 | 
            +
                    self._RequestId = None
         | 
| 15431 | 
            +
             | 
| 15432 | 
            +
                @property
         | 
| 15433 | 
            +
                def TopicStatsList(self):
         | 
| 15434 | 
            +
                    return self._TopicStatsList
         | 
| 15435 | 
            +
             | 
| 15436 | 
            +
                @TopicStatsList.setter
         | 
| 15437 | 
            +
                def TopicStatsList(self, TopicStatsList):
         | 
| 15438 | 
            +
                    self._TopicStatsList = TopicStatsList
         | 
| 15439 | 
            +
             | 
| 15440 | 
            +
                @property
         | 
| 15441 | 
            +
                def RequestId(self):
         | 
| 15442 | 
            +
                    return self._RequestId
         | 
| 15443 | 
            +
             | 
| 15444 | 
            +
                @RequestId.setter
         | 
| 15445 | 
            +
                def RequestId(self, RequestId):
         | 
| 15446 | 
            +
                    self._RequestId = RequestId
         | 
| 15447 | 
            +
             | 
| 15448 | 
            +
             | 
| 15449 | 
            +
                def _deserialize(self, params):
         | 
| 15450 | 
            +
                    if params.get("TopicStatsList") is not None:
         | 
| 15451 | 
            +
                        self._TopicStatsList = []
         | 
| 15452 | 
            +
                        for item in params.get("TopicStatsList"):
         | 
| 15453 | 
            +
                            obj = TopicStats()
         | 
| 15454 | 
            +
                            obj._deserialize(item)
         | 
| 15455 | 
            +
                            self._TopicStatsList.append(obj)
         | 
| 15456 | 
            +
                    self._RequestId = params.get("RequestId")
         | 
| 15457 | 
            +
             | 
| 15458 | 
            +
             | 
| 15459 | 
            +
            class DescribeRocketMQTopicsByGroupRequest(AbstractModel):
         | 
| 15460 | 
            +
                """DescribeRocketMQTopicsByGroup请求参数结构体
         | 
| 15461 | 
            +
             | 
| 15462 | 
            +
                """
         | 
| 15463 | 
            +
             | 
| 15464 | 
            +
                def __init__(self):
         | 
| 15465 | 
            +
                    r"""
         | 
| 15466 | 
            +
                    :param _ClusterId: 集群ID
         | 
| 15467 | 
            +
                    :type ClusterId: str
         | 
| 15468 | 
            +
                    :param _NamespaceId: 命名空间名称
         | 
| 15469 | 
            +
                    :type NamespaceId: str
         | 
| 15470 | 
            +
                    :param _GroupId: 消费组名称
         | 
| 15471 | 
            +
                    :type GroupId: str
         | 
| 15472 | 
            +
                    :param _Offset: 偏移量
         | 
| 15473 | 
            +
                    :type Offset: int
         | 
| 15474 | 
            +
                    :param _Limit: 限制条数
         | 
| 15475 | 
            +
                    :type Limit: int
         | 
| 15476 | 
            +
                    """
         | 
| 15477 | 
            +
                    self._ClusterId = None
         | 
| 15478 | 
            +
                    self._NamespaceId = None
         | 
| 15479 | 
            +
                    self._GroupId = None
         | 
| 15480 | 
            +
                    self._Offset = None
         | 
| 15481 | 
            +
                    self._Limit = None
         | 
| 15482 | 
            +
             | 
| 15483 | 
            +
                @property
         | 
| 15484 | 
            +
                def ClusterId(self):
         | 
| 15485 | 
            +
                    return self._ClusterId
         | 
| 15486 | 
            +
             | 
| 15487 | 
            +
                @ClusterId.setter
         | 
| 15488 | 
            +
                def ClusterId(self, ClusterId):
         | 
| 15489 | 
            +
                    self._ClusterId = ClusterId
         | 
| 15490 | 
            +
             | 
| 15491 | 
            +
                @property
         | 
| 15492 | 
            +
                def NamespaceId(self):
         | 
| 15493 | 
            +
                    return self._NamespaceId
         | 
| 15494 | 
            +
             | 
| 15495 | 
            +
                @NamespaceId.setter
         | 
| 15496 | 
            +
                def NamespaceId(self, NamespaceId):
         | 
| 15497 | 
            +
                    self._NamespaceId = NamespaceId
         | 
| 15498 | 
            +
             | 
| 15499 | 
            +
                @property
         | 
| 15500 | 
            +
                def GroupId(self):
         | 
| 15501 | 
            +
                    return self._GroupId
         | 
| 15502 | 
            +
             | 
| 15503 | 
            +
                @GroupId.setter
         | 
| 15504 | 
            +
                def GroupId(self, GroupId):
         | 
| 15505 | 
            +
                    self._GroupId = GroupId
         | 
| 15506 | 
            +
             | 
| 15507 | 
            +
                @property
         | 
| 15508 | 
            +
                def Offset(self):
         | 
| 15509 | 
            +
                    return self._Offset
         | 
| 15510 | 
            +
             | 
| 15511 | 
            +
                @Offset.setter
         | 
| 15512 | 
            +
                def Offset(self, Offset):
         | 
| 15513 | 
            +
                    self._Offset = Offset
         | 
| 15514 | 
            +
             | 
| 15515 | 
            +
                @property
         | 
| 15516 | 
            +
                def Limit(self):
         | 
| 15517 | 
            +
                    return self._Limit
         | 
| 15518 | 
            +
             | 
| 15519 | 
            +
                @Limit.setter
         | 
| 15520 | 
            +
                def Limit(self, Limit):
         | 
| 15521 | 
            +
                    self._Limit = Limit
         | 
| 15522 | 
            +
             | 
| 15523 | 
            +
             | 
| 15524 | 
            +
                def _deserialize(self, params):
         | 
| 15525 | 
            +
                    self._ClusterId = params.get("ClusterId")
         | 
| 15526 | 
            +
                    self._NamespaceId = params.get("NamespaceId")
         | 
| 15527 | 
            +
                    self._GroupId = params.get("GroupId")
         | 
| 15528 | 
            +
                    self._Offset = params.get("Offset")
         | 
| 15529 | 
            +
                    self._Limit = params.get("Limit")
         | 
| 15530 | 
            +
                    memeber_set = set(params.keys())
         | 
| 15531 | 
            +
                    for name, value in vars(self).items():
         | 
| 15532 | 
            +
                        property_name = name[1:]
         | 
| 15533 | 
            +
                        if property_name in memeber_set:
         | 
| 15534 | 
            +
                            memeber_set.remove(property_name)
         | 
| 15535 | 
            +
                    if len(memeber_set) > 0:
         | 
| 15536 | 
            +
                        warnings.warn("%s fileds are useless." % ",".join(memeber_set))
         | 
| 15537 | 
            +
                    
         | 
| 15538 | 
            +
             | 
| 15539 | 
            +
             | 
| 15540 | 
            +
            class DescribeRocketMQTopicsByGroupResponse(AbstractModel):
         | 
| 15541 | 
            +
                """DescribeRocketMQTopicsByGroup返回参数结构体
         | 
| 15542 | 
            +
             | 
| 15543 | 
            +
                """
         | 
| 15544 | 
            +
             | 
| 15545 | 
            +
                def __init__(self):
         | 
| 15546 | 
            +
                    r"""
         | 
| 15547 | 
            +
                    :param _TotalCount: 总条数
         | 
| 15548 | 
            +
                    :type TotalCount: int
         | 
| 15549 | 
            +
                    :param _Topics: 主题列表
         | 
| 15550 | 
            +
                    :type Topics: list of str
         | 
| 15551 | 
            +
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 15552 | 
            +
                    :type RequestId: str
         | 
| 15553 | 
            +
                    """
         | 
| 15554 | 
            +
                    self._TotalCount = None
         | 
| 15555 | 
            +
                    self._Topics = None
         | 
| 15556 | 
            +
                    self._RequestId = None
         | 
| 15557 | 
            +
             | 
| 15558 | 
            +
                @property
         | 
| 15559 | 
            +
                def TotalCount(self):
         | 
| 15560 | 
            +
                    return self._TotalCount
         | 
| 15561 | 
            +
             | 
| 15562 | 
            +
                @TotalCount.setter
         | 
| 15563 | 
            +
                def TotalCount(self, TotalCount):
         | 
| 15564 | 
            +
                    self._TotalCount = TotalCount
         | 
| 15565 | 
            +
             | 
| 15566 | 
            +
                @property
         | 
| 15567 | 
            +
                def Topics(self):
         | 
| 15568 | 
            +
                    return self._Topics
         | 
| 15569 | 
            +
             | 
| 15570 | 
            +
                @Topics.setter
         | 
| 15571 | 
            +
                def Topics(self, Topics):
         | 
| 15572 | 
            +
                    self._Topics = Topics
         | 
| 15573 | 
            +
             | 
| 15574 | 
            +
                @property
         | 
| 15575 | 
            +
                def RequestId(self):
         | 
| 15576 | 
            +
                    return self._RequestId
         | 
| 15577 | 
            +
             | 
| 15578 | 
            +
                @RequestId.setter
         | 
| 15579 | 
            +
                def RequestId(self, RequestId):
         | 
| 15580 | 
            +
                    self._RequestId = RequestId
         | 
| 15581 | 
            +
             | 
| 15582 | 
            +
             | 
| 15583 | 
            +
                def _deserialize(self, params):
         | 
| 15584 | 
            +
                    self._TotalCount = params.get("TotalCount")
         | 
| 15585 | 
            +
                    self._Topics = params.get("Topics")
         | 
| 15586 | 
            +
                    self._RequestId = params.get("RequestId")
         | 
| 15587 | 
            +
             | 
| 15588 | 
            +
             | 
| 15360 15589 | 
             
            class DescribeRocketMQTopicsRequest(AbstractModel):
         | 
| 15361 15590 | 
             
                """DescribeRocketMQTopics请求参数结构体
         | 
| 15362 15591 |  | 
| @@ -19361,6 +19590,100 @@ class ModifyRocketMQGroupResponse(AbstractModel): | |
| 19361 19590 | 
             
                    self._RequestId = params.get("RequestId")
         | 
| 19362 19591 |  | 
| 19363 19592 |  | 
| 19593 | 
            +
            class ModifyRocketMQInstanceRequest(AbstractModel):
         | 
| 19594 | 
            +
                """ModifyRocketMQInstance请求参数结构体
         | 
| 19595 | 
            +
             | 
| 19596 | 
            +
                """
         | 
| 19597 | 
            +
             | 
| 19598 | 
            +
                def __init__(self):
         | 
| 19599 | 
            +
                    r"""
         | 
| 19600 | 
            +
                    :param _InstanceId: 专享实例ID
         | 
| 19601 | 
            +
                    :type InstanceId: str
         | 
| 19602 | 
            +
                    :param _Name: 实例名称
         | 
| 19603 | 
            +
                    :type Name: str
         | 
| 19604 | 
            +
                    :param _Remark: 实例备注信息
         | 
| 19605 | 
            +
                    :type Remark: str
         | 
| 19606 | 
            +
                    :param _MessageRetention: 实例消息保留时间,小时为单位
         | 
| 19607 | 
            +
                    :type MessageRetention: int
         | 
| 19608 | 
            +
                    """
         | 
| 19609 | 
            +
                    self._InstanceId = None
         | 
| 19610 | 
            +
                    self._Name = None
         | 
| 19611 | 
            +
                    self._Remark = None
         | 
| 19612 | 
            +
                    self._MessageRetention = None
         | 
| 19613 | 
            +
             | 
| 19614 | 
            +
                @property
         | 
| 19615 | 
            +
                def InstanceId(self):
         | 
| 19616 | 
            +
                    return self._InstanceId
         | 
| 19617 | 
            +
             | 
| 19618 | 
            +
                @InstanceId.setter
         | 
| 19619 | 
            +
                def InstanceId(self, InstanceId):
         | 
| 19620 | 
            +
                    self._InstanceId = InstanceId
         | 
| 19621 | 
            +
             | 
| 19622 | 
            +
                @property
         | 
| 19623 | 
            +
                def Name(self):
         | 
| 19624 | 
            +
                    return self._Name
         | 
| 19625 | 
            +
             | 
| 19626 | 
            +
                @Name.setter
         | 
| 19627 | 
            +
                def Name(self, Name):
         | 
| 19628 | 
            +
                    self._Name = Name
         | 
| 19629 | 
            +
             | 
| 19630 | 
            +
                @property
         | 
| 19631 | 
            +
                def Remark(self):
         | 
| 19632 | 
            +
                    return self._Remark
         | 
| 19633 | 
            +
             | 
| 19634 | 
            +
                @Remark.setter
         | 
| 19635 | 
            +
                def Remark(self, Remark):
         | 
| 19636 | 
            +
                    self._Remark = Remark
         | 
| 19637 | 
            +
             | 
| 19638 | 
            +
                @property
         | 
| 19639 | 
            +
                def MessageRetention(self):
         | 
| 19640 | 
            +
                    return self._MessageRetention
         | 
| 19641 | 
            +
             | 
| 19642 | 
            +
                @MessageRetention.setter
         | 
| 19643 | 
            +
                def MessageRetention(self, MessageRetention):
         | 
| 19644 | 
            +
                    self._MessageRetention = MessageRetention
         | 
| 19645 | 
            +
             | 
| 19646 | 
            +
             | 
| 19647 | 
            +
                def _deserialize(self, params):
         | 
| 19648 | 
            +
                    self._InstanceId = params.get("InstanceId")
         | 
| 19649 | 
            +
                    self._Name = params.get("Name")
         | 
| 19650 | 
            +
                    self._Remark = params.get("Remark")
         | 
| 19651 | 
            +
                    self._MessageRetention = params.get("MessageRetention")
         | 
| 19652 | 
            +
                    memeber_set = set(params.keys())
         | 
| 19653 | 
            +
                    for name, value in vars(self).items():
         | 
| 19654 | 
            +
                        property_name = name[1:]
         | 
| 19655 | 
            +
                        if property_name in memeber_set:
         | 
| 19656 | 
            +
                            memeber_set.remove(property_name)
         | 
| 19657 | 
            +
                    if len(memeber_set) > 0:
         | 
| 19658 | 
            +
                        warnings.warn("%s fileds are useless." % ",".join(memeber_set))
         | 
| 19659 | 
            +
                    
         | 
| 19660 | 
            +
             | 
| 19661 | 
            +
             | 
| 19662 | 
            +
            class ModifyRocketMQInstanceResponse(AbstractModel):
         | 
| 19663 | 
            +
                """ModifyRocketMQInstance返回参数结构体
         | 
| 19664 | 
            +
             | 
| 19665 | 
            +
                """
         | 
| 19666 | 
            +
             | 
| 19667 | 
            +
                def __init__(self):
         | 
| 19668 | 
            +
                    r"""
         | 
| 19669 | 
            +
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         | 
| 19670 | 
            +
                    :type RequestId: str
         | 
| 19671 | 
            +
                    """
         | 
| 19672 | 
            +
                    self._RequestId = None
         | 
| 19673 | 
            +
             | 
| 19674 | 
            +
                @property
         | 
| 19675 | 
            +
                def RequestId(self):
         | 
| 19676 | 
            +
                    return self._RequestId
         | 
| 19677 | 
            +
             | 
| 19678 | 
            +
                @RequestId.setter
         | 
| 19679 | 
            +
                def RequestId(self, RequestId):
         | 
| 19680 | 
            +
                    self._RequestId = RequestId
         | 
| 19681 | 
            +
             | 
| 19682 | 
            +
             | 
| 19683 | 
            +
                def _deserialize(self, params):
         | 
| 19684 | 
            +
                    self._RequestId = params.get("RequestId")
         | 
| 19685 | 
            +
             | 
| 19686 | 
            +
             | 
| 19364 19687 | 
             
            class ModifyRocketMQInstanceSpecRequest(AbstractModel):
         | 
| 19365 19688 | 
             
                """ModifyRocketMQInstanceSpec请求参数结构体
         | 
| 19366 19689 |  | 
| @@ -28584,6 +28907,105 @@ class TopicRecord(AbstractModel): | |
| 28584 28907 |  | 
| 28585 28908 |  | 
| 28586 28909 |  | 
| 28910 | 
            +
            class TopicStats(AbstractModel):
         | 
| 28911 | 
            +
                """Topic状态
         | 
| 28912 | 
            +
             | 
| 28913 | 
            +
                """
         | 
| 28914 | 
            +
             | 
| 28915 | 
            +
                def __init__(self):
         | 
| 28916 | 
            +
                    r"""
         | 
| 28917 | 
            +
                    :param _BrokerName: 所属Broker节点
         | 
| 28918 | 
            +
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 28919 | 
            +
                    :type BrokerName: str
         | 
| 28920 | 
            +
                    :param _QueueId: 队列编号
         | 
| 28921 | 
            +
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 28922 | 
            +
                    :type QueueId: int
         | 
| 28923 | 
            +
                    :param _MinOffset: 最小位点
         | 
| 28924 | 
            +
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 28925 | 
            +
                    :type MinOffset: int
         | 
| 28926 | 
            +
                    :param _MaxOffset: 最大位点
         | 
| 28927 | 
            +
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 28928 | 
            +
                    :type MaxOffset: int
         | 
| 28929 | 
            +
                    :param _MessageCount: 消息条数
         | 
| 28930 | 
            +
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 28931 | 
            +
                    :type MessageCount: int
         | 
| 28932 | 
            +
                    :param _LastUpdateTimestamp: 消息最后写入时间
         | 
| 28933 | 
            +
            注意:此字段可能返回 null,表示取不到有效值。
         | 
| 28934 | 
            +
                    :type LastUpdateTimestamp: int
         | 
| 28935 | 
            +
                    """
         | 
| 28936 | 
            +
                    self._BrokerName = None
         | 
| 28937 | 
            +
                    self._QueueId = None
         | 
| 28938 | 
            +
                    self._MinOffset = None
         | 
| 28939 | 
            +
                    self._MaxOffset = None
         | 
| 28940 | 
            +
                    self._MessageCount = None
         | 
| 28941 | 
            +
                    self._LastUpdateTimestamp = None
         | 
| 28942 | 
            +
             | 
| 28943 | 
            +
                @property
         | 
| 28944 | 
            +
                def BrokerName(self):
         | 
| 28945 | 
            +
                    return self._BrokerName
         | 
| 28946 | 
            +
             | 
| 28947 | 
            +
                @BrokerName.setter
         | 
| 28948 | 
            +
                def BrokerName(self, BrokerName):
         | 
| 28949 | 
            +
                    self._BrokerName = BrokerName
         | 
| 28950 | 
            +
             | 
| 28951 | 
            +
                @property
         | 
| 28952 | 
            +
                def QueueId(self):
         | 
| 28953 | 
            +
                    return self._QueueId
         | 
| 28954 | 
            +
             | 
| 28955 | 
            +
                @QueueId.setter
         | 
| 28956 | 
            +
                def QueueId(self, QueueId):
         | 
| 28957 | 
            +
                    self._QueueId = QueueId
         | 
| 28958 | 
            +
             | 
| 28959 | 
            +
                @property
         | 
| 28960 | 
            +
                def MinOffset(self):
         | 
| 28961 | 
            +
                    return self._MinOffset
         | 
| 28962 | 
            +
             | 
| 28963 | 
            +
                @MinOffset.setter
         | 
| 28964 | 
            +
                def MinOffset(self, MinOffset):
         | 
| 28965 | 
            +
                    self._MinOffset = MinOffset
         | 
| 28966 | 
            +
             | 
| 28967 | 
            +
                @property
         | 
| 28968 | 
            +
                def MaxOffset(self):
         | 
| 28969 | 
            +
                    return self._MaxOffset
         | 
| 28970 | 
            +
             | 
| 28971 | 
            +
                @MaxOffset.setter
         | 
| 28972 | 
            +
                def MaxOffset(self, MaxOffset):
         | 
| 28973 | 
            +
                    self._MaxOffset = MaxOffset
         | 
| 28974 | 
            +
             | 
| 28975 | 
            +
                @property
         | 
| 28976 | 
            +
                def MessageCount(self):
         | 
| 28977 | 
            +
                    return self._MessageCount
         | 
| 28978 | 
            +
             | 
| 28979 | 
            +
                @MessageCount.setter
         | 
| 28980 | 
            +
                def MessageCount(self, MessageCount):
         | 
| 28981 | 
            +
                    self._MessageCount = MessageCount
         | 
| 28982 | 
            +
             | 
| 28983 | 
            +
                @property
         | 
| 28984 | 
            +
                def LastUpdateTimestamp(self):
         | 
| 28985 | 
            +
                    return self._LastUpdateTimestamp
         | 
| 28986 | 
            +
             | 
| 28987 | 
            +
                @LastUpdateTimestamp.setter
         | 
| 28988 | 
            +
                def LastUpdateTimestamp(self, LastUpdateTimestamp):
         | 
| 28989 | 
            +
                    self._LastUpdateTimestamp = LastUpdateTimestamp
         | 
| 28990 | 
            +
             | 
| 28991 | 
            +
             | 
| 28992 | 
            +
                def _deserialize(self, params):
         | 
| 28993 | 
            +
                    self._BrokerName = params.get("BrokerName")
         | 
| 28994 | 
            +
                    self._QueueId = params.get("QueueId")
         | 
| 28995 | 
            +
                    self._MinOffset = params.get("MinOffset")
         | 
| 28996 | 
            +
                    self._MaxOffset = params.get("MaxOffset")
         | 
| 28997 | 
            +
                    self._MessageCount = params.get("MessageCount")
         | 
| 28998 | 
            +
                    self._LastUpdateTimestamp = params.get("LastUpdateTimestamp")
         | 
| 28999 | 
            +
                    memeber_set = set(params.keys())
         | 
| 29000 | 
            +
                    for name, value in vars(self).items():
         | 
| 29001 | 
            +
                        property_name = name[1:]
         | 
| 29002 | 
            +
                        if property_name in memeber_set:
         | 
| 29003 | 
            +
                            memeber_set.remove(property_name)
         | 
| 29004 | 
            +
                    if len(memeber_set) > 0:
         | 
| 29005 | 
            +
                        warnings.warn("%s fileds are useless." % ",".join(memeber_set))
         | 
| 29006 | 
            +
                    
         | 
| 29007 | 
            +
             | 
| 29008 | 
            +
             | 
| 28587 29009 | 
             
            class TraceResult(AbstractModel):
         | 
| 28588 29010 | 
             
                """消息轨迹结果
         | 
| 28589 29011 |  |