tencentcloud-sdk-python 3.0.1015__py2.py3-none-any.whl → 3.0.1017__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.

Potentially problematic release.


This version of tencentcloud-sdk-python might be problematic. Click here for more details.

Files changed (27) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ccc/v20200210/models.py +29 -0
  3. tencentcloud/clb/v20180317/errorcodes.py +3 -0
  4. tencentcloud/csip/v20221121/models.py +39 -0
  5. tencentcloud/dnspod/v20210323/dnspod_client.py +92 -0
  6. tencentcloud/dnspod/v20210323/errorcodes.py +33 -0
  7. tencentcloud/dnspod/v20210323/models.py +462 -0
  8. tencentcloud/drm/v20181115/drm_client.py +23 -0
  9. tencentcloud/drm/v20181115/models.py +118 -0
  10. tencentcloud/ess/v20201111/ess_client.py +30 -0
  11. tencentcloud/ess/v20201111/models.py +172 -3
  12. tencentcloud/essbasic/v20210526/errorcodes.py +3 -0
  13. tencentcloud/essbasic/v20210526/essbasic_client.py +101 -42
  14. tencentcloud/essbasic/v20210526/models.py +479 -133
  15. tencentcloud/facefusion/v20181201/models.py +5 -4
  16. tencentcloud/tdmq/v20200217/models.py +582 -0
  17. tencentcloud/tdmq/v20200217/tdmq_client.py +69 -0
  18. tencentcloud/teo/v20220901/models.py +1 -1
  19. tencentcloud/tione/v20211111/models.py +62 -0
  20. tencentcloud/vpc/v20170312/models.py +17 -3
  21. tencentcloud/vrs/v20200824/models.py +26 -1
  22. tencentcloud/waf/v20180125/waf_client.py +6 -2
  23. {tencentcloud_sdk_python-3.0.1015.dist-info → tencentcloud_sdk_python-3.0.1017.dist-info}/METADATA +1 -1
  24. {tencentcloud_sdk_python-3.0.1015.dist-info → tencentcloud_sdk_python-3.0.1017.dist-info}/RECORD +27 -27
  25. {tencentcloud_sdk_python-3.0.1015.dist-info → tencentcloud_sdk_python-3.0.1017.dist-info}/LICENSE +0 -0
  26. {tencentcloud_sdk_python-3.0.1015.dist-info → tencentcloud_sdk_python-3.0.1017.dist-info}/WHEEL +0 -0
  27. {tencentcloud_sdk_python-3.0.1015.dist-info → tencentcloud_sdk_python-3.0.1017.dist-info}/top_level.txt +0 -0
@@ -1088,13 +1088,14 @@ class MergeInfo(AbstractModel):
1088
1088
 
1089
1089
  def __init__(self):
1090
1090
  r"""
1091
- :param _Image: 输入图片base64
1091
+ :param _Image: 输入图片base64
1092
1092
  :type Image: str
1093
- :param _Url: 输入图片url
1093
+ :param _Url: 输入图片url
1094
+ Url、Image必须提供一个,如果都提供,只使用 Url。
1094
1095
  :type Url: str
1095
- :param _InputImageFaceRect: 上传的图片人脸位置信息(人脸框)
1096
+ :param _InputImageFaceRect: 输入图片人脸位置信息(人脸框)。不填默认取输入图中最大人脸。
1096
1097
  :type InputImageFaceRect: :class:`tencentcloud.facefusion.v20181201.models.FaceRect`
1097
- :param _TemplateFaceID: 控制台上传的素材人脸ID,不填默认取最大人脸
1098
+ :param _TemplateFaceID: 素材人脸ID,不填默认取素材中最大人脸。
1098
1099
  :type TemplateFaceID: str
1099
1100
  """
1100
1101
  self._Image = None
@@ -2095,6 +2095,131 @@ class Consumer(AbstractModel):
2095
2095
 
2096
2096
 
2097
2097
 
