tencentcloud-sdk-python 3.0.1322__py2.py3-none-any.whl → 3.0.1324__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 (50) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/aiart/v20221229/aiart_client.py +54 -0
  3. tencentcloud/aiart/v20221229/models.py +523 -0
  4. tencentcloud/antiddos/v20200309/models.py +27 -10
  5. tencentcloud/apm/v20210622/models.py +29 -2
  6. tencentcloud/cbs/v20170312/cbs_client.py +101 -0
  7. tencentcloud/cbs/v20170312/errorcodes.py +3 -0
  8. tencentcloud/cbs/v20170312/models.py +735 -5
  9. tencentcloud/cdwdoris/v20211228/models.py +17 -2
  10. tencentcloud/ckafka/v20190819/models.py +15 -0
  11. tencentcloud/cls/v20201016/models.py +15 -0
  12. tencentcloud/cwp/v20180228/cwp_client.py +0 -25
  13. tencentcloud/cwp/v20180228/models.py +0 -274
  14. tencentcloud/dcdb/v20180411/dcdb_client.py +46 -0
  15. tencentcloud/dcdb/v20180411/models.py +379 -0
  16. tencentcloud/dlc/v20210125/models.py +205 -34
  17. tencentcloud/dts/v20211206/models.py +2 -2
  18. tencentcloud/ess/v20201111/models.py +2 -2
  19. tencentcloud/essbasic/v20210526/models.py +2 -2
  20. tencentcloud/faceid/v20180301/models.py +8 -6
  21. tencentcloud/gme/v20180711/models.py +0 -18
  22. tencentcloud/lcic/v20220817/models.py +0 -156
  23. tencentcloud/lke/v20231130/models.py +15 -0
  24. tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
  25. tencentcloud/mqtt/v20240516/models.py +339 -0
  26. tencentcloud/mqtt/v20240516/mqtt_client.py +23 -0
  27. tencentcloud/ocr/v20181119/models.py +250 -2
  28. tencentcloud/ses/v20201002/models.py +15 -0
  29. tencentcloud/svp/v20240125/models.py +0 -6
  30. tencentcloud/taf/v20200210/errorcodes.py +0 -156
  31. tencentcloud/taf/v20200210/models.py +80 -1291
  32. tencentcloud/taf/v20200210/taf_client.py +0 -69
  33. tencentcloud/tcb/v20180608/errorcodes.py +3 -0
  34. tencentcloud/teo/v20220901/models.py +70 -0
  35. tencentcloud/tione/v20211111/models.py +19 -0
  36. tencentcloud/trabbit/v20230418/models.py +15 -304
  37. tencentcloud/trp/v20210515/models.py +0 -360
  38. tencentcloud/vpc/v20170312/models.py +234 -0
  39. tencentcloud/vpc/v20170312/vpc_client.py +46 -0
  40. tencentcloud/wedata/v20210820/models.py +264 -0
  41. {tencentcloud_sdk_python-3.0.1322.dist-info → tencentcloud_sdk_python-3.0.1324.dist-info}/METADATA +1 -1
  42. {tencentcloud_sdk_python-3.0.1322.dist-info → tencentcloud_sdk_python-3.0.1324.dist-info}/RECORD +45 -50
  43. tencentcloud/aa/__init__.py +0 -0
  44. tencentcloud/aa/v20200224/__init__.py +0 -0
  45. tencentcloud/aa/v20200224/aa_client.py +0 -49
  46. tencentcloud/aa/v20200224/errorcodes.py +0 -78
  47. tencentcloud/aa/v20200224/models.py +0 -736
  48. {tencentcloud_sdk_python-3.0.1322.dist-info → tencentcloud_sdk_python-3.0.1324.dist-info}/LICENSE +0 -0
  49. {tencentcloud_sdk_python-3.0.1322.dist-info → tencentcloud_sdk_python-3.0.1324.dist-info}/WHEEL +0 -0
  50. {tencentcloud_sdk_python-3.0.1322.dist-info → tencentcloud_sdk_python-3.0.1324.dist-info}/top_level.txt +0 -0
@@ -137,13 +137,10 @@ class CreateRabbitMQServerlessBindingResponse(AbstractModel):
137
137
  def __init__(self):
138
138
  r"""
139
139
  :param _InstanceId: 队列名称
140
- 注意:此字段可能返回 null,表示取不到有效值。
141
140
  :type InstanceId: str
142
141
  :param _VirtualHost: vhost参数
143
- 注意:此字段可能返回 null,表示取不到有效值。
144
142
  :type VirtualHost: str
145
143
  :param _BindingId: 路由关系Id
146
- 注意:此字段可能返回 null,表示取不到有效值。
147
144
  :type BindingId: int
148
145
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
149
146
  :type RequestId: str
@@ -156,7 +153,6 @@ class CreateRabbitMQServerlessBindingResponse(AbstractModel):
156
153
  @property
157
154
  def InstanceId(self):
158
155
  """队列名称
159
- 注意:此字段可能返回 null,表示取不到有效值。
160
156
  :rtype: str
161
157
  """
162
158
  return self._InstanceId
@@ -168,7 +164,6 @@ class CreateRabbitMQServerlessBindingResponse(AbstractModel):
168
164
  @property
169
165
  def VirtualHost(self):
170
166
  """vhost参数
171
- 注意:此字段可能返回 null,表示取不到有效值。
172
167
  :rtype: str
173
168
  """
174
169
  return self._VirtualHost
@@ -180,7 +175,6 @@ class CreateRabbitMQServerlessBindingResponse(AbstractModel):
180
175
  @property
181
176
  def BindingId(self):
182
177
  """路由关系Id
183
- 注意:此字段可能返回 null,表示取不到有效值。
184
178
  :rtype: int
185
179
  """
186
180
  return self._BindingId
@@ -372,7 +366,6 @@ class CreateRabbitMQServerlessExchangeResponse(AbstractModel):
372
366
  def __init__(self):
373
367
  r"""
374
368
  :param _ExchangeName: exchange 名称
375
- 注意:此字段可能返回 null,表示取不到有效值。
376
369
  :type ExchangeName: str
377
370
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
378
371
  :type RequestId: str
@@ -383,7 +376,6 @@ class CreateRabbitMQServerlessExchangeResponse(AbstractModel):
383
376
  @property
384
377
  def ExchangeName(self):
385
378
  """exchange 名称
386
- 注意:此字段可能返回 null,表示取不到有效值。
387
379
  :rtype: str
388
380
  """
389
381
  return self._ExchangeName
@@ -813,7 +805,6 @@ class CreateRabbitMQServerlessQueueResponse(AbstractModel):
813
805
  def __init__(self):
814
806
  r"""
815
807
  :param _QueueName: 队列名称
816
- 注意:此字段可能返回 null,表示取不到有效值。
817
808
  :type QueueName: str
818
809
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
819
810
  :type RequestId: str
@@ -824,7 +815,6 @@ class CreateRabbitMQServerlessQueueResponse(AbstractModel):
824
815
  @property
825
816
  def QueueName(self):
826
817
  """队列名称
827
- 注意:此字段可能返回 null,表示取不到有效值。
828
818
  :rtype: str
829
819
  """
830
820
  return self._QueueName
@@ -1232,13 +1222,10 @@ class DeleteRabbitMQServerlessBindingResponse(AbstractModel):
1232
1222
  def __init__(self):
1233
1223
  r"""
1234
1224
  :param _InstanceId: 队列名称
1235
- 注意:此字段可能返回 null,表示取不到有效值。
1236
1225
  :type InstanceId: str
1237
1226
  :param _VirtualHost: vhost参数
1238
- 注意:此字段可能返回 null,表示取不到有效值。
1239
1227
  :type VirtualHost: str
1240
1228
  :param _BindingId: 路由关系Id
1241
- 注意:此字段可能返回 null,表示取不到有效值。
1242
1229
  :type BindingId: int
1243
1230
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1244
1231
  :type RequestId: str
@@ -1251,7 +1238,6 @@ class DeleteRabbitMQServerlessBindingResponse(AbstractModel):
1251
1238
  @property
1252
1239
  def InstanceId(self):
1253
1240
  """队列名称
1254
- 注意:此字段可能返回 null,表示取不到有效值。
1255
1241
  :rtype: str
1256
1242
  """
1257
1243
  return self._InstanceId
@@ -1263,7 +1249,6 @@ class DeleteRabbitMQServerlessBindingResponse(AbstractModel):
1263
1249
  @property
1264
1250
  def VirtualHost(self):
1265
1251
  """vhost参数
1266
- 注意:此字段可能返回 null,表示取不到有效值。
1267
1252
  :rtype: str
1268
1253
  """
1269
1254
  return self._VirtualHost
@@ -1275,7 +1260,6 @@ class DeleteRabbitMQServerlessBindingResponse(AbstractModel):
1275
1260
  @property
1276
1261
  def BindingId(self):
1277
1262
  """路由关系Id
1278
- 注意:此字段可能返回 null,表示取不到有效值。
1279
1263
  :rtype: int
1280
1264
  """
1281
1265
  return self._BindingId
@@ -1377,7 +1361,6 @@ class DeleteRabbitMQServerlessExchangeResponse(AbstractModel):
1377
1361
  def __init__(self):
1378
1362
  r"""
1379
1363
  :param _ExchangeName: exchange 名称
1380
- 注意:此字段可能返回 null,表示取不到有效值。
1381
1364
  :type ExchangeName: str
1382
1365
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1383
1366
  :type RequestId: str
@@ -1388,7 +1371,6 @@ class DeleteRabbitMQServerlessExchangeResponse(AbstractModel):
1388
1371
  @property
1389
1372
  def ExchangeName(self):
1390
1373
  """exchange 名称
1391
- 注意:此字段可能返回 null,表示取不到有效值。
1392
1374
  :rtype: str
1393
1375
  """
1394
1376
  return self._ExchangeName
@@ -1582,7 +1564,6 @@ class DeleteRabbitMQServerlessQueueResponse(AbstractModel):
1582
1564
  def __init__(self):
1583
1565
  r"""
1584
1566
  :param _QueueName: 队列名称
1585
- 注意:此字段可能返回 null,表示取不到有效值。
1586
1567
  :type QueueName: str
1587
1568
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1588
1569
  :type RequestId: str
@@ -1593,7 +1574,6 @@ class DeleteRabbitMQServerlessQueueResponse(AbstractModel):
1593
1574
  @property
1594
1575
  def QueueName(self):
1595
1576
  """队列名称
1596
- 注意:此字段可能返回 null,表示取不到有效值。
1597
1577
  :rtype: str
1598
1578
  """
1599
1579
  return self._QueueName
@@ -1926,10 +1906,8 @@ class DescribeRabbitMQServerlessBindingsResponse(AbstractModel):
1926
1906
  def __init__(self):
1927
1907
  r"""
1928
1908
  :param _BindingInfoList: 路由关系列表
1929
- 注意:此字段可能返回 null,表示取不到有效值。
1930
1909
  :type BindingInfoList: list of RabbitMQBindingListInfo
1931
1910
  :param _TotalCount: 数量
1932
- 注意:此字段可能返回 null,表示取不到有效值。
1933
1911
  :type TotalCount: int
1934
1912
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1935
1913
  :type RequestId: str
@@ -1941,7 +1919,6 @@ class DescribeRabbitMQServerlessBindingsResponse(AbstractModel):
1941
1919
  @property
1942
1920
  def BindingInfoList(self):
1943
1921
  """路由关系列表
1944
- 注意:此字段可能返回 null,表示取不到有效值。
1945
1922
  :rtype: list of RabbitMQBindingListInfo
1946
1923
  """
1947
1924
  return self._BindingInfoList
@@ -1953,7 +1930,6 @@ class DescribeRabbitMQServerlessBindingsResponse(AbstractModel):
1953
1930
  @property
1954
1931
  def TotalCount(self):
1955
1932
  """数量
1956
- 注意:此字段可能返回 null,表示取不到有效值。
1957
1933
  :rtype: int
1958
1934
  """
1959
1935
  return self._TotalCount
@@ -2218,10 +2194,8 @@ class DescribeRabbitMQServerlessConsumersResponse(AbstractModel):
2218
2194
  def __init__(self):
2219
2195
  r"""
2220
2196
  :param _ConsumerInfoList: 消费者列表信息
2221
- 注意:此字段可能返回 null,表示取不到有效值。
2222
2197
  :type ConsumerInfoList: list of RabbitMQConsumersListInfo
2223
2198
  :param _TotalCount: 数量
2224
- 注意:此字段可能返回 null,表示取不到有效值。
2225
2199
  :type TotalCount: int
2226
2200
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2227
2201
  :type RequestId: str
@@ -2233,7 +2207,6 @@ class DescribeRabbitMQServerlessConsumersResponse(AbstractModel):
2233
2207
  @property
2234
2208
  def ConsumerInfoList(self):
2235
2209
  """消费者列表信息
2236
- 注意:此字段可能返回 null,表示取不到有效值。
2237
2210
  :rtype: list of RabbitMQConsumersListInfo
2238
2211
  """
2239
2212
  return self._ConsumerInfoList
@@ -2245,7 +2218,6 @@ class DescribeRabbitMQServerlessConsumersResponse(AbstractModel):
2245
2218
  @property
2246
2219
  def TotalCount(self):
2247
2220
  """数量
2248
- 注意:此字段可能返回 null,表示取不到有效值。
2249
2221
  :rtype: int
2250
2222
  """
2251
2223
  return self._TotalCount
@@ -2353,7 +2325,6 @@ class DescribeRabbitMQServerlessExchangeDetailResponse(AbstractModel):
2353
2325
  :param _ExchangeName: exchange 名
2354
2326
  :type ExchangeName: str
2355
2327
  :param _Remark: 备注说明
2356
- 注意:此字段可能返回 null,表示取不到有效值。
2357
2328
  :type Remark: str
2358
2329
  :param _Durable: 是否为持久化 exchange, 当集群重启时, 将会清除所有该字段为 "false" 的 exchange
2359
2330
  :type Durable: bool
@@ -2400,7 +2371,6 @@ class DescribeRabbitMQServerlessExchangeDetailResponse(AbstractModel):
2400
2371
  @property
2401
2372
  def Remark(self):
2402
2373
  """备注说明
2403
- 注意:此字段可能返回 null,表示取不到有效值。
2404
2374
  :rtype: str
2405
2375
  """
2406
2376
  return self._Remark
@@ -2708,10 +2678,8 @@ class DescribeRabbitMQServerlessExchangesResponse(AbstractModel):
2708
2678
  def __init__(self):
2709
2679
  r"""
2710
2680
  :param _ExchangeInfoList: 交换机列表
2711
- 注意:此字段可能返回 null,表示取不到有效值。
2712
2681
  :type ExchangeInfoList: list of RabbitMQExchangeListInfo
2713
2682
  :param _TotalCount: 交换机总数
2714
- 注意:此字段可能返回 null,表示取不到有效值。
2715
2683
  :type TotalCount: int
2716
2684
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2717
2685
  :type RequestId: str
@@ -2723,7 +2691,6 @@ class DescribeRabbitMQServerlessExchangesResponse(AbstractModel):
2723
2691
  @property
2724
2692
  def ExchangeInfoList(self):
2725
2693
  """交换机列表
2726
- 注意:此字段可能返回 null,表示取不到有效值。
2727
2694
  :rtype: list of RabbitMQExchangeListInfo
2728
2695
  """
2729
2696
  return self._ExchangeInfoList
@@ -2735,7 +2702,6 @@ class DescribeRabbitMQServerlessExchangesResponse(AbstractModel):
2735
2702
  @property
2736
2703
  def TotalCount(self):
2737
2704
  """交换机总数
2738
- 注意:此字段可能返回 null,表示取不到有效值。
2739
2705
  :rtype: int
2740
2706
  """
2741
2707
  return self._TotalCount
@@ -2821,10 +2787,8 @@ class DescribeRabbitMQServerlessInstanceResponse(AbstractModel):
2821
2787
  :param _QueueQuota: queue配额信息
2822
2788
  :type QueueQuota: :class:`tencentcloud.trabbit.v20230418.models.QueueQuota`
2823
2789
  :param _ClusterNetInfo: 网络信息
2824
- 注意:此字段可能返回 null,表示取不到有效值。
2825
2790
  :type ClusterNetInfo: :class:`tencentcloud.trabbit.v20230418.models.RabbitMQServerlessAccessInfo`
2826
2791
  :param _ClusterWhiteListInfo: 公网白名单信息
2827
- 注意:此字段可能返回 null,表示取不到有效值。
2828
2792
  :type ClusterWhiteListInfo: :class:`tencentcloud.trabbit.v20230418.models.RabbitMQServerlessWhiteListInfo`
2829
2793
  :param _UserQuota: user配额信息
2830
2794
  :type UserQuota: :class:`tencentcloud.trabbit.v20230418.models.UserQuota`
@@ -2899,7 +2863,6 @@ class DescribeRabbitMQServerlessInstanceResponse(AbstractModel):
2899
2863
  @property
2900
2864
  def ClusterNetInfo(self):
2901
2865
  """网络信息
2902
- 注意:此字段可能返回 null,表示取不到有效值。
2903
2866
  :rtype: :class:`tencentcloud.trabbit.v20230418.models.RabbitMQServerlessAccessInfo`
2904
2867
  """
2905
2868
  return self._ClusterNetInfo
@@ -2911,7 +2874,6 @@ class DescribeRabbitMQServerlessInstanceResponse(AbstractModel):
2911
2874
  @property
2912
2875
  def ClusterWhiteListInfo(self):
2913
2876
  """公网白名单信息
2914
- 注意:此字段可能返回 null,表示取不到有效值。
2915
2877
  :rtype: :class:`tencentcloud.trabbit.v20230418.models.RabbitMQServerlessWhiteListInfo`
2916
2878
  """
2917
2879
  return self._ClusterWhiteListInfo
@@ -3204,94 +3166,64 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3204
3166
  def __init__(self):
3205
3167
  r"""
3206
3168
  :param _InstanceId: 实例id
3207
- 注意:此字段可能返回 null,表示取不到有效值。
3208
3169
  :type InstanceId: str
3209
3170
  :param _VirtualHost: Vhost参数
3210
- 注意:此字段可能返回 null,表示取不到有效值。
3211
3171
  :type VirtualHost: str
3212
3172
  :param _QueueName: 队列名称
3213
- 注意:此字段可能返回 null,表示取不到有效值。
3214
3173
  :type QueueName: str
3215
3174
  :param _QueueType: 队列类型,取值classic或quorum
3216
- 注意:此字段可能返回 null,表示取不到有效值。
3217
3175
  :type QueueType: str
3218
3176
  :param _Consumers: 在线消费者数量
3219
- 注意:此字段可能返回 null,表示取不到有效值。
3220
3177
  :type Consumers: int
3221
3178
  :param _Durable: 持久标记
3222
- 注意:此字段可能返回 null,表示取不到有效值。
3223
3179
  :type Durable: bool
3224
3180
  :param _AutoDelete: 自动清除
3225
- 注意:此字段可能返回 null,表示取不到有效值。
3226
3181
  :type AutoDelete: bool
3227
3182
  :param _Remark: 备注
3228
- 注意:此字段可能返回 null,表示取不到有效值。
3229
3183
  :type Remark: str
3230
3184
  :param _MessageTTL: MessageTTL参数,classic类型专用
3231
- 注意:此字段可能返回 null,表示取不到有效值。
3232
3185
  :type MessageTTL: int
3233
3186
  :param _AutoExpire: AutoExpire参数
3234
- 注意:此字段可能返回 null,表示取不到有效值。
3235
3187
  :type AutoExpire: int
3236
3188
  :param _MaxLength: MaxLength参数
3237
- 注意:此字段可能返回 null,表示取不到有效值。
3238
3189
  :type MaxLength: int
3239
3190
  :param _MaxLengthBytes: MaxLengthBytes参数
3240
- 注意:此字段可能返回 null,表示取不到有效值。
3241
3191
  :type MaxLengthBytes: int
3242
3192
  :param _DeliveryLimit: DeliveryLimit参数,quorum类型专用
3243
- 注意:此字段可能返回 null,表示取不到有效值。
3244
3193
  :type DeliveryLimit: int
3245
3194
  :param _OverflowBehaviour: OverflowBehaviour参数,取值为drop-head, reject-publish或reject-publish-dlx
3246
- 注意:此字段可能返回 null,表示取不到有效值。
3247
3195
  :type OverflowBehaviour: str
3248
3196
  :param _DeadLetterExchange: DeadLetterExchange参数
3249
- 注意:此字段可能返回 null,表示取不到有效值。
3250
3197
  :type DeadLetterExchange: str
3251
3198
  :param _DeadLetterRoutingKey: DeadLetterRoutingKey参数
3252
- 注意:此字段可能返回 null,表示取不到有效值。
3253
3199
  :type DeadLetterRoutingKey: str
3254
3200
  :param _SingleActiveConsumer: SingleActiveConsumer参数
3255
- 注意:此字段可能返回 null,表示取不到有效值。
3256
3201
  :type SingleActiveConsumer: bool
3257
3202
  :param _MaximumPriority: MaximumPriority参数,classic类型专用
3258
- 注意:此字段可能返回 null,表示取不到有效值。
3259
3203
  :type MaximumPriority: int
3260
3204
  :param _LazyMode: LazyMode参数,classic类型专用
3261
- 注意:此字段可能返回 null,表示取不到有效值。
3262
3205
  :type LazyMode: bool
3263
3206
  :param _MasterLocator: MasterLocator参数,classic类型专用
3264
- 注意:此字段可能返回 null,表示取不到有效值。
3265
3207
  :type MasterLocator: str
3266
3208
  :param _MaxInMemoryLength: MaxInMemoryLength参数,quorum类型专用
3267
- 注意:此字段可能返回 null,表示取不到有效值。
3268
3209
  :type MaxInMemoryLength: int
3269
3210
  :param _MaxInMemoryBytes: MaxInMemoryBytes参数,quorum类型专用
3270
- 注意:此字段可能返回 null,表示取不到有效值。
3271
3211
  :type MaxInMemoryBytes: int
3272
3212
  :param _CreateTime: 创建时间戳,单位秒
3273
- 注意:此字段可能返回 null,表示取不到有效值。
3274
3213
  :type CreateTime: int
3275
3214
  :param _Node: 节点
3276
- 注意:此字段可能返回 null,表示取不到有效值。
3277
3215
  :type Node: str
3278
3216
  :param _DeadLetterStrategy: 仲裁队列死信一致性策略
3279
- 注意:此字段可能返回 null,表示取不到有效值。
3280
3217
  :type DeadLetterStrategy: str
3281
3218
  :param _QueueLeaderLocator: 仲裁队列的领导者选举策略
3282
- 注意:此字段可能返回 null,表示取不到有效值。
3283
3219
  :type QueueLeaderLocator: str
3284
3220
  :param _QuorumInitialGroupSize: 仲裁队列的初始副本组大小
3285
- 注意:此字段可能返回 null,表示取不到有效值。
3286
3221
  :type QuorumInitialGroupSize: int
3287
3222
  :param _Exclusive: 是否为独占队列
3288
- 注意:此字段可能返回 null,表示取不到有效值。
3289
3223
  :type Exclusive: bool
3290
3224
  :param _Policy: 生效的策略名
3291
- 注意:此字段可能返回 null,表示取不到有效值。
3292
3225
  :type Policy: str
3293
3226
  :param _Arguments: 扩展参数 key-value
3294
- 注意:此字段可能返回 null,表示取不到有效值。
3295
3227
  :type Arguments: str
3296
3228
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3297
3229
  :type RequestId: str
@@ -3331,7 +3263,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3331
3263
  @property
3332
3264
  def InstanceId(self):
3333
3265
  """实例id
3334
- 注意:此字段可能返回 null,表示取不到有效值。
3335
3266
  :rtype: str
3336
3267
  """
3337
3268
  return self._InstanceId
@@ -3343,7 +3274,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3343
3274
  @property
3344
3275
  def VirtualHost(self):
3345
3276
  """Vhost参数
3346
- 注意:此字段可能返回 null,表示取不到有效值。
3347
3277
  :rtype: str
3348
3278
  """
3349
3279
  return self._VirtualHost
@@ -3355,7 +3285,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3355
3285
  @property
3356
3286
  def QueueName(self):
3357
3287
  """队列名称
3358
- 注意:此字段可能返回 null,表示取不到有效值。
3359
3288
  :rtype: str
3360
3289
  """
3361
3290
  return self._QueueName
@@ -3367,7 +3296,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3367
3296
  @property
3368
3297
  def QueueType(self):
3369
3298
  """队列类型,取值classic或quorum
3370
- 注意:此字段可能返回 null,表示取不到有效值。
3371
3299
  :rtype: str
3372
3300
  """
3373
3301
  return self._QueueType
@@ -3379,7 +3307,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3379
3307
  @property
3380
3308
  def Consumers(self):
3381
3309
  """在线消费者数量
3382
- 注意:此字段可能返回 null,表示取不到有效值。
3383
3310
  :rtype: int
3384
3311
  """