2098
+ class ConsumerStats(AbstractModel):
2099
+ """消费详情
2100
+
2101
+ """
2102
+
2103
+ def __init__(self):
2104
+ r"""
2105
+ :param _TopicName: 主题名
2106
+ 注意:此字段可能返回 null,表示取不到有效值。
2107
+ :type TopicName: str
2108
+ :param _BrokerName: 所属Broker
2109
+ 注意:此字段可能返回 null,表示取不到有效值。
2110
+ :type BrokerName: str
2111
+ :param _QueueId: 队列编号
2112
+ 注意:此字段可能返回 null,表示取不到有效值。
2113
+ :type QueueId: int
2114
+ :param _ConsumerClientId: 消费者ID
2115
+ 注意:此字段可能返回 null,表示取不到有效值。
2116
+ :type ConsumerClientId: str
2117
+ :param _ConsumerOffset: 消费位点
2118
+ 注意:此字段可能返回 null,表示取不到有效值。
2119
+ :type ConsumerOffset: int
2120
+ :param _BrokerOffset: 服务端位点
2121
+ 注意:此字段可能返回 null,表示取不到有效值。
2122
+ :type BrokerOffset: int
2123
+ :param _DiffTotal: 消息堆积条数
2124
+ 注意:此字段可能返回 null,表示取不到有效值。
2125
+ :type DiffTotal: int
2126
+ :param _LastTimestamp: 最近消费时间
2127
+ 注意:此字段可能返回 null,表示取不到有效值。
2128
+ :type LastTimestamp: int
2129
+ """
2130
+ self._TopicName = None
2131
+ self._BrokerName = None
2132
+ self._QueueId = None
2133
+ self._ConsumerClientId = None
2134
+ self._ConsumerOffset = None
2135
+ self._BrokerOffset = None
2136
+ self._DiffTotal = None
2137
+ self._LastTimestamp = None
2138
+
2139
+ @property
2140
+ def TopicName(self):
2141
+ return self._TopicName
2142
+
2143
+ @TopicName.setter
2144
+ def TopicName(self, TopicName):
2145
+ self._TopicName = TopicName
2146
+
2147
+ @property
2148
+ def BrokerName(self):
2149
+ return self._BrokerName
2150
+
2151
+ @BrokerName.setter
2152
+ def BrokerName(self, BrokerName):
2153
+ self._BrokerName = BrokerName
2154
+
2155
+ @property
2156
+ def QueueId(self):
2157
+ return self._QueueId
2158
+
2159
+ @QueueId.setter
2160
+ def QueueId(self, QueueId):
2161
+ self._QueueId = QueueId
2162
+
2163
+ @property
2164
+ def ConsumerClientId(self):
2165
+ return self._ConsumerClientId
2166
+
2167
+ @ConsumerClientId.setter
2168
+ def ConsumerClientId(self, ConsumerClientId):
2169
+ self._ConsumerClientId = ConsumerClientId
2170
+
2171
+ @property
2172
+ def ConsumerOffset(self):
2173
+ return self._ConsumerOffset
2174
+
2175
+ @ConsumerOffset.setter
2176
+ def ConsumerOffset(self, ConsumerOffset):
2177
+ self._ConsumerOffset = ConsumerOffset
2178
+
2179
+ @property
2180
+ def BrokerOffset(self):
2181
+ return self._BrokerOffset
2182
+
2183
+ @BrokerOffset.setter
2184
+ def BrokerOffset(self, BrokerOffset):
2185
+ self._BrokerOffset = BrokerOffset
2186
+
2187
+ @property
2188
+ def DiffTotal(self):
2189
+ return self._DiffTotal
2190
+
2191
+ @DiffTotal.setter
2192
+ def DiffTotal(self, DiffTotal):
2193
+ self._DiffTotal = DiffTotal
2194
+
2195
+ @property
2196
+ def LastTimestamp(self):
2197
+ return self._LastTimestamp
2198
+
2199
+ @LastTimestamp.setter
2200
+ def LastTimestamp(self, LastTimestamp):
2201
+ self._LastTimestamp = LastTimestamp
2202
+
2203
+
2204
+ def _deserialize(self, params):
2205
+ self._TopicName = params.get("TopicName")
2206
+ self._BrokerName = params.get("BrokerName")
2207
+ self._QueueId = params.get("QueueId")
2208
+ self._ConsumerClientId = params.get("ConsumerClientId")
2209
+ self._ConsumerOffset = params.get("ConsumerOffset")
2210
+ self._BrokerOffset = params.get("BrokerOffset")
2211
+ self._DiffTotal = params.get("DiffTotal")
2212
+ self._LastTimestamp = params.get("LastTimestamp")
2213
+ memeber_set = set(params.keys())
2214
+ for name, value in vars(self).items():
2215
+ property_name = name[1:]
2216
+ if property_name in memeber_set:
2217
+ memeber_set.remove(property_name)
2218
+ if len(memeber_set) > 0:
2219
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
2220
+
2221
+
2222
+
2098
2223
  class ConsumersSchedule(AbstractModel):