3385
3312
  return self._Consumers
@@ -3391,7 +3318,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3391
3318
  @property
3392
3319
  def Durable(self):
3393
3320
  """持久标记
3394
- 注意:此字段可能返回 null,表示取不到有效值。
3395
3321
  :rtype: bool
3396
3322
  """
3397
3323
  return self._Durable
@@ -3403,7 +3329,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3403
3329
  @property
3404
3330
  def AutoDelete(self):
3405
3331
  """自动清除
3406
- 注意:此字段可能返回 null,表示取不到有效值。
3407
3332
  :rtype: bool
3408
3333
  """
3409
3334
  return self._AutoDelete
@@ -3415,7 +3340,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3415
3340
  @property
3416
3341
  def Remark(self):
3417
3342
  """备注
3418
- 注意:此字段可能返回 null,表示取不到有效值。
3419
3343
  :rtype: str
3420
3344
  """
3421
3345
  return self._Remark
@@ -3427,7 +3351,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3427
3351
  @property
3428
3352
  def MessageTTL(self):
3429
3353
  """MessageTTL参数,classic类型专用
3430
- 注意:此字段可能返回 null,表示取不到有效值。
3431
3354
  :rtype: int
3432
3355
  """
3433
3356
  return self._MessageTTL
@@ -3439,7 +3362,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3439
3362
  @property
3440
3363
  def AutoExpire(self):
3441
3364
  """AutoExpire参数
3442
- 注意:此字段可能返回 null,表示取不到有效值。
3443
3365
  :rtype: int
3444
3366
  """
3445
3367
  return self._AutoExpire
@@ -3451,7 +3373,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3451
3373
  @property
3452
3374
  def MaxLength(self):
3453
3375
  """MaxLength参数
3454
- 注意:此字段可能返回 null,表示取不到有效值。
3455
3376
  :rtype: int
3456
3377
  """
3457
3378
  return self._MaxLength
@@ -3463,7 +3384,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3463
3384
  @property
3464
3385
  def MaxLengthBytes(self):
3465
3386
  """MaxLengthBytes参数
3466
- 注意:此字段可能返回 null,表示取不到有效值。
3467
3387
  :rtype: int
3468
3388
  """
3469
3389
  return self._MaxLengthBytes
@@ -3475,7 +3395,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3475
3395
  @property
3476
3396
  def DeliveryLimit(self):
3477
3397
  """DeliveryLimit参数,quorum类型专用
3478
- 注意:此字段可能返回 null,表示取不到有效值。
3479
3398
  :rtype: int
3480
3399
  """
3481
3400
  return self._DeliveryLimit
@@ -3487,7 +3406,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3487
3406
  @property
3488
3407
  def OverflowBehaviour(self):
3489
3408
  """OverflowBehaviour参数,取值为drop-head, reject-publish或reject-publish-dlx
3490
- 注意:此字段可能返回 null,表示取不到有效值。
3491
3409
  :rtype: str
3492
3410
  """
3493
3411
  return self._OverflowBehaviour
@@ -3499,7 +3417,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3499
3417
  @property
3500
3418
  def DeadLetterExchange(self):
3501
3419
  """DeadLetterExchange参数
3502
- 注意:此字段可能返回 null,表示取不到有效值。
3503
3420
  :rtype: str
3504
3421
  """
3505
3422
  return self._DeadLetterExchange
@@ -3511,7 +3428,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3511
3428
  @property
3512
3429
  def DeadLetterRoutingKey(self):
3513
3430
  """DeadLetterRoutingKey参数
3514
- 注意:此字段可能返回 null,表示取不到有效值。
3515
3431
  :rtype: str
3516
3432
  """
3517
3433
  return self._DeadLetterRoutingKey
@@ -3523,7 +3439,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3523
3439
  @property
3524
3440
  def SingleActiveConsumer(self):
3525
3441
  """SingleActiveConsumer参数
3526
- 注意:此字段可能返回 null,表示取不到有效值。
3527
3442
  :rtype: bool
3528
3443
  """
3529
3444
  return self._SingleActiveConsumer
@@ -3535,7 +3450,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3535
3450
  @property
3536
3451
  def MaximumPriority(self):
3537
3452
  """MaximumPriority参数,classic类型专用
3538
- 注意:此字段可能返回 null,表示取不到有效值。
3539
3453
  :rtype: int
3540
3454
  """
3541
3455
  return self._MaximumPriority
@@ -3547,7 +3461,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3547
3461
  @property
3548
3462
  def LazyMode(self):
3549
3463
  """LazyMode参数,classic类型专用
3550
- 注意:此字段可能返回 null,表示取不到有效值。
3551
3464
  :rtype: bool
3552
3465
  """
3553
3466
  return self._LazyMode
@@ -3559,7 +3472,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3559
3472
  @property
3560
3473
  def MasterLocator(self):
3561
3474
  """MasterLocator参数,classic类型专用
3562
- 注意:此字段可能返回 null,表示取不到有效值。
3563
3475
  :rtype: str
3564
3476
  """
3565
3477
  return self._MasterLocator
@@ -3571,7 +3483,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3571
3483
  @property
3572
3484
  def MaxInMemoryLength(self):
3573
3485
  """MaxInMemoryLength参数,quorum类型专用
3574
- 注意:此字段可能返回 null,表示取不到有效值。
3575
3486
  :rtype: int
3576
3487
  """
3577
3488
  return self._MaxInMemoryLength
@@ -3583,7 +3494,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3583
3494
  @property
3584
3495
  def MaxInMemoryBytes(self):
3585
3496
  """MaxInMemoryBytes参数,quorum类型专用
3586
- 注意:此字段可能返回 null,表示取不到有效值。
3587
3497
  :rtype: int
3588
3498
  """
3589
3499
  return self._MaxInMemoryBytes
@@ -3595,7 +3505,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3595
3505
  @property
3596
3506
  def CreateTime(self):
3597
3507
  """创建时间戳,单位秒
3598
- 注意:此字段可能返回 null,表示取不到有效值。
3599
3508
  :rtype: int
3600
3509
  """
3601
3510
  return self._CreateTime
@@ -3607,7 +3516,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3607
3516
  @property
3608
3517
  def Node(self):
3609
3518
  """节点
3610
- 注意:此字段可能返回 null,表示取不到有效值。
3611
3519
  :rtype: str
3612
3520
  """
3613
3521
  return self._Node
@@ -3619,7 +3527,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3619
3527
  @property
3620
3528
  def DeadLetterStrategy(self):
3621
3529
  """仲裁队列死信一致性策略
3622
- 注意:此字段可能返回 null,表示取不到有效值。
3623
3530
  :rtype: str
3624
3531
  """
3625
3532
  return self._DeadLetterStrategy
@@ -3631,7 +3538,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3631
3538
  @property
3632
3539
  def QueueLeaderLocator(self):
3633
3540
  """仲裁队列的领导者选举策略
3634
- 注意:此字段可能返回 null,表示取不到有效值。
3635
3541
  :rtype: str
3636
3542
  """
3637
3543
  return self._QueueLeaderLocator
@@ -3643,7 +3549,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3643
3549
  @property
3644
3550
  def QuorumInitialGroupSize(self):
3645
3551
  """仲裁队列的初始副本组大小
3646
- 注意:此字段可能返回 null,表示取不到有效值。
3647
3552
  :rtype: int
3648
3553
  """
3649
3554
  return self._QuorumInitialGroupSize
@@ -3655,7 +3560,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3655
3560
  @property
3656
3561
  def Exclusive(self):
3657
3562
  """是否为独占队列
3658
- 注意:此字段可能返回 null,表示取不到有效值。
3659
3563
  :rtype: bool
3660
3564
  """
3661
3565
  return self._Exclusive
@@ -3667,7 +3571,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3667
3571
  @property
3668
3572
  def Policy(self):
3669
3573
  """生效的策略名
3670
- 注意:此字段可能返回 null,表示取不到有效值。
3671
3574
  :rtype: str
3672
3575
  """
3673
3576
  return self._Policy
@@ -3679,7 +3582,6 @@ class DescribeRabbitMQServerlessQueueDetailResponse(AbstractModel):
3679
3582
  @property
3680
3583
  def Arguments(self):
3681
3584
  """扩展参数 key-value
3682
- 注意:此字段可能返回 null,表示取不到有效值。
3683
3585
  :rtype: str
3684
3586
  """
3685
3587
  return self._Arguments
@@ -3893,10 +3795,8 @@ class DescribeRabbitMQServerlessQueuesResponse(AbstractModel):
3893
3795
  def __init__(self):
3894
3796
  r"""
3895
3797
  :param _QueueInfoList: 队列列表信息
3896
- 注意:此字段可能返回 null,表示取不到有效值。
3897
3798
  :type QueueInfoList: list of RabbitMQQueueListInfo
3898
3799
  :param _TotalCount: 数量
3899
- 注意:此字段可能返回 null,表示取不到有效值。
3900
3800
  :type TotalCount: int
3901
3801
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3902
3802
  :type RequestId: str
@@ -3908,7 +3808,6 @@ class DescribeRabbitMQServerlessQueuesResponse(AbstractModel):
3908
3808
  @property
3909
3809
  def QueueInfoList(self):
3910
3810
  """队列列表信息
3911
- 注意:此字段可能返回 null,表示取不到有效值。
3912
3811
  :rtype: list of RabbitMQQueueListInfo
3913
3812
  """
3914
3813
  return self._QueueInfoList
@@ -3920,7 +3819,6 @@ class DescribeRabbitMQServerlessQueuesResponse(AbstractModel):
3920
3819
  @property
3921
3820
  def TotalCount(self):
3922
3821
  """数量
3923
- 注意:此字段可能返回 null,表示取不到有效值。
3924
3822
  :rtype: int
3925
3823
  """
3926
3824
  return self._TotalCount
@@ -4335,7 +4233,6 @@ class ExchangeQuota(AbstractModel):
4335
4233
  :param _MaxExchange: 可创建最大exchange数
4336
4234
  :type MaxExchange: int
4337
4235
  :param _UsedExchange: 已创建exchange数
4338
- 注意:此字段可能返回 null,表示取不到有效值。
4339
4236
  :type UsedExchange: int
4340
4237
  """
4341
4238
  self._MaxExchange = None
@@ -4355,7 +4252,6 @@ class ExchangeQuota(AbstractModel):
4355
4252
  @property
4356
4253
  def UsedExchange(self):
4357
4254
  """已创建exchange数
4358
- 注意:此字段可能返回 null,表示取不到有效值。
4359
4255
  :rtype: int
4360
4256
  """
4361
4257
  return self._UsedExchange
@@ -4508,7 +4404,6 @@ class ListRabbitMQServerlessInstancesResponse(AbstractModel):
4508
4404
  def __init__(self):
4509
4405
  r"""
4510
4406
  :param _Instances: 实例列表
4511
- 注意:此字段可能返回 null,表示取不到有效值。
4512
4407
  :type Instances: list of RabbitMQServerlessInstance
4513
4408
  :param _TotalCount: 总数
4514
4409
  :type TotalCount: int
@@ -4522,7 +4417,6 @@ class ListRabbitMQServerlessInstancesResponse(AbstractModel):
4522
4417
  @property
4523
4418
  def Instances(self):
4524
4419
  """实例列表
4525
- 注意:此字段可能返回 null,表示取不到有效值。
4526
4420
  :rtype: list of RabbitMQServerlessInstance
4527
4421
  """
4528
4422
  return self._Instances
@@ -4654,7 +4548,6 @@ class ModifyRabbitMQServerlessExchangeResponse(AbstractModel):
4654
4548
  def __init__(self):
4655
4549
  r"""
4656
4550
  :param _ExchangeName: exchange 名称
4657
- 注意:此字段可能返回 null,表示取不到有效值。
4658
4551
  :type ExchangeName: str
4659
4552
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4660
4553
  :type RequestId: str
@@ -4665,7 +4558,6 @@ class ModifyRabbitMQServerlessExchangeResponse(AbstractModel):
4665
4558
  @property
4666
4559
  def ExchangeName(self):
4667
4560
  """exchange 名称
4668
- 注意:此字段可能返回 null,表示取不到有效值。
4669
4561
  :rtype: str
4670
4562
  """
4671
4563
  return self._ExchangeName
@@ -5043,7 +4935,6 @@ class ModifyRabbitMQServerlessQueueResponse(AbstractModel):
5043
4935
  def __init__(self):