2099
2224
  """消费进度详情
2100
2225
 
@@ -10373,6 +10498,105 @@ class DescribeRocketMQClustersResponse(AbstractModel):
10373
10498
  self._RequestId = params.get("RequestId")
10374
10499
 
10375
10500
 
10501
+ class DescribeRocketMQConsumeStatsRequest(AbstractModel):
10502
+ """DescribeRocketMQConsumeStats请求参数结构体
10503
+
10504
+ """
10505
+
10506
+ def __init__(self):
10507
+ r"""
10508
+ :param _ClusterId: 实例ID
10509
+ :type ClusterId: str
10510
+ :param _NamespaceId: 命名空间
10511
+ :type NamespaceId: str
10512
+ :param _ConsumerGroup: 消费组
10513
+ :type ConsumerGroup: str
10514
+ """
10515
+ self._ClusterId = None
10516
+ self._NamespaceId = None
10517
+ self._ConsumerGroup = None
10518
+
10519
+ @property
10520
+ def ClusterId(self):
10521
+ return self._ClusterId
10522
+
10523
+ @ClusterId.setter
10524
+ def ClusterId(self, ClusterId):
10525
+ self._ClusterId = ClusterId
10526
+
10527
+ @property
10528
+ def NamespaceId(self):
10529
+ return self._NamespaceId
10530
+
10531
+ @NamespaceId.setter
10532
+ def NamespaceId(self, NamespaceId):
10533
+ self._NamespaceId = NamespaceId
10534
+
10535
+ @property
10536
+ def ConsumerGroup(self):
10537
+ return self._ConsumerGroup
10538
+
10539
+ @ConsumerGroup.setter
10540
+ def ConsumerGroup(self, ConsumerGroup):
10541
+ self._ConsumerGroup = ConsumerGroup
10542
+
10543
+
10544
+ def _deserialize(self, params):
10545
+ self._ClusterId = params.get("ClusterId")
10546
+ self._NamespaceId = params.get("NamespaceId")
10547
+ self._ConsumerGroup = params.get("ConsumerGroup")
10548
+ memeber_set = set(params.keys())
10549
+ for name, value in vars(self).items():
10550
+ property_name = name[1:]
10551
+ if property_name in memeber_set:
10552
+ memeber_set.remove(property_name)
10553
+ if len(memeber_set) > 0:
10554
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
10555
+
10556
+
10557
+
10558
+ class DescribeRocketMQConsumeStatsResponse(AbstractModel):
10559
+ """DescribeRocketMQConsumeStats返回参数结构体
10560
+
10561
+ """
10562
+
10563
+ def __init__(self):
10564
+ r"""
10565
+ :param _ConsumerStatsList: 消费详情列表
10566
+ :type ConsumerStatsList: list of ConsumerStats
10567
+ :param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10568
+ :type RequestId: str
10569
+ """
10570
+ self._ConsumerStatsList = None
10571
+ self._RequestId = None
10572
+
10573
+ @property
10574
+ def ConsumerStatsList(self):
10575
+ return self._ConsumerStatsList
10576
+
10577
+ @ConsumerStatsList.setter
10578
+ def ConsumerStatsList(self, ConsumerStatsList):
10579
+ self._ConsumerStatsList = ConsumerStatsList
10580
+
10581
+ @property
10582
+ def RequestId(self):
10583
+ return self._RequestId
10584
+
10585
+ @RequestId.setter
10586
+ def RequestId(self, RequestId):
10587
+ self._RequestId = RequestId
10588
+
10589
+
10590
+ def _deserialize(self, params):
10591
+ if params.get("ConsumerStatsList") is not None:
10592
+ self._ConsumerStatsList = []
10593
+ for item in params.get("ConsumerStatsList"):
10594
+ obj = ConsumerStats()
10595
+ obj._deserialize(item)
10596
+ self._ConsumerStatsList.append(obj)
10597
+ self._RequestId = params.get("RequestId")
10598
+
10599
+
10376
10600
  class DescribeRocketMQConsumerConnectionsRequest(AbstractModel):
10377
10601
  """DescribeRocketMQConsumerConnections请求参数结构体
10378
10602
 
@@ -13244,6 +13468,177 @@ class DescribeSubscriptionsResponse(AbstractModel):
13244
13468
  self._RequestId = params.get("RequestId")
13245
13469
 