5044
4936
  r"""
5045
4937
  :param _QueueName: 队列名称
5046
- 注意:此字段可能返回 null,表示取不到有效值。
5047
4938
  :type QueueName: str
5048
4939
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5049
4940
  :type RequestId: str
@@ -5054,7 +4945,6 @@ class ModifyRabbitMQServerlessQueueResponse(AbstractModel):
5054
4945
  @property
5055
4946
  def QueueName(self):
5056
4947
  """队列名称
5057
- 注意:此字段可能返回 null,表示取不到有效值。
5058
4948
  :rtype: str
5059
4949
  """
5060
4950
  return self._QueueName
@@ -5353,7 +5243,6 @@ class QueueQuota(AbstractModel):
5353
5243
  :param _MaxQueue: 可创建最大Queue数
5354
5244
  :type MaxQueue: int
5355
5245
  :param _UsedQueue: 已创建Queue数
5356
- 注意:此字段可能返回 null,表示取不到有效值。
5357
5246
  :type UsedQueue: int
5358
5247
  """
5359
5248
  self._MaxQueue = None
@@ -5373,7 +5262,6 @@ class QueueQuota(AbstractModel):
5373
5262
  @property
5374
5263
  def UsedQueue(self):
5375
5264
  """已创建Queue数
5376
- 注意:此字段可能返回 null,表示取不到有效值。
5377
5265
  :rtype: int
5378
5266
  """
5379
5267
  return self._UsedQueue
@@ -5404,31 +5292,22 @@ class RabbitMQBindingListInfo(AbstractModel):
5404
5292
  def __init__(self):
5405
5293
  r"""
5406
5294
  :param _BindingId: 路由关系id
5407
- 注意:此字段可能返回 null,表示取不到有效值。
5408
5295
  :type BindingId: int
5409
5296
  :param _VirtualHost: Vhost参数
5410
- 注意:此字段可能返回 null,表示取不到有效值。
5411
5297
  :type VirtualHost: str
5412
5298
  :param _Source: 源exchange名称
5413
- 注意:此字段可能返回 null,表示取不到有效值。
5414
5299
  :type Source: str
5415
5300
  :param _DestinationType: 目标类型,queue或exchange
5416
- 注意:此字段可能返回 null,表示取不到有效值。
5417
5301
  :type DestinationType: str
5418
5302
  :param _Destination: 目标资源名称
5419
- 注意:此字段可能返回 null,表示取不到有效值。
5420
5303
  :type Destination: str
5421
5304
  :param _RoutingKey: 绑定key
5422
- 注意:此字段可能返回 null,表示取不到有效值。
5423
5305
  :type RoutingKey: str
5424
5306
  :param _SourceExchangeType: 源exchange类型
5425
- 注意:此字段可能返回 null,表示取不到有效值。
5426
5307
  :type SourceExchangeType: str
5427
5308
  :param _CreateTime: 创建时间
5428
- 注意:此字段可能返回 null,表示取不到有效值。
5429
5309
  :type CreateTime: str
5430
5310
  :param _ModifyTime: 修改时间
5431
- 注意:此字段可能返回 null,表示取不到有效值。
5432
5311
  :type ModifyTime: str
5433
5312
  """
5434
5313
  self._BindingId = None
@@ -5444,7 +5323,6 @@ class RabbitMQBindingListInfo(AbstractModel):
5444
5323
  @property
5445
5324
  def BindingId(self):
5446
5325
  """路由关系id
5447
- 注意:此字段可能返回 null,表示取不到有效值。
5448
5326
  :rtype: int
5449
5327
  """
5450
5328
  return self._BindingId
@@ -5456,7 +5334,6 @@ class RabbitMQBindingListInfo(AbstractModel):
5456
5334
  @property
5457
5335
  def VirtualHost(self):
5458
5336
  """Vhost参数
5459
- 注意:此字段可能返回 null,表示取不到有效值。
5460
5337
  :rtype: str
5461
5338
  """
5462
5339
  return self._VirtualHost
@@ -5468,7 +5345,6 @@ class RabbitMQBindingListInfo(AbstractModel):
5468
5345
  @property
5469
5346
  def Source(self):
5470
5347
  """源exchange名称
5471
- 注意:此字段可能返回 null,表示取不到有效值。
5472
5348
  :rtype: str
5473
5349
  """
5474
5350
  return self._Source
@@ -5480,7 +5356,6 @@ class RabbitMQBindingListInfo(AbstractModel):
5480
5356
  @property
5481
5357
  def DestinationType(self):
5482
5358
  """目标类型,queue或exchange
5483
- 注意:此字段可能返回 null,表示取不到有效值。
5484
5359
  :rtype: str
5485
5360
  """
5486
5361
  return self._DestinationType
@@ -5492,7 +5367,6 @@ class RabbitMQBindingListInfo(AbstractModel):
5492
5367
  @property
5493
5368
  def Destination(self):
5494
5369
  """目标资源名称
5495
- 注意:此字段可能返回 null,表示取不到有效值。
5496
5370
  :rtype: str
5497
5371
  """
5498
5372
  return self._Destination
@@ -5504,7 +5378,6 @@ class RabbitMQBindingListInfo(AbstractModel):
5504
5378
  @property
5505
5379
  def RoutingKey(self):
5506
5380
  """绑定key
5507
- 注意:此字段可能返回 null,表示取不到有效值。
5508
5381
  :rtype: str
5509
5382
  """
5510
5383
  return self._RoutingKey
@@ -5516,7 +5389,6 @@ class RabbitMQBindingListInfo(AbstractModel):
5516
5389
  @property
5517
5390
  def SourceExchangeType(self):
5518
5391
  """源exchange类型
5519
- 注意:此字段可能返回 null,表示取不到有效值。
5520
5392
  :rtype: str
5521
5393
  """
5522
5394
  return self._SourceExchangeType
@@ -5528,7 +5400,6 @@ class RabbitMQBindingListInfo(AbstractModel):
5528
5400
  @property
5529
5401
  def CreateTime(self):
5530
5402
  """创建时间
5531
- 注意:此字段可能返回 null,表示取不到有效值。
5532
5403
  :rtype: str
5533
5404
  """
5534
5405
  return self._CreateTime
@@ -5540,7 +5411,6 @@ class RabbitMQBindingListInfo(AbstractModel):
5540
5411
  @property
5541
5412
  def ModifyTime(self):
5542
5413
  """修改时间
5543
- 注意:此字段可能返回 null,表示取不到有效值。
5544
5414
  :rtype: str
5545
5415
  """
5546
5416
  return self._ModifyTime
@@ -5586,12 +5456,10 @@ class RabbitMQClusterInfo(AbstractModel):
5586
5456
  :param _CreateTime: 创建时间,毫秒为单位
5587
5457
  :type CreateTime: int
5588
5458
  :param _Remark: 集群说明信息
5589
- 注意:此字段可能返回 null,表示取不到有效值。
5590
5459
  :type Remark: str
5591
5460
  :param _Vpcs: VPC及网络信息
5592
5461
  :type Vpcs: list of VpcEndpointInfo
5593
5462
  :param _ZoneIds: 可用区信息
5594
- 注意:此字段可能返回 null,表示取不到有效值。
5595
5463
  :type ZoneIds: list of int
5596
5464
  :param _VirtualHostNumber: 虚拟主机数量
5597
5465
  :type VirtualHostNumber: int
@@ -5612,30 +5480,22 @@ class RabbitMQClusterInfo(AbstractModel):
5612
5480
  :param _ExchangeNumber: Exchang数量
5613
5481
  :type ExchangeNumber: int
5614
5482
  :param _ExceptionInformation: 集群异常信息
5615
- 注意:此字段可能返回 null,表示取不到有效值。
5616
5483
  :type ExceptionInformation: str
5617
5484
  :param _ClusterStatus: 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败
5618
5485
  :type ClusterStatus: int
5619
5486
  :param _AutoRenewFlag: 自动续费标记,0表示默认状态(用户未设置,即初始状态即手动续费), 1表示自动续费,2表示明确不自动续费(用户设置)
5620
- 注意:此字段可能返回 null,表示取不到有效值。
5621
5487
  :type AutoRenewFlag: int
5622
5488
  :param _MirrorQueuePolicyFlag: 是否开启镜像队列策略。1表示开启,0表示没开启。
5623
- 注意:此字段可能返回 null,表示取不到有效值。
5624
5489
  :type MirrorQueuePolicyFlag: int
5625
5490
  :param _MessageConsumeRate: 每秒消费消息数 单位:条/秒
5626
- 注意:此字段可能返回 null,表示取不到有效值。
5627
5491
  :type MessageConsumeRate: float
5628
5492
  :param _ClusterVersion: 集群版本信息
5629
- 注意:此字段可能返回 null,表示取不到有效值。
5630
5493
  :type ClusterVersion: str
5631
5494
  :param _PayMode: 计费模式,0-后付费,1-预付费
5632
- 注意:此字段可能返回 null,表示取不到有效值。
5633
5495
  :type PayMode: int
5634
5496
  :param _InstanceType: 集群类型
5635
- 注意:此字段可能返回 null,表示取不到有效值。
5636
5497
  :type InstanceType: int
5637
5498
  :param _MessageRetainTime: 消息保留时间,单位小时
5638
- 注意:此字段可能返回 null,表示取不到有效值。
5639
5499
  :type MessageRetainTime: int
5640
5500
  """
5641
5501
  self._ClusterId = None
@@ -5711,7 +5571,6 @@ class RabbitMQClusterInfo(AbstractModel):
5711
5571
  @property
5712
5572
  def Remark(self):
5713
5573
  """集群说明信息
5714
- 注意:此字段可能返回 null,表示取不到有效值。
5715
5574
  :rtype: str
5716
5575
  """
5717
5576
  return self._Remark
@@ -5734,7 +5593,6 @@ class RabbitMQClusterInfo(AbstractModel):
5734
5593
  @property
5735
5594
  def ZoneIds(self):
5736
5595
  """可用区信息
5737
- 注意:此字段可能返回 null,表示取不到有效值。
5738
5596
  :rtype: list of int
5739
5597
  """
5740
5598
  return self._ZoneIds
@@ -5845,7 +5703,6 @@ class RabbitMQClusterInfo(AbstractModel):
5845
5703
  @property
5846
5704
  def ExceptionInformation(self):
5847
5705
  """集群异常信息
5848
- 注意:此字段可能返回 null,表示取不到有效值。
5849
5706
  :rtype: str
5850
5707
  """
5851
5708
  return self._ExceptionInformation
@@ -5868,7 +5725,6 @@ class RabbitMQClusterInfo(AbstractModel):
5868
5725
  @property
5869
5726
  def AutoRenewFlag(self):
5870
5727
  """自动续费标记,0表示默认状态(用户未设置,即初始状态即手动续费), 1表示自动续费,2表示明确不自动续费(用户设置)
5871
- 注意:此字段可能返回 null,表示取不到有效值。
5872
5728
  :rtype: int
5873
5729
  """
5874
5730
  return self._AutoRenewFlag
@@ -5880,7 +5736,6 @@ class RabbitMQClusterInfo(AbstractModel):
5880
5736
  @property
5881
5737
  def MirrorQueuePolicyFlag(self):
5882
5738
  """是否开启镜像队列策略。1表示开启,0表示没开启。
5883
- 注意:此字段可能返回 null,表示取不到有效值。
5884
5739
  :rtype: int
5885
5740
  """
5886
5741
  return self._MirrorQueuePolicyFlag
@@ -5892,7 +5747,6 @@ class RabbitMQClusterInfo(AbstractModel):
5892
5747
  @property
5893
5748
  def MessageConsumeRate(self):
5894
5749
  """每秒消费消息数 单位:条/秒
5895
- 注意:此字段可能返回 null,表示取不到有效值。
5896
5750
  :rtype: float
5897
5751
  """
5898
5752
  return self._MessageConsumeRate
@@ -5904,7 +5758,6 @@ class RabbitMQClusterInfo(AbstractModel):
5904
5758
  @property
5905
5759
  def ClusterVersion(self):
5906
5760
  """集群版本信息
5907
- 注意:此字段可能返回 null,表示取不到有效值。
5908
5761
  :rtype: str
5909
5762
  """
5910
5763
  return self._ClusterVersion
@@ -5916,7 +5769,6 @@ class RabbitMQClusterInfo(AbstractModel):
5916
5769
  @property
5917
5770
  def PayMode(self):
5918
5771
  """计费模式,0-后付费,1-预付费
5919
- 注意:此字段可能返回 null,表示取不到有效值。
5920
5772
  :rtype: int
5921
5773
  """
5922
5774
  return self._PayMode
@@ -5928,7 +5780,6 @@ class RabbitMQClusterInfo(AbstractModel):
5928
5780
  @property
5929
5781
  def InstanceType(self):
5930
5782
  """集群类型
5931
- 注意:此字段可能返回 null,表示取不到有效值。
5932
5783
  :rtype: int
5933
5784
  """
5934
5785
  return self._InstanceType
@@ -5940,7 +5791,6 @@ class RabbitMQClusterInfo(AbstractModel):
5940
5791
  @property
5941
5792
  def MessageRetainTime(self):
5942
5793
  """消息保留时间,单位小时
5943
- 注意:此字段可能返回 null,表示取不到有效值。
5944
5794
  :rtype: int
5945
5795
  """
5946
5796
  return self._MessageRetainTime
@@ -6155,25 +6005,18 @@ class RabbitMQConnection(AbstractModel):
6155
6005
  def __init__(self):
6156
6006
  r"""
6157
6007
  :param _ConnectionName: 连接名称
6158
- 注意:此字段可能返回 null,表示取不到有效值。
6159
6008
  :type ConnectionName: str
6160
6009
  :param _PeerHost: 客户端ip
6161
- 注意:此字段可能返回 null,表示取不到有效值。
6162
6010
  :type PeerHost: str
6163
6011
  :param _State: 连接状态,包括 starting、tuning、opening、running、flow、blocking、blocked、closing 和 closed
6164
- 注意:此字段可能返回 null,表示取不到有效值。
6165
6012
  :type State: str
6166
6013
  :param _User: 连接使用用户
6167
- 注意:此字段可能返回 null,表示取不到有效值。
6168
6014
  :type User: str
6169
6015
  :param _SSL: 是否开启ssl
6170
- 注意:此字段可能返回 null,表示取不到有效值。
6171
6016
  :type SSL: bool
6172
6017
  :param _Protocol: 连接协议
6173
- 注意:此字段可能返回 null,表示取不到有效值。
6174
6018
  :type Protocol: str
6175
6019
  :param _Channels: 连接下的channel数
6176
- 注意:此字段可能返回 null,表示取不到有效值。
6177
6020
  :type Channels: int
6178
6021
  """
6179
6022
  self._ConnectionName = None
@@ -6187,7 +6030,6 @@ class RabbitMQConnection(AbstractModel):
6187
6030
  @property
6188
6031
  def ConnectionName(self):
6189
6032
  """连接名称
6190
- 注意:此字段可能返回 null,表示取不到有效值。
6191
6033
  :rtype: str
6192
6034
  """
6193
6035
  return self._ConnectionName
@@ -6199,7 +6041,6 @@ class RabbitMQConnection(AbstractModel):
6199
6041
  @property
6200
6042
  def PeerHost(self):
6201
6043
  """客户端ip
6202
- 注意:此字段可能返回 null,表示取不到有效值。
6203
6044
  :rtype: str
6204
6045
  """
6205
6046
  return self._PeerHost
@@ -6211,7 +6052,6 @@ class RabbitMQConnection(AbstractModel):
6211
6052
  @property
6212
6053
  def State(self):
6213
6054
  """连接状态,包括 starting、tuning、opening、running、flow、blocking、blocked、closing 和 closed
6214
- 注意:此字段可能返回 null,表示取不到有效值。
6215
6055
  :rtype: str
6216
6056
  """
6217
6057
  return self._State
@@ -6223,7 +6063,6 @@ class RabbitMQConnection(AbstractModel):
6223
6063
  @property
6224
6064
  def User(self):
6225
6065
  """连接使用用户
6226
- 注意:此字段可能返回 null,表示取不到有效值。
6227
6066
  :rtype: str
6228
6067
  """
6229
6068
  return self._User
@@ -6235,7 +6074,6 @@ class RabbitMQConnection(AbstractModel):
6235
6074
  @property
6236
6075
  def SSL(self):
6237
6076
  """是否开启ssl
6238
- 注意:此字段可能返回 null,表示取不到有效值。
6239
6077
  :rtype: bool
6240
6078
  """
6241
6079
  return self._SSL
@@ -6247,7 +6085,6 @@ class RabbitMQConnection(AbstractModel):
6247
6085
  @property
6248
6086
  def Protocol(self):
6249
6087
  """连接协议
6250
- 注意:此字段可能返回 null,表示取不到有效值。
6251
6088
  :rtype: str
6252
6089
  """
6253
6090
  return self._Protocol
@@ -6259,7 +6096,6 @@ class RabbitMQConnection(AbstractModel):
6259
6096
  @property
6260
6097
  def Channels(self):
6261
6098
  """连接下的channel数
6262
- 注意:此字段可能返回 null,表示取不到有效值。
6263
6099
  :rtype: int
6264
6100
  """
6265
6101
  return self._Channels
@@ -6295,10 +6131,8 @@ class RabbitMQConsumersListInfo(AbstractModel):
6295
6131
  def __init__(self):
6296
6132
  r"""
6297
6133
  :param _ClientIp: 客户端Ip
6298
- 注意:此字段可能返回 null,表示取不到有效值。
6299
6134
  :type ClientIp: str
6300
6135
  :param _ConsumerTag: 消费者Tag
6301
- 注意:此字段可能返回 null,表示取不到有效值。
6302
6136
  :type ConsumerTag: str
6303
6137
  """
6304
6138
  self._ClientIp = None
@@ -6307,7 +6141,6 @@ class RabbitMQConsumersListInfo(AbstractModel):
6307
6141
  @property
6308
6142
  def ClientIp(self):
6309
6143
  """客户端Ip
6310
- 注意:此字段可能返回 null,表示取不到有效值。
6311
6144
  :rtype: str
6312
6145
  """
6313
6146
  return self._ClientIp
@@ -6319,7 +6152,6 @@ class RabbitMQConsumersListInfo(AbstractModel):
6319
6152
  @property
6320
6153
  def ConsumerTag(self):
6321
6154
  """消费者Tag
6322
- 注意:此字段可能返回 null,表示取不到有效值。
6323
6155
  :rtype: str
6324
6156
  """
6325
6157
  return self._ConsumerTag
@@ -6352,48 +6184,34 @@ class RabbitMQExchangeListInfo(AbstractModel):
6352
6184
  :param _ExchangeName: exchange 名
6353
6185
  :type ExchangeName: str
6354
6186
  :param _Remark: 备注说明
6355
- 注意:此字段可能返回 null,表示取不到有效值。
6356
6187
  :type Remark: str
6357
6188
  :param _ExchangeType: exchange 类型, 支持 "fanout","direct","topic","headers"
6358
6189
  :type ExchangeType: str
6359
6190
  :param _VirtualHost: VHost参数
6360
- 注意:此字段可能返回 null,表示取不到有效值。
6361
6191
  :type VirtualHost: str
6362
6192
  :param _ExchangeCreator: exchange 创建者, "system":"系统创建", "user":"用户创建"
6363
- 注意:此字段可能返回 null,表示取不到有效值。
6364
6193
  :type ExchangeCreator: str
6365
6194
  :param _CreateTimeStamp: exchange 创建时间
6366
- 注意:此字段可能返回 null,表示取不到有效值。
6367
6195
  :type CreateTimeStamp: str
6368
6196
  :param _ModTimeStamp: exchange 修改时间
6369
- 注意:此字段可能返回 null,表示取不到有效值。
6370
6197
  :type ModTimeStamp: str
6371
6198
  :param _MessageRateIn: 输入消息速率
6372
- 注意:此字段可能返回 null,表示取不到有效值。
6373
6199
  :type MessageRateIn: float
6374
6200
  :param _MessageRateOut: 输出消息速率
6375
- 注意:此字段可能返回 null,表示取不到有效值。
6376
6201
  :type MessageRateOut: float
6377
6202
  :param _Durable: 是否为持久化交换机,true 为持久化,false 为非持久化
6378
- 注意:此字段可能返回 null,表示取不到有效值。
6379
6203
  :type Durable: bool
6380
6204
  :param _AutoDelete: 是否为自动删除交换机,true 为自动删除,false 为非自动删除
6381
- 注意:此字段可能返回 null,表示取不到有效值。
6382
6205
  :type AutoDelete: bool
6383
6206
  :param _Internal: 是否为内部交换机,true 为内部交换机
6384
- 注意:此字段可能返回 null,表示取不到有效值。
6385
6207
  :type Internal: bool
6386
6208
  :param _InstanceId: 交换机所属实例 ID
6387
- 注意:此字段可能返回 null,表示取不到有效值。
6388
6209
  :type InstanceId: str
6389
6210
  :param _Policy: 生效的策略名称
6390
- 注意:此字段可能返回 null,表示取不到有效值。
6391
6211
  :type Policy: str
6392
6212
  :param _Arguments: 扩展参数 key-value 对象
6393
- 注意:此字段可能返回 null,表示取不到有效值。
6394
6213
  :type Arguments: str
6395
6214
  :param _MessagesDelayed: 未调度的延时消息数量
6396
- 注意:此字段可能返回 null,表示取不到有效值。
6397
6215
  :type MessagesDelayed: int
6398
6216
  """
6399
6217
  self._ExchangeName = None
@@ -6427,7 +6245,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6427
6245
  @property
6428
6246
  def Remark(self):
6429
6247
  """备注说明
6430
- 注意:此字段可能返回 null,表示取不到有效值。
6431
6248
  :rtype: str
6432
6249
  """
6433
6250
  return self._Remark
@@ -6450,7 +6267,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6450
6267
  @property
6451
6268
  def VirtualHost(self):
6452
6269
  """VHost参数
6453
- 注意:此字段可能返回 null,表示取不到有效值。
6454
6270
  :rtype: str
6455
6271
  """
6456
6272
  return self._VirtualHost
@@ -6462,7 +6278,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6462
6278
  @property
6463
6279
  def ExchangeCreator(self):
6464
6280
  """exchange 创建者, "system":"系统创建", "user":"用户创建"
6465
- 注意:此字段可能返回 null,表示取不到有效值。
6466
6281
  :rtype: str
6467
6282
  """
6468
6283
  return self._ExchangeCreator
@@ -6474,7 +6289,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6474
6289
  @property
6475
6290
  def CreateTimeStamp(self):
6476
6291
  """exchange 创建时间
6477
- 注意:此字段可能返回 null,表示取不到有效值。
6478
6292
  :rtype: str
6479
6293
  """
6480
6294
  return self._CreateTimeStamp
@@ -6486,7 +6300,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6486
6300
  @property
6487
6301
  def ModTimeStamp(self):
6488
6302
  """exchange 修改时间
6489
- 注意:此字段可能返回 null,表示取不到有效值。
6490
6303
  :rtype: str
6491
6304
  """
6492
6305
  return self._ModTimeStamp
@@ -6498,7 +6311,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6498
6311
  @property
6499
6312
  def MessageRateIn(self):
6500
6313
  """输入消息速率
6501
- 注意:此字段可能返回 null,表示取不到有效值。
6502
6314
  :rtype: float
6503
6315
  """
6504
6316
  return self._MessageRateIn
@@ -6510,7 +6322,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6510
6322
  @property
6511
6323
  def MessageRateOut(self):
6512
6324
  """输出消息速率
6513
- 注意:此字段可能返回 null,表示取不到有效值。
6514
6325
  :rtype: float
6515
6326
  """
6516
6327
  return self._MessageRateOut
@@ -6522,7 +6333,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6522
6333
  @property
6523
6334
  def Durable(self):
6524
6335
  """是否为持久化交换机,true 为持久化,false 为非持久化
6525
- 注意:此字段可能返回 null,表示取不到有效值。
6526
6336
  :rtype: bool
6527
6337
  """
6528
6338
  return self._Durable
@@ -6534,7 +6344,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6534
6344
  @property
6535
6345
  def AutoDelete(self):
6536
6346
  """是否为自动删除交换机,true 为自动删除,false 为非自动删除
6537
- 注意:此字段可能返回 null,表示取不到有效值。
6538
6347
  :rtype: bool
6539
6348
  """
6540
6349
  return self._AutoDelete
@@ -6546,7 +6355,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6546
6355
  @property
6547
6356
  def Internal(self):
6548
6357
  """是否为内部交换机,true 为内部交换机
6549
- 注意:此字段可能返回 null,表示取不到有效值。
6550
6358
  :rtype: bool
6551
6359
  """
6552
6360
  return self._Internal
@@ -6558,7 +6366,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6558
6366
  @property
6559
6367
  def InstanceId(self):
6560
6368
  """交换机所属实例 ID
6561
- 注意:此字段可能返回 null,表示取不到有效值。
6562
6369
  :rtype: str
6563
6370
  """
6564
6371
  return self._InstanceId
@@ -6570,7 +6377,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6570
6377
  @property
6571
6378
  def Policy(self):