13246
13470
 
13471
+ class DescribeTopicMsgsRequest(AbstractModel):
13472
+ """DescribeTopicMsgs请求参数结构体
13473
+
13474
+ """
13475
+
13476
+ def __init__(self):
13477
+ r"""
13478
+ :param _EnvironmentId: 环境(命名空间)名称。
13479
+ :type EnvironmentId: str
13480
+ :param _TopicName: 主题名。
13481
+ :type TopicName: str
13482
+ :param _StartTime: 开始时间。
13483
+ :type StartTime: str
13484
+ :param _EndTime: 结束时间。
13485
+ :type EndTime: str
13486
+ :param _Offset: 起始下标,不填默认为0。
13487
+ :type Offset: int
13488
+ :param _Limit: 返回数量,不填则默认为10,最大值为20。
13489
+ :type Limit: int
13490
+ :param _MsgId: 消息ID。
13491
+ :type MsgId: str
13492
+ :param _ClusterId: Pulsar 集群的ID
13493
+ :type ClusterId: str
13494
+ """
13495
+ self._EnvironmentId = None
13496
+ self._TopicName = None
13497
+ self._StartTime = None
13498
+ self._EndTime = None
13499
+ self._Offset = None
13500
+ self._Limit = None
13501
+ self._MsgId = None
13502
+ self._ClusterId = None
13503
+
13504
+ @property
13505
+ def EnvironmentId(self):
13506
+ return self._EnvironmentId
13507
+
13508
+ @EnvironmentId.setter
13509
+ def EnvironmentId(self, EnvironmentId):
13510
+ self._EnvironmentId = EnvironmentId
13511
+
13512
+ @property
13513
+ def TopicName(self):
13514
+ return self._TopicName
13515
+
13516
+ @TopicName.setter
13517
+ def TopicName(self, TopicName):
13518
+ self._TopicName = TopicName
13519
+
13520
+ @property
13521
+ def StartTime(self):
13522
+ return self._StartTime
13523
+
13524
+ @StartTime.setter
13525
+ def StartTime(self, StartTime):
13526
+ self._StartTime = StartTime
13527
+
13528
+ @property
13529
+ def EndTime(self):
13530
+ return self._EndTime
13531
+
13532
+ @EndTime.setter
13533
+ def EndTime(self, EndTime):
13534
+ self._EndTime = EndTime
13535
+
13536
+ @property
13537
+ def Offset(self):
13538
+ return self._Offset
13539
+
13540
+ @Offset.setter
13541
+ def Offset(self, Offset):
13542
+ self._Offset = Offset
13543
+
13544
+ @property
13545
+ def Limit(self):
13546
+ return self._Limit
13547
+
13548
+ @Limit.setter
13549
+ def Limit(self, Limit):
13550
+ self._Limit = Limit
13551
+
13552
+ @property
13553
+ def MsgId(self):
13554
+ return self._MsgId
13555
+
13556
+ @MsgId.setter
13557
+ def MsgId(self, MsgId):
13558
+ self._MsgId = MsgId
13559
+
13560
+ @property
13561
+ def ClusterId(self):
13562
+ return self._ClusterId
13563
+
13564
+ @ClusterId.setter
13565
+ def ClusterId(self, ClusterId):
13566
+ self._ClusterId = ClusterId
13567
+
13568
+
13569
+ def _deserialize(self, params):
13570
+ self._EnvironmentId = params.get("EnvironmentId")
13571
+ self._TopicName = params.get("TopicName")
13572
+ self._StartTime = params.get("StartTime")
13573
+ self._EndTime = params.get("EndTime")
13574
+ self._Offset = params.get("Offset")
13575
+ self._Limit = params.get("Limit")
13576
+ self._MsgId = params.get("MsgId")
13577
+ self._ClusterId = params.get("ClusterId")
13578
+ memeber_set = set(params.keys())
13579
+ for name, value in vars(self).items():
13580
+ property_name = name[1:]
13581
+ if property_name in memeber_set:
13582
+ memeber_set.remove(property_name)
13583
+ if len(memeber_set) > 0:
13584
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
13585
+
13586
+
13587
+
13588
+ class DescribeTopicMsgsResponse(AbstractModel):
13589
+ """DescribeTopicMsgs返回参数结构体
13590
+
13591
+ """
13592
+
13593
+ def __init__(self):
13594
+ r"""
13595
+ :param _TotalCount: 总记录数。
13596
+ :type TotalCount: int
13597
+ :param _TopicMsgLogSets: 消息日志列表。
13598
+ :type TopicMsgLogSets: list of MsgLog
13599
+ :param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13600
+ :type RequestId: str
13601
+ """
13602
+ self._TotalCount = None
13603
+ self._TopicMsgLogSets = None
13604
+ self._RequestId = None
13605
+
13606
+ @property
13607
+ def TotalCount(self):
13608
+ return self._TotalCount
13609
+
13610
+ @TotalCount.setter
13611
+ def TotalCount(self, TotalCount):
13612
+ self._TotalCount = TotalCount
13613
+
13614
+ @property
13615
+ def TopicMsgLogSets(self):
13616
+ return self._TopicMsgLogSets
13617
+
13618
+ @TopicMsgLogSets.setter
13619
+ def TopicMsgLogSets(self, TopicMsgLogSets):
13620
+ self._TopicMsgLogSets = TopicMsgLogSets
13621
+
13622
+ @property
13623
+ def RequestId(self):
13624
+ return self._RequestId
13625
+
13626
+ @RequestId.setter
13627
+ def RequestId(self, RequestId):
13628
+ self._RequestId = RequestId
13629
+
13630
+
13631
+ def _deserialize(self, params):
13632
+ self._TotalCount = params.get("TotalCount")
13633
+ if params.get("TopicMsgLogSets") is not None:
13634
+ self._TopicMsgLogSets = []
13635
+ for item in params.get("TopicMsgLogSets"):
13636
+ obj = MsgLog()
13637
+ obj._deserialize(item)
13638
+ self._TopicMsgLogSets.append(obj)
13639
+ self._RequestId = params.get("RequestId")
13640
+
13641
+
13247
13642
  class DescribeTopicsRequest(AbstractModel):