6572
6379
  """生效的策略名称
6573
- 注意:此字段可能返回 null,表示取不到有效值。
6574
6380
  :rtype: str
6575
6381
  """
6576
6382
  return self._Policy
@@ -6582,7 +6388,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6582
6388
  @property
6583
6389
  def Arguments(self):
6584
6390
  """扩展参数 key-value 对象
6585
- 注意:此字段可能返回 null,表示取不到有效值。
6586
6391
  :rtype: str
6587
6392
  """
6588
6393
  return self._Arguments
@@ -6594,7 +6399,6 @@ class RabbitMQExchangeListInfo(AbstractModel):
6594
6399
  @property
6595
6400
  def MessagesDelayed(self):
6596
6401
  """未调度的延时消息数量
6597
- 注意:此字段可能返回 null,表示取不到有效值。
6598
6402
  :rtype: int
6599
6403
  """
6600
6404
  return self._MessagesDelayed
@@ -6645,19 +6449,14 @@ class RabbitMQPermission(AbstractModel):
6645
6449
  :param _VirtualHost: vhost名
6646
6450
  :type VirtualHost: str
6647
6451
  :param _ConfigRegexp: 权限类型,declare相关操作,该用户可操作该vhost下的资源名称正则表达式
6648
- 注意:此字段可能返回 null,表示取不到有效值。
6649
6452
  :type ConfigRegexp: str
6650
6453
  :param _WriteRegexp: 权限类型,消息写入相关操作,该用户可操作该vhost下的资源名称正则表达式
6651
- 注意:此字段可能返回 null,表示取不到有效值。
6652
6454
  :type WriteRegexp: str
6653
6455
  :param _ReadRegexp: 权限类型,消息读取相关操作,该用户可操作该vhost下的资源名称正则表达式
6654
- 注意:此字段可能返回 null,表示取不到有效值。
6655
6456
  :type ReadRegexp: str
6656
6457
  :param _CreateTime: 创建时间
6657
- 注意:此字段可能返回 null,表示取不到有效值。
6658
6458
  :type CreateTime: str
6659
6459
  :param _ModifyTime: 修改时间
6660
- 注意:此字段可能返回 null,表示取不到有效值。
6661
6460
  :type ModifyTime: str
6662
6461
  """
6663
6462
  self._InstanceId = None
@@ -6705,7 +6504,6 @@ class RabbitMQPermission(AbstractModel):
6705
6504
  @property
6706
6505
  def ConfigRegexp(self):
6707
6506
  """权限类型,declare相关操作,该用户可操作该vhost下的资源名称正则表达式
6708
- 注意:此字段可能返回 null,表示取不到有效值。
6709
6507
  :rtype: str
6710
6508
  """
6711
6509
  return self._ConfigRegexp
@@ -6717,7 +6515,6 @@ class RabbitMQPermission(AbstractModel):
6717
6515
  @property
6718
6516
  def WriteRegexp(self):
6719
6517
  """权限类型,消息写入相关操作,该用户可操作该vhost下的资源名称正则表达式
6720
- 注意:此字段可能返回 null,表示取不到有效值。
6721
6518
  :rtype: str
6722
6519
  """
6723
6520
  return self._WriteRegexp
@@ -6729,7 +6526,6 @@ class RabbitMQPermission(AbstractModel):
6729
6526
  @property
6730
6527
  def ReadRegexp(self):
6731
6528
  """权限类型,消息读取相关操作,该用户可操作该vhost下的资源名称正则表达式
6732
- 注意:此字段可能返回 null,表示取不到有效值。
6733
6529
  :rtype: str
6734
6530
  """
6735
6531
  return self._ReadRegexp
@@ -6741,7 +6537,6 @@ class RabbitMQPermission(AbstractModel):
6741
6537
  @property
6742
6538
  def CreateTime(self):
6743
6539
  """创建时间
6744
- 注意:此字段可能返回 null,表示取不到有效值。
6745
6540
  :rtype: str
6746
6541
  """
6747
6542
  return self._CreateTime
@@ -6753,7 +6548,6 @@ class RabbitMQPermission(AbstractModel):
6753
6548
  @property
6754
6549
  def ModifyTime(self):
6755
6550
  """修改时间
6756
- 注意:此字段可能返回 null,表示取不到有效值。
6757
6551
  :rtype: str
6758
6552
  """
6759
6553
  return self._ModifyTime
@@ -6790,7 +6584,6 @@ class RabbitMQQueueListConsumerDetailInfo(AbstractModel):
6790
6584
  def __init__(self):
6791
6585
  r"""
6792
6586
  :param _ConsumersNumber: 消费者数量
6793
- 注意:此字段可能返回 null,表示取不到有效值。
6794
6587
  :type ConsumersNumber: int
6795
6588
  """
6796
6589
  self._ConsumersNumber = None
@@ -6798,7 +6591,6 @@ class RabbitMQQueueListConsumerDetailInfo(AbstractModel):
6798
6591
  @property
6799
6592
  def ConsumersNumber(self):
6800
6593
  """消费者数量
6801
- 注意:此字段可能返回 null,表示取不到有效值。
6802
6594
  :rtype: int
6803
6595
  """
6804
6596
  return self._ConsumersNumber
@@ -6830,52 +6622,36 @@ class RabbitMQQueueListInfo(AbstractModel):
6830
6622
  :param _QueueName: 队列名
6831
6623
  :type QueueName: str
6832
6624
  :param _Remark: 备注说明
6833
- 注意:此字段可能返回 null,表示取不到有效值。
6834
6625
  :type Remark: str
6835
6626
  :param _ConsumerDetail: 消费者信息
6836
- 注意:此字段可能返回 null,表示取不到有效值。
6837
6627
  :type ConsumerDetail: :class:`tencentcloud.trabbit.v20230418.models.RabbitMQQueueListConsumerDetailInfo`
6838
6628
  :param _QueueType: 队列类型,取值 "classic","quorum"
6839
- 注意:此字段可能返回 null,表示取不到有效值。
6840
6629
  :type QueueType: str
6841
6630
  :param _MessageHeapCount: 消息堆积数
6842
- 注意:此字段可能返回 null,表示取不到有效值。
6843
6631
  :type MessageHeapCount: int
6844
6632
  :param _MessageRateIn: 消息生产速率,每秒
6845
- 注意:此字段可能返回 null,表示取不到有效值。
6846
6633
  :type MessageRateIn: float
6847
6634
  :param _MessageRateOut: 消息消费速率,每秒
6848
- 注意:此字段可能返回 null,表示取不到有效值。
6849
6635
  :type MessageRateOut: float
6850
6636
  :param _CreateTime: 创建时间
6851
- 注意:此字段可能返回 null,表示取不到有效值。
6852
6637
  :type CreateTime: str
6853
6638
  :param _ModifyTime: 修改时间
6854
- 注意:此字段可能返回 null,表示取不到有效值。
6855
6639
  :type ModifyTime: str
6856
6640
  :param _Durable: 队列是否持久化,true 为持久化,false 为非持久化
6857
- 注意:此字段可能返回 null,表示取不到有效值。
6858
6641
  :type Durable: bool
6859
6642
  :param _AutoDelete: 队列是否为自动删除队列,true 为自动删除,false 为非自动删除
6860
- 注意:此字段可能返回 null,表示取不到有效值。
6861
6643
  :type AutoDelete: bool
6862
6644
  :param _InstanceId: 队列所属实例 ID
6863
- 注意:此字段可能返回 null,表示取不到有效值。
6864
6645
  :type InstanceId: str
6865
6646
  :param _VirtualHost: 队列所属虚拟主机名称
6866
- 注意:此字段可能返回 null,表示取不到有效值。
6867
6647
  :type VirtualHost: str
6868
6648
  :param _Node: 队列所在主节点名称
6869
- 注意:此字段可能返回 null,表示取不到有效值。
6870
6649
  :type Node: str
6871
6650
  :param _Policy: 生效的策略名称
6872
- 注意:此字段可能返回 null,表示取不到有效值。
6873
6651
  :type Policy: str
6874
6652
  :param _Arguments: 扩展参数 key-value 对象
6875
- 注意:此字段可能返回 null,表示取不到有效值。
6876
6653
  :type Arguments: str
6877
6654
  :param _Exclusive: 是否独占队列
6878
- 注意:此字段可能返回 null,表示取不到有效值。
6879
6655
  :type Exclusive: bool
6880
6656
  """
6881
6657
  self._QueueName = None
@@ -6910,7 +6686,6 @@ class RabbitMQQueueListInfo(AbstractModel):
6910
6686
  @property
6911
6687
  def Remark(self):
6912
6688
  """备注说明
6913
- 注意:此字段可能返回 null,表示取不到有效值。
6914
6689
  :rtype: str
6915
6690
  """
6916
6691
  return self._Remark
@@ -6922,7 +6697,6 @@ class RabbitMQQueueListInfo(AbstractModel):
6922
6697
  @property
6923
6698
  def ConsumerDetail(self):
6924
6699
  """消费者信息
6925
- 注意:此字段可能返回 null,表示取不到有效值。
6926
6700
  :rtype: :class:`tencentcloud.trabbit.v20230418.models.RabbitMQQueueListConsumerDetailInfo`
6927
6701
  """
6928
6702
  return self._ConsumerDetail
@@ -6934,7 +6708,6 @@ class RabbitMQQueueListInfo(AbstractModel):
6934
6708
  @property
6935
6709
  def QueueType(self):
6936
6710
  """队列类型,取值 "classic","quorum"
6937
- 注意:此字段可能返回 null,表示取不到有效值。
6938
6711
  :rtype: str
6939
6712
  """
6940
6713
  return self._QueueType
@@ -6946,7 +6719,6 @@ class RabbitMQQueueListInfo(AbstractModel):
6946
6719
  @property
6947
6720
  def MessageHeapCount(self):
6948
6721
  """消息堆积数
6949
- 注意:此字段可能返回 null,表示取不到有效值。
6950
6722
  :rtype: int
6951
6723
  """
6952
6724
  return self._MessageHeapCount
@@ -6958,7 +6730,6 @@ class RabbitMQQueueListInfo(AbstractModel):
6958
6730
  @property
6959
6731
  def MessageRateIn(self):
6960
6732
  """消息生产速率,每秒
6961
- 注意:此字段可能返回 null,表示取不到有效值。
6962
6733
  :rtype: float
6963
6734
  """
6964
6735
  return self._MessageRateIn
@@ -6970,7 +6741,6 @@ class RabbitMQQueueListInfo(AbstractModel):
6970
6741
  @property
6971
6742
  def MessageRateOut(self):
6972
6743
  """消息消费速率,每秒
6973
- 注意:此字段可能返回 null,表示取不到有效值。
6974
6744
  :rtype: float
6975
6745
  """
6976
6746
  return self._MessageRateOut
@@ -6982,7 +6752,6 @@ class RabbitMQQueueListInfo(AbstractModel):
6982
6752
  @property
6983
6753
  def CreateTime(self):
6984
6754
  """创建时间
6985
- 注意:此字段可能返回 null,表示取不到有效值。
6986
6755
  :rtype: str
6987
6756
  """
6988
6757
  return self._CreateTime
@@ -6994,7 +6763,6 @@ class RabbitMQQueueListInfo(AbstractModel):
6994
6763
  @property
6995
6764
  def ModifyTime(self):
6996
6765
  """修改时间
6997
- 注意:此字段可能返回 null,表示取不到有效值。
6998
6766
  :rtype: str
6999
6767
  """
7000
6768
  return self._ModifyTime
@@ -7006,7 +6774,6 @@ class RabbitMQQueueListInfo(AbstractModel):
7006
6774
  @property
7007
6775
  def Durable(self):
7008
6776
  """队列是否持久化,true 为持久化,false 为非持久化
7009
- 注意:此字段可能返回 null,表示取不到有效值。
7010
6777
  :rtype: bool
7011
6778
  """
7012
6779
  return self._Durable
@@ -7018,7 +6785,6 @@ class RabbitMQQueueListInfo(AbstractModel):
7018
6785
  @property
7019
6786
  def AutoDelete(self):
7020
6787
  """队列是否为自动删除队列,true 为自动删除,false 为非自动删除
7021
- 注意:此字段可能返回 null,表示取不到有效值。
7022
6788
  :rtype: bool
7023
6789
  """
7024
6790
  return self._AutoDelete
@@ -7030,7 +6796,6 @@ class RabbitMQQueueListInfo(AbstractModel):
7030
6796
  @property
7031
6797
  def InstanceId(self):
7032
6798
  """队列所属实例 ID
7033
- 注意:此字段可能返回 null,表示取不到有效值。
7034
6799
  :rtype: str
7035
6800
  """
7036
6801
  return self._InstanceId
@@ -7042,7 +6807,6 @@ class RabbitMQQueueListInfo(AbstractModel):
7042
6807
  @property
7043
6808
  def VirtualHost(self):
7044
6809
  """队列所属虚拟主机名称
7045
- 注意:此字段可能返回 null,表示取不到有效值。
7046
6810
  :rtype: str
7047
6811
  """
7048
6812
  return self._VirtualHost
@@ -7054,7 +6818,6 @@ class RabbitMQQueueListInfo(AbstractModel):
7054
6818
  @property
7055
6819
  def Node(self):
7056
6820
  """队列所在主节点名称
7057
- 注意:此字段可能返回 null,表示取不到有效值。
7058
6821
  :rtype: str
7059
6822
  """
7060
6823
  return self._Node
@@ -7066,7 +6829,6 @@ class RabbitMQQueueListInfo(AbstractModel):
7066
6829
  @property
7067
6830
  def Policy(self):
7068
6831
  """生效的策略名称
7069
- 注意:此字段可能返回 null,表示取不到有效值。
7070
6832
  :rtype: str
7071
6833
  """
7072
6834
  return self._Policy
@@ -7078,7 +6840,6 @@ class RabbitMQQueueListInfo(AbstractModel):
7078
6840
  @property
7079
6841
  def Arguments(self):
7080
6842
  """扩展参数 key-value 对象
7081
- 注意:此字段可能返回 null,表示取不到有效值。
7082
6843
  :rtype: str
7083
6844
  """
7084
6845
  return self._Arguments
@@ -7090,7 +6851,6 @@ class RabbitMQQueueListInfo(AbstractModel):
7090
6851
  @property
7091
6852
  def Exclusive(self):
7092
6853
  """是否独占队列
7093
- 注意:此字段可能返回 null,表示取不到有效值。
7094
6854
  :rtype: bool
7095
6855
  """
7096
6856
  return self._Exclusive
@@ -7138,10 +6898,8 @@ class RabbitMQServerlessAccessInfo(AbstractModel):
7138
6898
  def __init__(self):
7139
6899
  r"""
7140
6900
  :param _PublicAccessEndpoint: 公网域名
7141
- 注意:此字段可能返回 null,表示取不到有效值。
7142
6901
  :type PublicAccessEndpoint: str
7143
6902
  :param _PublicDataStreamStatus: 公网状态
7144
- 注意:此字段可能返回 null,表示取不到有效值。
7145
6903
  :type PublicDataStreamStatus: str
7146
6904
  """
7147
6905
  self._PublicAccessEndpoint = None
@@ -7150,7 +6908,6 @@ class RabbitMQServerlessAccessInfo(AbstractModel):
7150
6908
  @property
7151
6909
  def PublicAccessEndpoint(self):
7152
6910
  """公网域名
7153
- 注意:此字段可能返回 null,表示取不到有效值。
7154
6911
  :rtype: str
7155
6912
  """
7156
6913
  return self._PublicAccessEndpoint
@@ -7162,7 +6919,6 @@ class RabbitMQServerlessAccessInfo(AbstractModel):
7162
6919
  @property
7163
6920
  def PublicDataStreamStatus(self):
7164
6921
  """公网状态
7165
- 注意:此字段可能返回 null,表示取不到有效值。
7166
6922
  :rtype: str
7167
6923
  """
7168
6924
  return self._PublicDataStreamStatus
@@ -7193,25 +6949,18 @@ class RabbitMQServerlessEndpoint(AbstractModel):
7193
6949
  def __init__(self):
7194
6950
  r"""
7195
6951
  :param _VpcId: vpc id
7196
- 注意:此字段可能返回 null,表示取不到有效值。
7197
6952
  :type VpcId: str
7198
6953
  :param _SubnetId: subnet id
7199
- 注意:此字段可能返回 null,表示取不到有效值。
7200
6954
  :type SubnetId: str
7201
6955
  :param _VpcEndpoint: 接入地址
7202
- 注意:此字段可能返回 null,表示取不到有效值。
7203
6956
  :type VpcEndpoint: str
7204
6957
  :param _VpcDataStreamEndpointStatus: 接入地址状态
7205
- 注意:此字段可能返回 null,表示取不到有效值。
7206
6958
  :type VpcDataStreamEndpointStatus: str
7207
6959
  :param _PublicNetwork: 是否是公网
7208
- 注意:此字段可能返回 null,表示取不到有效值。
7209
6960
  :type PublicNetwork: bool
7210
6961
  :param _AccessStrategy: 访问策略
7211
- 注意:此字段可能返回 null,表示取不到有效值。
7212
6962
  :type AccessStrategy: str
7213
6963
  :param _Bandwidth: 带宽
7214
- 注意:此字段可能返回 null,表示取不到有效值。
7215
6964
  :type Bandwidth: int
7216
6965
  """
7217
6966
  self._VpcId = None
@@ -7225,7 +6974,6 @@ class RabbitMQServerlessEndpoint(AbstractModel):
7225
6974
  @property
7226
6975
  def VpcId(self):
7227
6976
  """vpc id
7228
- 注意:此字段可能返回 null,表示取不到有效值。
7229
6977
  :rtype: str
7230
6978
  """
7231
6979
  return self._VpcId
@@ -7237,7 +6985,6 @@ class RabbitMQServerlessEndpoint(AbstractModel):
7237
6985
  @property
7238
6986
  def SubnetId(self):
7239
6987
  """subnet id
7240
- 注意:此字段可能返回 null,表示取不到有效值。
7241
6988
  :rtype: str
7242
6989
  """
7243
6990
  return self._SubnetId
@@ -7249,7 +6996,6 @@ class RabbitMQServerlessEndpoint(AbstractModel):
7249
6996
  @property
7250
6997
  def VpcEndpoint(self):
7251
6998
  """接入地址
7252
- 注意:此字段可能返回 null,表示取不到有效值。
7253
6999
  :rtype: str
7254
7000
  """
7255
7001
  return self._VpcEndpoint
@@ -7261,7 +7007,6 @@ class RabbitMQServerlessEndpoint(AbstractModel):
7261
7007
  @property
7262
7008
  def VpcDataStreamEndpointStatus(self):
7263
7009
  """接入地址状态
7264
- 注意:此字段可能返回 null,表示取不到有效值。
7265
7010
  :rtype: str
7266
7011
  """
7267
7012
  return self._VpcDataStreamEndpointStatus
@@ -7273,7 +7018,6 @@ class RabbitMQServerlessEndpoint(AbstractModel):
7273
7018
  @property
7274
7019
  def PublicNetwork(self):
7275
7020
  """是否是公网
7276
- 注意:此字段可能返回 null,表示取不到有效值。
7277
7021
  :rtype: bool
7278
7022
  """
7279
7023
  return self._PublicNetwork
@@ -7285,7 +7029,6 @@ class RabbitMQServerlessEndpoint(AbstractModel):
7285
7029
  @property
7286
7030
  def AccessStrategy(self):
7287
7031
  """访问策略
7288
- 注意:此字段可能返回 null,表示取不到有效值。
7289
7032
  :rtype: str
7290
7033
  """
7291
7034
  return self._AccessStrategy
@@ -7297,7 +7040,6 @@ class RabbitMQServerlessEndpoint(AbstractModel):
7297
7040
  @property
7298
7041
  def Bandwidth(self):
7299
7042
  """带宽
7300
- 注意:此字段可能返回 null,表示取不到有效值。
7301
7043
  :rtype: int
7302
7044
  """
7303
7045
  return self._Bandwidth
@@ -7351,18 +7093,14 @@ class RabbitMQServerlessInstance(AbstractModel):
7351
7093
  :param _PayMode: 0-后付费,1-预付费
7352
7094
  :type PayMode: int
7353
7095
  :param _Remark: 备注
7354
- 注意:此字段可能返回 null,表示取不到有效值。
7355
7096
  :type Remark: str
7356
7097
  :param _SpecName: 集群规格
7357
7098
  :type SpecName: str
7358
7099
  :param _ExceptionInformation: 异常信息
7359
- 注意:此字段可能返回 null,表示取不到有效值。
7360
7100
  :type ExceptionInformation: str
7361
7101
  :param _PublicAccessEndpoint: 公网接入点
7362
- 注意:此字段可能返回 null,表示取不到有效值。
7363
7102
  :type PublicAccessEndpoint: str
7364
7103
  :param _Vpcs: 私有网络接入点
7365
- 注意:此字段可能返回 null,表示取不到有效值。
7366
7104
  :type Vpcs: list of RabbitMQServerlessEndpoint
7367
7105
  :param _ClusterStatus: 实例状态,0表示创建中,1表示正常,2表示隔离中,3表示已销毁,4 - 异常, 5 - 发货失败
7368
7106
 
@@ -7375,6 +7113,8 @@ class RabbitMQServerlessInstance(AbstractModel):
7375
7113
  :type NodeCount: int
7376
7114
  :param _MaxStorage: 为了兼容托管版,固定值 0
7377
7115
  :type MaxStorage: int
7116
+ :param _IsolatedTime: 隔离时间
7117
+ :type IsolatedTime: int
7378
7118
  """
7379
7119
  self._InstanceId = None
7380
7120
  self._InstanceName = None
@@ -7395,6 +7135,7 @@ class RabbitMQServerlessInstance(AbstractModel):
7395
7135
  self._CreateTime = None
7396
7136
  self._NodeCount = None
7397
7137
  self._MaxStorage = None
7138
+ self._IsolatedTime = None
7398
7139
 
7399
7140
  @property
7400
7141
  def InstanceId(self):
@@ -7498,7 +7239,6 @@ class RabbitMQServerlessInstance(AbstractModel):
7498
7239
  @property
7499
7240
  def Remark(self):
7500
7241
  """备注
7501
- 注意:此字段可能返回 null,表示取不到有效值。
7502
7242
  :rtype: str
7503
7243
  """
7504
7244
  return self._Remark
@@ -7521,7 +7261,6 @@ class RabbitMQServerlessInstance(AbstractModel):
7521
7261
  @property
7522
7262
  def ExceptionInformation(self):
7523
7263
  """异常信息
7524
- 注意:此字段可能返回 null,表示取不到有效值。
7525
7264
  :rtype: str
7526
7265
  """
7527
7266
  return self._ExceptionInformation
@@ -7533,7 +7272,6 @@ class RabbitMQServerlessInstance(AbstractModel):
7533
7272
  @property
7534
7273
  def PublicAccessEndpoint(self):
7535
7274
  """公网接入点
7536
- 注意:此字段可能返回 null,表示取不到有效值。
7537
7275
  :rtype: str
7538
7276
  """
7539
7277
  return self._PublicAccessEndpoint
@@ -7545,7 +7283,6 @@ class RabbitMQServerlessInstance(AbstractModel):
7545
7283
  @property
7546
7284
  def Vpcs(self):
7547
7285
  """私有网络接入点
7548
- 注意:此字段可能返回 null,表示取不到有效值。
7549
7286
  :rtype: list of RabbitMQServerlessEndpoint
7550
7287
  """
7551
7288
  return self._Vpcs
@@ -7610,6 +7347,17 @@ class RabbitMQServerlessInstance(AbstractModel):
7610
7347
  def MaxStorage(self, MaxStorage):
7611
7348
  self._MaxStorage = MaxStorage
7612
7349
 
7350
+ @property
7351
+ def IsolatedTime(self):
7352
+ """隔离时间
7353
+ :rtype: int
7354
+ """
7355
+ return self._IsolatedTime
7356
+
7357
+ @IsolatedTime.setter
7358
+ def IsolatedTime(self, IsolatedTime):
7359
+ self._IsolatedTime = IsolatedTime
7360
+
7613
7361
 
7614
7362
  def _deserialize(self, params):
7615
7363
  self._InstanceId = params.get("InstanceId")
@@ -7636,6 +7384,7 @@ class RabbitMQServerlessInstance(AbstractModel):
7636
7384
  self._CreateTime = params.get("CreateTime")
7637
7385
  self._NodeCount = params.get("NodeCount")
7638
7386
  self._MaxStorage = params.get("MaxStorage")
7387
+ self._IsolatedTime = params.get("IsolatedTime")
7639
7388
  memeber_set = set(params.keys())
7640
7389
  for name, value in vars(self).items():
7641
7390
  property_name = name[1:]
@@ -7654,10 +7403,8 @@ class RabbitMQServerlessWhiteListInfo(AbstractModel):
7654
7403
  def __init__(self):
7655
7404
  r"""
7656
7405
  :param _PublicDataStreamWhiteList: 公网数据流白名单