13248
13643
  """DescribeTopics请求参数结构体
13249
13644
 
@@ -16665,6 +17060,75 @@ class ModifyTopicResponse(AbstractModel):
16665
17060
  self._RequestId = params.get("RequestId")
16666
17061
 
16667
17062
 
17063
+ class MsgLog(AbstractModel):
17064
+ """消息日志
17065
+
17066
+ """
17067
+
17068
+ def __init__(self):
17069
+ r"""
17070
+ :param _MsgId: 消息ID。
17071
+ :type MsgId: str
17072
+ :param _ProducerName: 生产者名称。
17073
+ :type ProducerName: str
17074
+ :param _ProduceTime: 生产时间。
17075
+ :type ProduceTime: str
17076
+ :param _ProducerAddr: 生产客户端地址。
17077
+ :type ProducerAddr: str
17078
+ """
17079
+ self._MsgId = None
17080
+ self._ProducerName = None
17081
+ self._ProduceTime = None
17082
+ self._ProducerAddr = None
17083
+
17084
+ @property
17085
+ def MsgId(self):
17086
+ return self._MsgId
17087
+
17088
+ @MsgId.setter
17089
+ def MsgId(self, MsgId):
17090
+ self._MsgId = MsgId
17091
+
17092
+ @property
17093
+ def ProducerName(self):
17094
+ return self._ProducerName
17095
+
17096
+ @ProducerName.setter
17097
+ def ProducerName(self, ProducerName):
17098
+ self._ProducerName = ProducerName
17099
+
17100
+ @property
17101
+ def ProduceTime(self):
17102
+ return self._ProduceTime
17103
+
17104
+ @ProduceTime.setter
17105
+ def ProduceTime(self, ProduceTime):
17106
+ self._ProduceTime = ProduceTime
17107
+
17108
+ @property
17109
+ def ProducerAddr(self):
17110
+ return self._ProducerAddr
17111
+
17112
+ @ProducerAddr.setter
17113
+ def ProducerAddr(self, ProducerAddr):
17114
+ self._ProducerAddr = ProducerAddr
17115
+
17116
+
17117
+ def _deserialize(self, params):
17118
+ self._MsgId = params.get("MsgId")
17119
+ self._ProducerName = params.get("ProducerName")
17120
+ self._ProduceTime = params.get("ProduceTime")
17121
+ self._ProducerAddr = params.get("ProducerAddr")
17122
+ memeber_set = set(params.keys())
17123
+ for name, value in vars(self).items():
17124
+ property_name = name[1:]
17125
+ if property_name in memeber_set:
17126
+ memeber_set.remove(property_name)
17127
+ if len(memeber_set) > 0:
17128
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
17129
+
17130
+
17131
+
16668
17132
  class PartitionsTopic(AbstractModel):
16669
17133
  """分区topic