7657
- 注意:此字段可能返回 null,表示取不到有效值。
7658
7406
  :type PublicDataStreamWhiteList: str
7659
7407
  :param _PublicDataStreamWhiteListStatus: 公网数据流白名单状态
7660
- 注意:此字段可能返回 null,表示取不到有效值。
7661
7408
  :type PublicDataStreamWhiteListStatus: str
7662
7409
  """
7663
7410
  self._PublicDataStreamWhiteList = None
@@ -7666,7 +7413,6 @@ class RabbitMQServerlessWhiteListInfo(AbstractModel):
7666
7413
  @property
7667
7414
  def PublicDataStreamWhiteList(self):
7668
7415
  """公网数据流白名单
7669
- 注意:此字段可能返回 null,表示取不到有效值。
7670
7416
  :rtype: str
7671
7417
  """
7672
7418
  return self._PublicDataStreamWhiteList
@@ -7678,7 +7424,6 @@ class RabbitMQServerlessWhiteListInfo(AbstractModel):
7678
7424
  @property
7679
7425
  def PublicDataStreamWhiteListStatus(self):
7680
7426
  """公网数据流白名单状态
7681
- 注意:此字段可能返回 null,表示取不到有效值。
7682
7427
  :rtype: str
7683
7428
  """
7684
7429
  return self._PublicDataStreamWhiteListStatus
@@ -7715,10 +7460,8 @@ class RabbitMQUser(AbstractModel):
7715
7460
  :param _Password: 密码,登录时使用
7716
7461
  :type Password: str
7717
7462
  :param _Description: 用户描述
7718
- 注意:此字段可能返回 null,表示取不到有效值。
7719
7463
  :type Description: str
7720
7464
  :param _Tags: 用户标签,用于决定改用户访问RabbitMQ Management的权限范围
7721
- 注意:此字段可能返回 null,表示取不到有效值。
7722
7465
  :type Tags: list of str
7723
7466
  :param _CreateTime: 用户创建时间
7724
7467
  :type CreateTime: str
@@ -7727,10 +7470,8 @@ class RabbitMQUser(AbstractModel):
7727
7470
  :param _Type: 用户类型,System:系统创建,User:用户创建
7728
7471
  :type Type: str
7729
7472
  :param _MaxConnections: 该用户所能允许的最大连接数
7730
- 注意:此字段可能返回 null,表示取不到有效值。
7731
7473
  :type MaxConnections: int
7732
7474
  :param _MaxChannels: 该用户所能允许的最大通道数
7733
- 注意:此字段可能返回 null,表示取不到有效值。
7734
7475
  :type MaxChannels: int
7735
7476
  """
7736
7477
  self._InstanceId = None
@@ -7780,7 +7521,6 @@ class RabbitMQUser(AbstractModel):
7780
7521
  @property
7781
7522
  def Description(self):
7782
7523
  """用户描述
7783
- 注意:此字段可能返回 null,表示取不到有效值。
7784
7524
  :rtype: str
7785
7525
  """
7786
7526
  return self._Description
@@ -7792,7 +7532,6 @@ class RabbitMQUser(AbstractModel):
7792
7532
  @property
7793
7533
  def Tags(self):
7794
7534
  """用户标签,用于决定改用户访问RabbitMQ Management的权限范围
7795
- 注意:此字段可能返回 null,表示取不到有效值。
7796
7535
  :rtype: list of str
7797
7536
  """
7798
7537
  return self._Tags
@@ -7837,7 +7576,6 @@ class RabbitMQUser(AbstractModel):
7837
7576
  @property
7838
7577
  def MaxConnections(self):
7839
7578
  """该用户所能允许的最大连接数
7840
- 注意:此字段可能返回 null,表示取不到有效值。
7841
7579
  :rtype: int
7842
7580
  """
7843
7581
  return self._MaxConnections
@@ -7849,7 +7587,6 @@ class RabbitMQUser(AbstractModel):
7849
7587
  @property
7850
7588
  def MaxChannels(self):
7851
7589
  """该用户所能允许的最大通道数
7852
- 注意:此字段可能返回 null,表示取不到有效值。
7853
7590
  :rtype: int
7854
7591
  """
7855
7592
  return self._MaxChannels
@@ -7892,34 +7629,24 @@ class RabbitMQVirtualHostInfo(AbstractModel):
7892
7629
  :param _VirtualHost: vhost名
7893
7630
  :type VirtualHost: str
7894
7631
  :param _Description: vhost描述信息
7895
- 注意:此字段可能返回 null,表示取不到有效值。
7896
7632
  :type Description: str
7897
7633
  :param _Tags: vhost标签
7898
- 注意:此字段可能返回 null,表示取不到有效值。
7899
7634
  :type Tags: list of str
7900
7635
  :param _CreateTime: 创建时间
7901
- 注意:此字段可能返回 null,表示取不到有效值。
7902
7636
  :type CreateTime: str
7903
7637
  :param _ModifyTime: 修改时间
7904
- 注意:此字段可能返回 null,表示取不到有效值。
7905
7638
  :type ModifyTime: str
7906
7639
  :param _VirtualHostStatistics: vhost概览统计信息
7907
- 注意:此字段可能返回 null,表示取不到有效值。
7908
7640
  :type VirtualHostStatistics: :class:`tencentcloud.trabbit.v20230418.models.RabbitMQVirtualHostStatistics`
7909
7641
  :param _Status: vhost状态,与原生控制台对应,有running、partial、stopped、unknown
7910
- 注意:此字段可能返回 null,表示取不到有效值。
7911
7642
  :type Status: str
7912
7643
  :param _MessageHeapCount: 消息堆积数
7913
- 注意:此字段可能返回 null,表示取不到有效值。
7914
7644
  :type MessageHeapCount: int
7915
7645
  :param _MessageRateIn: 输入消息速率
7916
- 注意:此字段可能返回 null,表示取不到有效值。
7917
7646
  :type MessageRateIn: float
7918
7647
  :param _MessageRateOut: 输出消息速率
7919
- 注意:此字段可能返回 null,表示取不到有效值。
7920
7648
  :type MessageRateOut: float
7921
7649
  :param _MirrorQueuePolicyFlag: 是否存在镜像队列策略,true 为存在,false 为不存
7922
- 注意:此字段可能返回 null,表示取不到有效值。
7923
7650
  :type MirrorQueuePolicyFlag: bool
7924
7651
  """
7925
7652
  self._InstanceId = None
@@ -7960,7 +7687,6 @@ class RabbitMQVirtualHostInfo(AbstractModel):
7960
7687
  @property
7961
7688
  def Description(self):
7962
7689
  """vhost描述信息
7963
- 注意:此字段可能返回 null,表示取不到有效值。
7964
7690
  :rtype: str
7965
7691
  """
7966
7692
  return self._Description
@@ -7972,7 +7698,6 @@ class RabbitMQVirtualHostInfo(AbstractModel):
7972
7698
  @property
7973
7699
  def Tags(self):
7974
7700
  """vhost标签
7975
- 注意:此字段可能返回 null,表示取不到有效值。
7976
7701
  :rtype: list of str
7977
7702
  """
7978
7703
  return self._Tags
@@ -7984,7 +7709,6 @@ class RabbitMQVirtualHostInfo(AbstractModel):
7984
7709
  @property
7985
7710
  def CreateTime(self):
7986
7711
  """创建时间
7987
- 注意:此字段可能返回 null,表示取不到有效值。
7988
7712
  :rtype: str
7989
7713
  """
7990
7714
  return self._CreateTime
@@ -7996,7 +7720,6 @@ class RabbitMQVirtualHostInfo(AbstractModel):
7996
7720
  @property
7997
7721
  def ModifyTime(self):
7998
7722
  """修改时间
7999
- 注意:此字段可能返回 null,表示取不到有效值。
8000
7723
  :rtype: str
8001
7724
  """
8002
7725
  return self._ModifyTime
@@ -8008,7 +7731,6 @@ class RabbitMQVirtualHostInfo(AbstractModel):
8008
7731
  @property
8009
7732
  def VirtualHostStatistics(self):
8010
7733
  """vhost概览统计信息
8011
- 注意:此字段可能返回 null,表示取不到有效值。
8012
7734
  :rtype: :class:`tencentcloud.trabbit.v20230418.models.RabbitMQVirtualHostStatistics`
8013
7735
  """
8014
7736
  return self._VirtualHostStatistics
@@ -8020,7 +7742,6 @@ class RabbitMQVirtualHostInfo(AbstractModel):
8020
7742
  @property
8021
7743
  def Status(self):
8022
7744
  """vhost状态,与原生控制台对应,有running、partial、stopped、unknown
8023
- 注意:此字段可能返回 null,表示取不到有效值。
8024
7745
  :rtype: str
8025
7746
  """
8026
7747
  return self._Status
@@ -8032,7 +7753,6 @@ class RabbitMQVirtualHostInfo(AbstractModel):
8032
7753
  @property
8033
7754
  def MessageHeapCount(self):
8034
7755
  """消息堆积数
8035
- 注意:此字段可能返回 null,表示取不到有效值。
8036
7756
  :rtype: int
8037
7757
  """
8038
7758
  return self._MessageHeapCount
@@ -8044,7 +7764,6 @@ class RabbitMQVirtualHostInfo(AbstractModel):
8044
7764
  @property
8045
7765
  def MessageRateIn(self):
8046
7766
  """输入消息速率
8047
- 注意:此字段可能返回 null,表示取不到有效值。
8048
7767
  :rtype: float
8049
7768
  """
8050
7769
  return self._MessageRateIn
@@ -8056,7 +7775,6 @@ class RabbitMQVirtualHostInfo(AbstractModel):
8056
7775
  @property
8057
7776
  def MessageRateOut(self):
8058
7777
  """输出消息速率
8059
- 注意:此字段可能返回 null,表示取不到有效值。
8060
7778
  :rtype: float
8061
7779
  """
8062
7780
  return self._MessageRateOut
@@ -8068,7 +7786,6 @@ class RabbitMQVirtualHostInfo(AbstractModel):
8068
7786
  @property
8069
7787
  def MirrorQueuePolicyFlag(self):
8070
7788
  """是否存在镜像队列策略,true 为存在,false 为不存
8071
- 注意:此字段可能返回 null,表示取不到有效值。
8072
7789
  :rtype: bool
8073
7790
  """
8074
7791
  return self._MirrorQueuePolicyFlag
@@ -8258,10 +7975,8 @@ class VirtualHostQuota(AbstractModel):
8258
7975
  def __init__(self):
8259
7976
  r"""
8260
7977
  :param _MaxVirtualHost: 最大虚拟主机数
8261
- 注意:此字段可能返回 null,表示取不到有效值。
8262
7978
  :type MaxVirtualHost: int
8263
7979
  :param _UsedVirtualHost: 已经使用的虚拟主机数
8264
- 注意:此字段可能返回 null,表示取不到有效值。
8265
7980
  :type UsedVirtualHost: int
8266
7981
  """
8267
7982
  self._MaxVirtualHost = None
@@ -8270,7 +7985,6 @@ class VirtualHostQuota(AbstractModel):
8270
7985
  @property
8271
7986
  def MaxVirtualHost(self):
8272
7987
  """最大虚拟主机数
8273
- 注意:此字段可能返回 null,表示取不到有效值。
8274
7988
  :rtype: int
8275
7989
  """
8276
7990
  return self._MaxVirtualHost
@@ -8282,7 +7996,6 @@ class VirtualHostQuota(AbstractModel):
8282
7996
  @property
8283
7997
  def UsedVirtualHost(self):
8284
7998
  """已经使用的虚拟主机数
8285
- 注意:此字段可能返回 null,表示取不到有效值。
8286
7999
  :rtype: int
8287
8000
  """
8288
8001
  return self._UsedVirtualHost
@@ -8320,7 +8033,6 @@ class VpcEndpointInfo(AbstractModel):
8320
8033
  :type VpcEndpoint: str
8321
8034
  :param _VpcDataStreamEndpointStatus: vpc接入点状态
8322
8035
  OFF/ON/CREATING/DELETING
8323
- 注意:此字段可能返回 null,表示取不到有效值。
8324
8036
  :type VpcDataStreamEndpointStatus: str
8325
8037
  """
8326
8038
  self._VpcId = None
@@ -8365,7 +8077,6 @@ OFF/ON/CREATING/DELETING
8365
8077
  def VpcDataStreamEndpointStatus(self):
8366
8078
  """vpc接入点状态
8367
8079
  OFF/ON/CREATING/DELETING
8368
- 注意:此字段可能返回 null,表示取不到有效值。
8369
8080
  :rtype: str
8370
8081
  """
8371
8082
  return self._VpcDataStreamEndpointStatus