16670
17134
 
@@ -24097,6 +24561,124 @@ class UnbindCmqDeadLetterResponse(AbstractModel):
24097
24561
  self._RequestId = params.get("RequestId")
24098
24562
 
24099
24563
 
24564
+ class VerifyRocketMQConsumeRequest(AbstractModel):
24565
+ """VerifyRocketMQConsume请求参数结构体
24566
+
24567
+ """
24568
+
24569
+ def __init__(self):
24570
+ r"""
24571
+ :param _ClusterId: 集群id
24572
+ :type ClusterId: str
24573
+ :param _NamespaceId: 命名空间
24574
+ :type NamespaceId: str
24575
+ :param _GroupId: 消费组ID
24576
+ :type GroupId: str
24577
+ :param _MsgId: 消息id
24578
+ :type MsgId: str
24579
+ :param _ClientId: 客户端ID
24580
+ :type ClientId: str
24581
+ :param _TopicName: topic名称
24582
+ :type TopicName: str
24583
+ """
24584
+ self._ClusterId = None
24585
+ self._NamespaceId = None
24586
+ self._GroupId = None
24587
+ self._MsgId = None
24588
+ self._ClientId = None
24589
+ self._TopicName = None
24590
+
24591
+ @property
24592
+ def ClusterId(self):
24593
+ return self._ClusterId
24594
+
24595
+ @ClusterId.setter
24596
+ def ClusterId(self, ClusterId):
24597
+ self._ClusterId = ClusterId
24598
+
24599
+ @property
24600
+ def NamespaceId(self):
24601
+ return self._NamespaceId
24602
+
24603
+ @NamespaceId.setter
24604
+ def NamespaceId(self, NamespaceId):
24605
+ self._NamespaceId = NamespaceId
24606
+
24607
+ @property
24608
+ def GroupId(self):
24609
+ return self._GroupId
24610
+
24611
+ @GroupId.setter
24612
+ def GroupId(self, GroupId):
24613
+ self._GroupId = GroupId
24614
+
24615
+ @property
24616
+ def MsgId(self):
24617
+ return self._MsgId
24618
+
24619
+ @MsgId.setter
24620
+ def MsgId(self, MsgId):
24621
+ self._MsgId = MsgId
24622
+
24623
+ @property
24624
+ def ClientId(self):
24625
+ return self._ClientId
24626
+
24627
+ @ClientId.setter
24628
+ def ClientId(self, ClientId):
24629
+ self._ClientId = ClientId
24630
+
24631
+ @property
24632
+ def TopicName(self):
24633
+ return self._TopicName
24634
+
24635
+ @TopicName.setter
24636
+ def TopicName(self, TopicName):
24637
+ self._TopicName = TopicName
24638
+
24639
+
24640
+ def _deserialize(self, params):
24641
+ self._ClusterId = params.get("ClusterId")
24642
+ self._NamespaceId = params.get("NamespaceId")
24643
+ self._GroupId = params.get("GroupId")
24644
+ self._MsgId = params.get("MsgId")
24645
+ self._ClientId = params.get("ClientId")
24646
+ self._TopicName = params.get("TopicName")
24647
+ memeber_set = set(params.keys())
24648
+ for name, value in vars(self).items():
24649
+ property_name = name[1:]
24650
+ if property_name in memeber_set:
24651
+ memeber_set.remove(property_name)
24652
+ if len(memeber_set) > 0:
24653
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
24654
+
24655
+
24656
+
24657
+ class VerifyRocketMQConsumeResponse(AbstractModel):
24658
+ """VerifyRocketMQConsume返回参数结构体
24659
+
24660
+ """
24661
+
24662
+ def __init__(self):
24663
+ r"""
24664
+ :param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
24665
+ :type RequestId: str
24666
+ """
24667
+ self._RequestId = None
24668
+
24669
+ @property
24670
+ def RequestId(self):
24671
+ return self._RequestId
24672
+
24673
+ @RequestId.setter
24674
+ def RequestId(self, RequestId):
24675
+ self._RequestId = RequestId
24676
+
24677
+
24678
+ def _deserialize(self, params):
24679
+ self._RequestId = params.get("RequestId")
24680
+
24681
+
24100
24682
  class VirtualHostQuota(AbstractModel):
24101
24683
  """vhost使用配额信息
24102
24684