tencentcloud-sdk-python 3.0.1337__py2.py3-none-any.whl → 3.0.1338__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 (48) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/acp/v20220105/models.py +0 -10
  3. tencentcloud/cdwdoris/v20211228/models.py +30 -0
  4. tencentcloud/cfg/v20210820/models.py +0 -4
  5. tencentcloud/clb/v20180317/models.py +38 -24
  6. tencentcloud/cynosdb/v20190107/models.py +15 -0
  7. tencentcloud/dbbrain/v20191016/models.py +0 -12
  8. tencentcloud/dbbrain/v20210527/models.py +0 -16
  9. tencentcloud/dcdb/v20180411/models.py +15 -0
  10. tencentcloud/dlc/v20210125/models.py +140 -34
  11. tencentcloud/domain/v20180808/models.py +0 -2
  12. tencentcloud/dts/v20180330/models.py +0 -16
  13. tencentcloud/dts/v20211206/models.py +0 -472
  14. tencentcloud/es/v20180416/errorcodes.py +6 -0
  15. tencentcloud/ess/v20201111/ess_client.py +27 -0
  16. tencentcloud/ess/v20201111/models.py +227 -2
  17. tencentcloud/essbasic/v20210526/essbasic_client.py +27 -0
  18. tencentcloud/essbasic/v20210526/models.py +308 -0
  19. tencentcloud/goosefs/v20220519/models.py +0 -22
  20. tencentcloud/lke/v20231130/lke_client.py +6 -1
  21. tencentcloud/lke/v20231130/models.py +8 -8
  22. tencentcloud/lowcode/v20210108/models.py +0 -106
  23. tencentcloud/mariadb/v20170312/errorcodes.py +3 -0
  24. tencentcloud/mariadb/v20170312/models.py +15 -0
  25. tencentcloud/mongodb/v20190725/errorcodes.py +3 -0
  26. tencentcloud/ocr/v20181119/models.py +2 -4
  27. tencentcloud/ocr/v20181119/ocr_client.py +1 -1
  28. tencentcloud/organization/v20210331/models.py +109 -0
  29. tencentcloud/organization/v20210331/organization_client.py +23 -0
  30. tencentcloud/redis/v20180412/models.py +21 -2
  31. tencentcloud/rum/v20210622/models.py +2 -0
  32. tencentcloud/scf/v20180416/models.py +75 -0
  33. tencentcloud/tdmq/v20200217/models.py +2 -296
  34. tencentcloud/tdmq/v20200217/tdmq_client.py +0 -25
  35. tencentcloud/tione/v20211111/errorcodes.py +3 -0
  36. tencentcloud/tione/v20211111/models.py +68 -0
  37. tencentcloud/tse/v20201207/models.py +164 -104
  38. tencentcloud/vclm/v20240523/models.py +58 -4
  39. tencentcloud/vdb/v20230616/models.py +9 -57
  40. tencentcloud/waf/v20180125/models.py +252 -0
  41. tencentcloud/waf/v20180125/waf_client.py +46 -0
  42. tencentcloud/wedata/v20210820/models.py +1578 -93
  43. tencentcloud/wedata/v20210820/wedata_client.py +46 -0
  44. {tencentcloud_sdk_python-3.0.1337.dist-info → tencentcloud_sdk_python-3.0.1338.dist-info}/METADATA +1 -1
  45. {tencentcloud_sdk_python-3.0.1337.dist-info → tencentcloud_sdk_python-3.0.1338.dist-info}/RECORD +48 -48
  46. {tencentcloud_sdk_python-3.0.1337.dist-info → tencentcloud_sdk_python-3.0.1338.dist-info}/LICENSE +0 -0
  47. {tencentcloud_sdk_python-3.0.1337.dist-info → tencentcloud_sdk_python-3.0.1338.dist-info}/WHEEL +0 -0
  48. {tencentcloud_sdk_python-3.0.1337.dist-info → tencentcloud_sdk_python-3.0.1338.dist-info}/top_level.txt +0 -0
@@ -1301,16 +1301,12 @@ class CmqDeadLetterPolicy(AbstractModel):
1301
1301
  def __init__(self):
1302
1302
  r"""
1303
1303
  :param _DeadLetterQueue: 死信队列。
1304
- 注意:此字段可能返回 null,表示取不到有效值。
1305
1304
  :type DeadLetterQueue: str
1306
1305
  :param _Policy: 死信队列策略。0:最大接收次数;1:最大未消费时间
1307
- 注意:此字段可能返回 null,表示取不到有效值。
1308
1306
  :type Policy: int
1309
1307
  :param _MaxTimeToLive: 最大未消费过期时间。Policy为1时必选。范围300-43200,单位秒,需要小于消息最大保留时间MsgRetentionSeconds。
1310
- 注意:此字段可能返回 null,表示取不到有效值。
1311
1308
  :type MaxTimeToLive: int
1312
1309
  :param _MaxReceiveCount: 最大接收次数。Policy为0时必选,范围在1到1000。
1313
- 注意:此字段可能返回 null,表示取不到有效值。
1314
1310
  :type MaxReceiveCount: int
1315
1311
  """
1316
1312
  self._DeadLetterQueue = None
@@ -1321,7 +1317,6 @@ class CmqDeadLetterPolicy(AbstractModel):
1321
1317
  @property
1322
1318
  def DeadLetterQueue(self):
1323
1319
  """死信队列。
1324
- 注意:此字段可能返回 null,表示取不到有效值。
1325
1320
  :rtype: str
1326
1321
  """
1327
1322
  return self._DeadLetterQueue
@@ -1333,7 +1328,6 @@ class CmqDeadLetterPolicy(AbstractModel):
1333
1328
  @property
1334
1329
  def Policy(self):
1335
1330
  """死信队列策略。0:最大接收次数;1:最大未消费时间
1336
- 注意:此字段可能返回 null,表示取不到有效值。
1337
1331
  :rtype: int
1338
1332
  """
1339
1333
  return self._Policy
@@ -1345,7 +1339,6 @@ class CmqDeadLetterPolicy(AbstractModel):
1345
1339
  @property
1346
1340
  def MaxTimeToLive(self):
1347
1341
  """最大未消费过期时间。Policy为1时必选。范围300-43200,单位秒,需要小于消息最大保留时间MsgRetentionSeconds。
1348
- 注意:此字段可能返回 null,表示取不到有效值。
1349
1342
  :rtype: int
1350
1343
  """
1351
1344
  return self._MaxTimeToLive
@@ -1357,7 +1350,6 @@ class CmqDeadLetterPolicy(AbstractModel):
1357
1350
  @property
1358
1351
  def MaxReceiveCount(self):
1359
1352
  """最大接收次数。Policy为0时必选,范围在1到1000。
1360
- 注意:此字段可能返回 null,表示取不到有效值。
1361
1353
  :rtype: int
1362
1354
  """
1363
1355
  return self._MaxReceiveCount
@@ -1393,7 +1385,6 @@ class CmqDeadLetterSource(AbstractModel):
1393
1385
  注意:此字段可能返回 null,表示取不到有效值。
1394
1386
  :type QueueId: str
1395
1387
  :param _QueueName: 消息队列名字。
1396
- 注意:此字段可能返回 null,表示取不到有效值。
1397
1388
  :type QueueName: str
1398
1389
  """
1399
1390
  self._QueueId = None
@@ -1414,7 +1405,6 @@ class CmqDeadLetterSource(AbstractModel):
1414
1405
  @property
1415
1406
  def QueueName(self):
1416
1407
  """消息队列名字。
1417
- 注意:此字段可能返回 null,表示取不到有效值。
1418
1408
  :rtype: str
1419
1409
  """
1420
1410
  return self._QueueName
@@ -1449,42 +1439,30 @@ class CmqQueue(AbstractModel):
1449
1439
  :param _QueueName: 消息队列名字。
1450
1440
  :type QueueName: str
1451
1441
  :param _Qps: 每秒钟生产消息条数的限制,消费消息的大小是该值的1.1倍。
1452
- 注意:此字段可能返回 null,表示取不到有效值。
1453
1442
  :type Qps: int
1454
1443
  :param _Bps: 带宽限制。
1455
- 注意:此字段可能返回 null,表示取不到有效值。
1456
1444
  :type Bps: int
1457
1445
  :param _MaxDelaySeconds: 飞行消息最大保留时间,需要小于消息保留周期。
1458
- 注意:此字段可能返回 null,表示取不到有效值。
1459
1446
  :type MaxDelaySeconds: int
1460
1447
  :param _MaxMsgHeapNum: 最大堆积消息数。取值范围在公测期间为 1,000,000 - 10,000,000,正式上线后范围可达到 1000,000-1000,000,000。默认取值在公测期间为 10,000,000,正式上线后为 100,000,000。
1461
1448
  :type MaxMsgHeapNum: int
1462
1449
  :param _PollingWaitSeconds: 消息接收长轮询等待时间。取值范围0 - 30秒,默认值0。
1463
- 注意:此字段可能返回 null,表示取不到有效值。
1464
1450
  :type PollingWaitSeconds: int
1465
1451
  :param _MsgRetentionSeconds: 消息保留周期。取值范围60-1296000秒(1min-15天),默认值345600秒(4 天)。
1466
- 注意:此字段可能返回 null,表示取不到有效值。
1467
1452
  :type MsgRetentionSeconds: int
1468
1453
  :param _VisibilityTimeout: 消息可见性超时。取值范围1 - 43200秒(即12小时内),默认值30。
1469
- 注意:此字段可能返回 null,表示取不到有效值。
1470
1454
  :type VisibilityTimeout: int
1471
1455
  :param _MaxMsgSize: 消息最大长度。取值范围1024 - 1048576 Byte(即1K - 1024K),默认值65536。
1472
- 注意:此字段可能返回 null,表示取不到有效值。
1473
1456
  :type MaxMsgSize: int
1474
1457
  :param _RewindSeconds: 回溯队列的消息回溯时间最大值,取值范围0 - 43200秒,0表示不开启消息回溯。
1475
- 注意:此字段可能返回 null,表示取不到有效值。
1476
1458
  :type RewindSeconds: int
1477
1459
  :param _CreateTime: 队列的创建时间。返回 Unix 时间戳,精确到毫秒。
1478
- 注意:此字段可能返回 null,表示取不到有效值。
1479
1460
  :type CreateTime: int
1480
1461
  :param _LastModifyTime: 最后一次修改队列属性的时间。返回 Unix 时间戳,精确到毫秒。
1481
- 注意:此字段可能返回 null,表示取不到有效值。
1482
1462
  :type LastModifyTime: int
1483
1463
  :param _ActiveMsgNum: 在队列中处于 Active 状态(不处于被消费状态)的消息总数,为近似值。
1484
- 注意:此字段可能返回 null,表示取不到有效值。
1485
1464
  :type ActiveMsgNum: int
1486
1465
  :param _InactiveMsgNum: 在队列中处于 Inactive 状态(正处于被消费状态)的消息总数,为近似值。
1487
- 注意:此字段可能返回 null,表示取不到有效值。
1488
1466
  :type InactiveMsgNum: int
1489
1467
  :param _DelayMsgNum: 延迟消息数。
1490
1468
  注意:此字段可能返回 null,表示取不到有效值。
@@ -1517,22 +1495,16 @@ class CmqQueue(AbstractModel):
1517
1495
  注意:此字段可能返回 null,表示取不到有效值。
1518
1496
  :type Trace: bool
1519
1497
  :param _TenantId: 租户id
1520
- 注意:此字段可能返回 null,表示取不到有效值。
1521
1498
  :type TenantId: str
1522
1499
  :param _NamespaceName: 命名空间名称
1523
- 注意:此字段可能返回 null,表示取不到有效值。
1524
1500
  :type NamespaceName: str
1525
1501
  :param _Status: 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
1526
- 注意:此字段可能返回 null,表示取不到有效值。
1527
1502
  :type Status: int
1528
1503
  :param _MaxUnackedMsgNum: 最大未确认消息数量
1529
- 注意:此字段可能返回 null,表示取不到有效值。
1530
1504
  :type MaxUnackedMsgNum: int
1531
1505
  :param _MaxMsgBacklogSize: 最大消息堆积大小(字节)
1532
- 注意:此字段可能返回 null,表示取不到有效值。
1533
1506
  :type MaxMsgBacklogSize: int
1534
1507
  :param _RetentionSizeInMB: 队列可回溯存储空间,取值范围1024MB - 10240MB,0表示不开启
1535
- 注意:此字段可能返回 null,表示取不到有效值。
1536
1508
  :type RetentionSizeInMB: int
1537
1509
  """
1538
1510
  self._QueueId = None
@@ -1592,7 +1564,6 @@ class CmqQueue(AbstractModel):
1592
1564
  @property
1593
1565
  def Qps(self):
1594
1566
  """每秒钟生产消息条数的限制,消费消息的大小是该值的1.1倍。
1595
- 注意:此字段可能返回 null,表示取不到有效值。
1596
1567
  :rtype: int
1597
1568
  """
1598
1569
  return self._Qps
@@ -1604,7 +1575,6 @@ class CmqQueue(AbstractModel):
1604
1575
  @property
1605
1576
  def Bps(self):
1606
1577
  """带宽限制。
1607
- 注意:此字段可能返回 null,表示取不到有效值。
1608
1578
  :rtype: int
1609
1579
  """
1610
1580
  return self._Bps
@@ -1616,7 +1586,6 @@ class CmqQueue(AbstractModel):
1616
1586
  @property
1617
1587
  def MaxDelaySeconds(self):
1618
1588
  """飞行消息最大保留时间,需要小于消息保留周期。
1619
- 注意:此字段可能返回 null,表示取不到有效值。
1620
1589
  :rtype: int
1621
1590
  """
1622
1591
  return self._MaxDelaySeconds
@@ -1639,7 +1608,6 @@ class CmqQueue(AbstractModel):
1639
1608
  @property
1640
1609
  def PollingWaitSeconds(self):
1641
1610
  """消息接收长轮询等待时间。取值范围0 - 30秒,默认值0。
1642
- 注意:此字段可能返回 null,表示取不到有效值。
1643
1611
  :rtype: int
1644
1612
  """
1645
1613
  return self._PollingWaitSeconds
@@ -1651,7 +1619,6 @@ class CmqQueue(AbstractModel):
1651
1619
  @property
1652
1620
  def MsgRetentionSeconds(self):
1653
1621
  """消息保留周期。取值范围60-1296000秒(1min-15天),默认值345600秒(4 天)。
1654
- 注意:此字段可能返回 null,表示取不到有效值。
1655
1622
  :rtype: int
1656
1623
  """
1657
1624
  return self._MsgRetentionSeconds
@@ -1663,7 +1630,6 @@ class CmqQueue(AbstractModel):
1663
1630
  @property
1664
1631
  def VisibilityTimeout(self):
1665
1632
  """消息可见性超时。取值范围1 - 43200秒(即12小时内),默认值30。
1666
- 注意:此字段可能返回 null,表示取不到有效值。
1667
1633
  :rtype: int
1668
1634
  """
1669
1635
  return self._VisibilityTimeout
@@ -1675,7 +1641,6 @@ class CmqQueue(AbstractModel):
1675
1641
  @property
1676
1642
  def MaxMsgSize(self):
1677
1643
  """消息最大长度。取值范围1024 - 1048576 Byte(即1K - 1024K),默认值65536。
1678
- 注意:此字段可能返回 null,表示取不到有效值。
1679
1644
  :rtype: int
1680
1645
  """
1681
1646
  return self._MaxMsgSize
@@ -1687,7 +1652,6 @@ class CmqQueue(AbstractModel):
1687
1652
  @property
1688
1653
  def RewindSeconds(self):
1689
1654
  """回溯队列的消息回溯时间最大值,取值范围0 - 43200秒,0表示不开启消息回溯。
1690
- 注意:此字段可能返回 null,表示取不到有效值。
1691
1655
  :rtype: int
1692
1656
  """
1693
1657
  return self._RewindSeconds
@@ -1699,7 +1663,6 @@ class CmqQueue(AbstractModel):
1699
1663
  @property
1700
1664
  def CreateTime(self):
1701
1665
  """队列的创建时间。返回 Unix 时间戳,精确到毫秒。
1702
- 注意:此字段可能返回 null,表示取不到有效值。
1703
1666
  :rtype: int
1704
1667
  """
1705
1668
  return self._CreateTime
@@ -1711,7 +1674,6 @@ class CmqQueue(AbstractModel):
1711
1674
  @property
1712
1675
  def LastModifyTime(self):
1713
1676
  """最后一次修改队列属性的时间。返回 Unix 时间戳,精确到毫秒。
1714
- 注意:此字段可能返回 null,表示取不到有效值。
1715
1677
  :rtype: int
1716
1678
  """
1717
1679
  return self._LastModifyTime
@@ -1723,7 +1685,6 @@ class CmqQueue(AbstractModel):
1723
1685
  @property
1724
1686
  def ActiveMsgNum(self):
1725
1687
  """在队列中处于 Active 状态(不处于被消费状态)的消息总数,为近似值。
1726
- 注意:此字段可能返回 null,表示取不到有效值。
1727
1688
  :rtype: int
1728
1689
  """
1729
1690
  return self._ActiveMsgNum
@@ -1735,7 +1696,6 @@ class CmqQueue(AbstractModel):
1735
1696
  @property
1736
1697
  def InactiveMsgNum(self):
1737
1698
  """在队列中处于 Inactive 状态(正处于被消费状态)的消息总数,为近似值。
1738
- 注意:此字段可能返回 null,表示取不到有效值。
1739
1699
  :rtype: int
1740
1700
  """
1741
1701
  return self._InactiveMsgNum
@@ -1867,7 +1827,6 @@ class CmqQueue(AbstractModel):
1867
1827
  @property
1868
1828
  def TenantId(self):
1869
1829
  """租户id
1870
- 注意:此字段可能返回 null,表示取不到有效值。
1871
1830
  :rtype: str
1872
1831
  """
1873
1832
  return self._TenantId
@@ -1879,7 +1838,6 @@ class CmqQueue(AbstractModel):
1879
1838
  @property
1880
1839
  def NamespaceName(self):
1881
1840
  """命名空间名称
1882
- 注意:此字段可能返回 null,表示取不到有效值。
1883
1841
  :rtype: str
1884
1842
  """
1885
1843
  return self._NamespaceName
@@ -1891,7 +1849,6 @@ class CmqQueue(AbstractModel):
1891
1849
  @property
1892
1850
  def Status(self):
1893
1851
  """集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
1894
- 注意:此字段可能返回 null,表示取不到有效值。
1895
1852
  :rtype: int
1896
1853
  """
1897
1854
  return self._Status
@@ -1903,7 +1860,6 @@ class CmqQueue(AbstractModel):
1903
1860
  @property
1904
1861
  def MaxUnackedMsgNum(self):
1905
1862
  """最大未确认消息数量
1906
- 注意:此字段可能返回 null,表示取不到有效值。
1907
1863
  :rtype: int
1908
1864
  """
1909
1865
  return self._MaxUnackedMsgNum
@@ -1915,7 +1871,6 @@ class CmqQueue(AbstractModel):
1915
1871
  @property
1916
1872
  def MaxMsgBacklogSize(self):
1917
1873
  """最大消息堆积大小(字节)
1918
- 注意:此字段可能返回 null,表示取不到有效值。
1919
1874
  :rtype: int
1920
1875
  """
1921
1876
  return self._MaxMsgBacklogSize
@@ -1927,7 +1882,6 @@ class CmqQueue(AbstractModel):
1927
1882
  @property
1928
1883
  def RetentionSizeInMB(self):
1929
1884
  """队列可回溯存储空间,取值范围1024MB - 10240MB,0表示不开启
1930
- 注意:此字段可能返回 null,表示取不到有效值。
1931
1885
  :rtype: int
1932
1886
  """
1933
1887
  return self._RetentionSizeInMB
@@ -2001,47 +1955,36 @@ class CmqSubscription(AbstractModel):
2001
1955
  def __init__(self):
2002
1956
  r"""
2003
1957
  :param _SubscriptionName: 订阅名字,在单个地域同一账号的同一主题下唯一。订阅名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
2004
- 注意:此字段可能返回 null,表示取不到有效值。
2005
1958
  :type SubscriptionName: str
2006
1959
  :param _SubscriptionId: 订阅 ID。订阅 ID 在拉取监控数据时会用到。
2007
- 注意:此字段可能返回 null,表示取不到有效值。
2008
1960
  :type SubscriptionId: str
2009
1961
  :param _TopicOwner: 订阅拥有者的 APPID。
2010
1962
  注意:此字段可能返回 null,表示取不到有效值。
2011
1963
  :type TopicOwner: int
2012
1964
  :param _MsgCount: 该订阅待投递的消息数。
2013
- 注意:此字段可能返回 null,表示取不到有效值。
2014
1965
  :type MsgCount: int
2015
1966
  :param _LastModifyTime: 最后一次修改订阅属性的时间。返回 Unix 时间戳,精确到毫秒。
2016
- 注意:此字段可能返回 null,表示取不到有效值。
2017
1967
  :type LastModifyTime: int
2018
1968
  :param _CreateTime: 订阅的创建时间。返回 Unix 时间戳,精确到毫秒。
2019
- 注意:此字段可能返回 null,表示取不到有效值。
2020
1969
  :type CreateTime: int
2021
1970
  :param _BindingKey: 表示订阅接收消息的过滤策略。
2022
1971
  注意:此字段可能返回 null,表示取不到有效值。
2023
1972
  :type BindingKey: list of str
2024
1973
  :param _Endpoint: 接收通知的 endpoint,根据协议 protocol 区分:对于 HTTP,endpoint 必须以http://开头,host 可以是域名或 IP;对于 queue,则填 queueName。
2025
- 注意:此字段可能返回 null,表示取不到有效值。
2026
1974
  :type Endpoint: str
2027
1975
  :param _FilterTags: 描述用户创建订阅时选择的过滤策略:
2028
1976
  filterType = 1表示用户使用 filterTag 标签过滤
2029
1977
  filterType = 2表示用户使用 bindingKey 过滤。
2030
- 注意:此字段可能返回 null,表示取不到有效值。
2031
1978
  :type FilterTags: list of str
2032
1979
  :param _Protocol: 订阅的协议,目前支持两种协议:HTTP、queue。使用 HTTP 协议,用户需自己搭建接受消息的 Web Server。使用 queue,消息会自动推送到 CMQ queue,用户可以并发地拉取消息。
2033
- 注意:此字段可能返回 null,表示取不到有效值。
2034
1980
  :type Protocol: str
2035
1981
  :param _NotifyStrategy: 向 endpoint 推送消息出现错误时,CMQ 推送服务器的重试策略。取值有:
2036
1982
  (1)BACKOFF_RETRY,退避重试。每隔一定时间重试一次,重试够一定次数后,就把该消息丢弃,继续推送下一条消息;
2037
1983
  (2)EXPONENTIAL_DECAY_RETRY,指数衰退重试。每次重试的间隔是指数递增的,例如开始 1s,后面是 2s,4s,8s...由于 Topic 消息的周期是一天,所以最多重试一天就把消息丢弃。默认值是 EXPONENTIAL_DECAY_RETRY。
2038
- 注意:此字段可能返回 null,表示取不到有效值。
2039
1984
  :type NotifyStrategy: str
2040
1985
  :param _NotifyContentFormat: 推送内容的格式。取值:(1)JSON;(2)SIMPLIFIED,即 raw 格式。如果 protocol 是 queue,则取值必须为 SIMPLIFIED。如果 protocol 是 HTTP,两个值均可以,默认值是 JSON。
2041
- 注意:此字段可能返回 null,表示取不到有效值。
2042
1986
  :type NotifyContentFormat: str
2043
1987
  :param _TopicName: 订阅所属的主题名称
2044
- 注意:此字段可能返回 null,表示取不到有效值。
2045
1988
  :type TopicName: str
2046
1989
  """
2047
1990
  self._SubscriptionName = None
@@ -2061,7 +2004,6 @@ filterType = 2表示用户使用 bindingKey 过滤。
2061
2004
  @property
2062
2005
  def SubscriptionName(self):
2063
2006
  """订阅名字,在单个地域同一账号的同一主题下唯一。订阅名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
2064
- 注意:此字段可能返回 null,表示取不到有效值。
2065
2007
  :rtype: str
2066
2008
  """
2067
2009
  return self._SubscriptionName
@@ -2073,7 +2015,6 @@ filterType = 2表示用户使用 bindingKey 过滤。
2073
2015
  @property
2074
2016
  def SubscriptionId(self):
2075
2017
  """订阅 ID。订阅 ID 在拉取监控数据时会用到。
2076
- 注意:此字段可能返回 null,表示取不到有效值。
2077
2018
  :rtype: str
2078
2019
  """
2079
2020
  return self._SubscriptionId
@@ -2097,7 +2038,6 @@ filterType = 2表示用户使用 bindingKey 过滤。
2097
2038
  @property
2098
2039
  def MsgCount(self):
2099
2040
  """该订阅待投递的消息数。
2100
- 注意:此字段可能返回 null,表示取不到有效值。
2101
2041
  :rtype: int
2102
2042
  """
2103
2043
  return self._MsgCount
@@ -2109,7 +2049,6 @@ filterType = 2表示用户使用 bindingKey 过滤。
2109
2049
  @property
2110
2050
  def LastModifyTime(self):
2111
2051
  """最后一次修改订阅属性的时间。返回 Unix 时间戳,精确到毫秒。
2112
- 注意:此字段可能返回 null,表示取不到有效值。
2113
2052
  :rtype: int
2114
2053
  """
2115
2054
  return self._LastModifyTime
@@ -2121,7 +2060,6 @@ filterType = 2表示用户使用 bindingKey 过滤。
2121
2060
  @property
2122
2061
  def CreateTime(self):
2123
2062
  """订阅的创建时间。返回 Unix 时间戳,精确到毫秒。
2124
- 注意:此字段可能返回 null,表示取不到有效值。
2125
2063
  :rtype: int
2126
2064
  """
2127
2065
  return self._CreateTime
@@ -2145,7 +2083,6 @@ filterType = 2表示用户使用 bindingKey 过滤。
2145
2083
  @property
2146
2084
  def Endpoint(self):
2147
2085
  """接收通知的 endpoint,根据协议 protocol 区分:对于 HTTP,endpoint 必须以http://开头,host 可以是域名或 IP;对于 queue,则填 queueName。
2148
- 注意:此字段可能返回 null,表示取不到有效值。
2149
2086
  :rtype: str
2150
2087
  """
2151
2088
  return self._Endpoint
@@ -2159,7 +2096,6 @@ filterType = 2表示用户使用 bindingKey 过滤。
2159
2096
  """描述用户创建订阅时选择的过滤策略:
2160
2097
  filterType = 1表示用户使用 filterTag 标签过滤
2161
2098
  filterType = 2表示用户使用 bindingKey 过滤。
2162
- 注意:此字段可能返回 null,表示取不到有效值。
2163
2099
  :rtype: list of str
2164
2100
  """
2165
2101
  return self._FilterTags
@@ -2171,7 +2107,6 @@ filterType = 2表示用户使用 bindingKey 过滤。
2171
2107
  @property
2172
2108
  def Protocol(self):
2173
2109
  """订阅的协议,目前支持两种协议:HTTP、queue。使用 HTTP 协议,用户需自己搭建接受消息的 Web Server。使用 queue,消息会自动推送到 CMQ queue,用户可以并发地拉取消息。
2174
- 注意:此字段可能返回 null,表示取不到有效值。
2175
2110
  :rtype: str
2176
2111
  """
2177
2112
  return self._Protocol
@@ -2185,7 +2120,6 @@ filterType = 2表示用户使用 bindingKey 过滤。
2185
2120
  """向 endpoint 推送消息出现错误时,CMQ 推送服务器的重试策略。取值有:
2186
2121
  (1)BACKOFF_RETRY,退避重试。每隔一定时间重试一次,重试够一定次数后,就把该消息丢弃,继续推送下一条消息;
2187
2122
  (2)EXPONENTIAL_DECAY_RETRY,指数衰退重试。每次重试的间隔是指数递增的,例如开始 1s,后面是 2s,4s,8s...由于 Topic 消息的周期是一天,所以最多重试一天就把消息丢弃。默认值是 EXPONENTIAL_DECAY_RETRY。
2188
- 注意:此字段可能返回 null,表示取不到有效值。
2189
2123
  :rtype: str
2190
2124
  """
2191
2125
  return self._NotifyStrategy
@@ -2197,7 +2131,6 @@ filterType = 2表示用户使用 bindingKey 过滤。
2197
2131
  @property
2198
2132
  def NotifyContentFormat(self):
2199
2133
  """推送内容的格式。取值:(1)JSON;(2)SIMPLIFIED,即 raw 格式。如果 protocol 是 queue,则取值必须为 SIMPLIFIED。如果 protocol 是 HTTP,两个值均可以,默认值是 JSON。
2200
- 注意:此字段可能返回 null,表示取不到有效值。
2201
2134
  :rtype: str
2202
2135
  """
2203
2136
  return self._NotifyContentFormat
@@ -2209,7 +2142,6 @@ filterType = 2表示用户使用 bindingKey 过滤。
2209
2142
  @property
2210
2143
  def TopicName(self):
2211
2144
  """订阅所属的主题名称
2212
- 注意:此字段可能返回 null,表示取不到有效值。
2213
2145
  :rtype: str
2214
2146
  """
2215
2147
  return self._TopicName
@@ -2251,33 +2183,24 @@ class CmqTopic(AbstractModel):
2251
2183
  def __init__(self):
2252
2184
  r"""
2253
2185
  :param _TopicId: 主题的 ID。
2254
- 注意:此字段可能返回 null,表示取不到有效值。
2255
2186
  :type TopicId: str
2256
2187
  :param _TopicName: 主题名称。
2257
- 注意:此字段可能返回 null,表示取不到有效值。
2258
2188
  :type TopicName: str
2259
2189
  :param _MsgRetentionSeconds: 消息在主题中最长存活时间,从发送到该主题开始经过此参数指定的时间后,不论消息是否被成功推送给用户都将被删除,单位为秒。固定为一天(86400秒),该属性不能修改。
2260
- 注意:此字段可能返回 null,表示取不到有效值。
2261
2190
  :type MsgRetentionSeconds: int
2262
2191
  :param _MaxMsgSize: 消息最大长度。取值范围1024 - 1048576Byte(即1 - 1024K),默认值为1048576。
2263
- 注意:此字段可能返回 null,表示取不到有效值。
2264
2192
  :type MaxMsgSize: int
2265
2193
  :param _Qps: 每秒钟发布消息的条数。
2266
- 注意:此字段可能返回 null,表示取不到有效值。
2267
2194
  :type Qps: int
2268
2195
  :param _FilterType: 描述用户创建订阅时选择的过滤策略:
2269
2196
  FilterType = 1表示用户使用 FilterTag 标签过滤;
2270
2197
  FilterType = 2表示用户使用 BindingKey 过滤。
2271
- 注意:此字段可能返回 null,表示取不到有效值。
2272
2198
  :type FilterType: int
2273
2199
  :param _CreateTime: 主题的创建时间。返回 Unix 时间戳,精确到毫秒。
2274
- 注意:此字段可能返回 null,表示取不到有效值。
2275
2200
  :type CreateTime: int
2276
2201
  :param _LastModifyTime: 最后一次修改主题属性的时间。返回 Unix 时间戳,精确到毫秒。
2277
- 注意:此字段可能返回 null,表示取不到有效值。
2278
2202
  :type LastModifyTime: int
2279
2203
  :param _MsgCount: 当前该主题中消息数目(消息堆积数)。
2280
- 注意:此字段可能返回 null,表示取不到有效值。
2281
2204
  :type MsgCount: int
2282
2205
  :param _CreateUin: 创建者 Uin,CAM 鉴权 resource 由该字段组合而成。
2283
2206
  注意:此字段可能返回 null,表示取不到有效值。
@@ -2289,19 +2212,14 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2289
2212
  注意:此字段可能返回 null,表示取不到有效值。
2290
2213
  :type Trace: bool
2291
2214
  :param _TenantId: 租户id
2292
- 注意:此字段可能返回 null,表示取不到有效值。
2293
2215
  :type TenantId: str
2294
2216
  :param _NamespaceName: 命名空间名称
2295
- 注意:此字段可能返回 null,表示取不到有效值。
2296
2217
  :type NamespaceName: str
2297
2218
  :param _Status: 集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
2298
- 注意:此字段可能返回 null,表示取不到有效值。
2299
2219
  :type Status: int
2300
2220
  :param _BrokerType: 0表示pulsar,1表示rocketmq
2301
- 注意:此字段可能返回 null,表示取不到有效值。
2302
2221
  :type BrokerType: int
2303
2222
  :param _SubscriptionCount: 订阅数量
2304
- 注意:此字段可能返回 null,表示取不到有效值。
2305
2223
  :type SubscriptionCount: int
2306
2224
  """
2307
2225
  self._TopicId = None
@@ -2325,7 +2243,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2325
2243
  @property
2326
2244
  def TopicId(self):
2327
2245
  """主题的 ID。
2328
- 注意:此字段可能返回 null,表示取不到有效值。
2329
2246
  :rtype: str
2330
2247
  """
2331
2248
  return self._TopicId
@@ -2337,7 +2254,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2337
2254
  @property
2338
2255
  def TopicName(self):
2339
2256
  """主题名称。
2340
- 注意:此字段可能返回 null,表示取不到有效值。
2341
2257
  :rtype: str
2342
2258
  """
2343
2259
  return self._TopicName
@@ -2349,7 +2265,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2349
2265
  @property
2350
2266
  def MsgRetentionSeconds(self):
2351
2267
  """消息在主题中最长存活时间,从发送到该主题开始经过此参数指定的时间后,不论消息是否被成功推送给用户都将被删除,单位为秒。固定为一天(86400秒),该属性不能修改。
2352
- 注意:此字段可能返回 null,表示取不到有效值。
2353
2268
  :rtype: int
2354
2269
  """
2355
2270
  return self._MsgRetentionSeconds
@@ -2361,7 +2276,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2361
2276
  @property
2362
2277
  def MaxMsgSize(self):
2363
2278
  """消息最大长度。取值范围1024 - 1048576Byte(即1 - 1024K),默认值为1048576。
2364
- 注意:此字段可能返回 null,表示取不到有效值。
2365
2279
  :rtype: int
2366
2280
  """
2367
2281
  return self._MaxMsgSize
@@ -2373,7 +2287,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2373
2287
  @property
2374
2288
  def Qps(self):
2375
2289
  """每秒钟发布消息的条数。
2376
- 注意:此字段可能返回 null,表示取不到有效值。
2377
2290
  :rtype: int
2378
2291
  """
2379
2292
  return self._Qps
@@ -2387,7 +2300,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2387
2300
  """描述用户创建订阅时选择的过滤策略:
2388
2301
  FilterType = 1表示用户使用 FilterTag 标签过滤;
2389
2302
  FilterType = 2表示用户使用 BindingKey 过滤。
2390
- 注意:此字段可能返回 null,表示取不到有效值。
2391
2303
  :rtype: int
2392
2304
  """
2393
2305
  return self._FilterType
@@ -2399,7 +2311,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2399
2311
  @property
2400
2312
  def CreateTime(self):
2401
2313
  """主题的创建时间。返回 Unix 时间戳,精确到毫秒。
2402
- 注意:此字段可能返回 null,表示取不到有效值。
2403
2314
  :rtype: int
2404
2315
  """
2405
2316
  return self._CreateTime
@@ -2411,7 +2322,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2411
2322
  @property
2412
2323
  def LastModifyTime(self):
2413
2324
  """最后一次修改主题属性的时间。返回 Unix 时间戳,精确到毫秒。
2414
- 注意:此字段可能返回 null,表示取不到有效值。
2415
2325
  :rtype: int
2416
2326
  """
2417
2327
  return self._LastModifyTime
@@ -2423,7 +2333,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2423
2333
  @property
2424
2334
  def MsgCount(self):
2425
2335
  """当前该主题中消息数目(消息堆积数)。
2426
- 注意:此字段可能返回 null,表示取不到有效值。
2427
2336
  :rtype: int
2428
2337
  """
2429
2338
  return self._MsgCount
@@ -2471,7 +2380,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2471
2380
  @property
2472
2381
  def TenantId(self):
2473
2382
  """租户id
2474
- 注意:此字段可能返回 null,表示取不到有效值。
2475
2383
  :rtype: str
2476
2384
  """
2477
2385
  return self._TenantId
@@ -2483,7 +2391,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2483
2391
  @property
2484
2392
  def NamespaceName(self):
2485
2393
  """命名空间名称
2486
- 注意:此字段可能返回 null,表示取不到有效值。
2487
2394
  :rtype: str
2488
2395
  """
2489
2396
  return self._NamespaceName
@@ -2495,7 +2402,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2495
2402
  @property
2496
2403
  def Status(self):
2497
2404
  """集群状态,0:创建中,1:正常,2:销毁中,3:已删除,4: 隔离中,5:创建失败,6: 删除失败
2498
- 注意:此字段可能返回 null,表示取不到有效值。
2499
2405
  :rtype: int
2500
2406
  """
2501
2407
  return self._Status
@@ -2507,7 +2413,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2507
2413
  @property
2508
2414
  def BrokerType(self):
2509
2415
  """0表示pulsar,1表示rocketmq
2510
- 注意:此字段可能返回 null,表示取不到有效值。
2511
2416
  :rtype: int
2512
2417
  """
2513
2418
  return self._BrokerType
@@ -2519,7 +2424,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
2519
2424
  @property
2520
2425
  def SubscriptionCount(self):
2521
2426
  """订阅数量
2522
- 注意:此字段可能返回 null,表示取不到有效值。
2523
2427
  :rtype: int
2524
2428
  """
2525
2429
  return self._SubscriptionCount
@@ -2570,10 +2474,8 @@ class CmqTransactionPolicy(AbstractModel):
2570
2474
  def __init__(self):
2571
2475
  r"""
2572
2476
  :param _FirstQueryInterval: 第一次回查时间。
2573
- 注意:此字段可能返回 null,表示取不到有效值。
2574
2477
  :type FirstQueryInterval: int
2575
2478
  :param _MaxQueryCount: 最大查询次数。
2576
- 注意:此字段可能返回 null,表示取不到有效值。
2577
2479
  :type MaxQueryCount: int
2578
2480
  """
2579
2481
  self._FirstQueryInterval = None
@@ -2582,7 +2484,6 @@ class CmqTransactionPolicy(AbstractModel):
2582
2484
  @property
2583
2485
  def FirstQueryInterval(self):
2584
2486
  """第一次回查时间。
2585
- 注意:此字段可能返回 null,表示取不到有效值。
2586
2487
  :rtype: int
2587
2488
  """
2588
2489
  return self._FirstQueryInterval
@@ -2594,7 +2495,6 @@ class CmqTransactionPolicy(AbstractModel):
2594
2495
  @property
2595
2496
  def MaxQueryCount(self):
2596
2497
  """最大查询次数。
2597
- 注意:此字段可能返回 null,表示取不到有效值。
2598
2498
  :rtype: int
2599
2499
  """
2600
2500
  return self._MaxQueryCount
@@ -10160,7 +10060,6 @@ class DescribeCmqQueuesResponse(AbstractModel):
10160
10060
  :param _TotalCount: 数量
10161
10061
  :type TotalCount: int
10162
10062
  :param _QueueList: 队列列表
10163
- 注意:此字段可能返回 null,表示取不到有效值。
10164
10063
  :type QueueList: list of CmqQueue
10165
10064
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10166
10065
  :type RequestId: str
@@ -10183,7 +10082,6 @@ class DescribeCmqQueuesResponse(AbstractModel):
10183
10082
  @property
10184
10083
  def QueueList(self):
10185
10084
  """队列列表
10186
- 注意:此字段可能返回 null,表示取不到有效值。
10187
10085
  :rtype: list of CmqQueue
10188
10086
  """
10189
10087
  return self._QueueList
@@ -10338,7 +10236,6 @@ class DescribeCmqSubscriptionDetailResponse(AbstractModel):
10338
10236
  :param _TotalCount: 总数
10339
10237
  :type TotalCount: int
10340
10238
  :param _SubscriptionSet: Subscription属性集合
10341
- 注意:此字段可能返回 null,表示取不到有效值。
10342
10239
  :type SubscriptionSet: list of CmqSubscription
10343
10240
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10344
10241
  :type RequestId: str
@@ -10361,7 +10258,6 @@ class DescribeCmqSubscriptionDetailResponse(AbstractModel):
10361
10258
  @property
10362
10259
  def SubscriptionSet(self):
10363
10260
  """Subscription属性集合
10364
- 注意:此字段可能返回 null,表示取不到有效值。
10365
10261
  :rtype: list of CmqSubscription
10366
10262
  """
10367
10263
  return self._SubscriptionSet
@@ -10598,7 +10494,6 @@ class DescribeCmqTopicsResponse(AbstractModel):
10598
10494
  def __init__(self):
10599
10495
  r"""
10600
10496
  :param _TopicList: 主题列表
10601
- 注意:此字段可能返回 null,表示取不到有效值。
10602
10497
  :type TopicList: list of CmqTopic
10603
10498
  :param _TotalCount: 全量主题数量
10604
10499
  :type TotalCount: int
@@ -10612,7 +10507,6 @@ class DescribeCmqTopicsResponse(AbstractModel):
10612
10507
  @property
10613
10508
  def TopicList(self):
10614
10509
  """主题列表
10615
- 注意:此字段可能返回 null,表示取不到有效值。
10616
10510
  :rtype: list of CmqTopic
10617
10511
  """
10618
10512
  return self._TopicList
@@ -14853,137 +14747,6 @@ class DescribeRabbitMQVipInstancesResponse(AbstractModel):
14853
14747
  self._RequestId = params.get("RequestId")
14854
14748
 
14855
14749
 
14856
- class DescribeRabbitMQVirtualHostListRequest(AbstractModel):
14857
- """DescribeRabbitMQVirtualHostList请求参数结构体
14858
-
14859
- """
14860
-
14861
- def __init__(self):
14862
- r"""
14863
- :param _InstanceId: 不适用,默认参数
14864
- :type InstanceId: str
14865
- :param _Offset: 偏移量
14866
- :type Offset: int
14867
- :param _Limit: 一页限制
14868
- :type Limit: int
14869
- """
14870
- self._InstanceId = None
14871
- self._Offset = None
14872
- self._Limit = None
14873
-
14874
- @property
14875
- def InstanceId(self):
14876
- """不适用,默认参数
14877
- :rtype: str
14878
- """
14879
- return self._InstanceId
14880
-
14881
- @InstanceId.setter
14882
- def InstanceId(self, InstanceId):
14883
- self._InstanceId = InstanceId
14884
-
14885
- @property
14886
- def Offset(self):
14887
- """偏移量
14888
- :rtype: int
14889
- """
14890
- return self._Offset
14891
-
14892
- @Offset.setter
14893
- def Offset(self, Offset):
14894
- self._Offset = Offset
14895
-
14896
- @property
14897
- def Limit(self):
14898
- """一页限制
14899
- :rtype: int
14900
- """
14901
- return self._Limit
14902
-
14903
- @Limit.setter
14904
- def Limit(self, Limit):
14905
- self._Limit = Limit
14906
-
14907
-
14908
- def _deserialize(self, params):
14909
- self._InstanceId = params.get("InstanceId")
14910
- self._Offset = params.get("Offset")
14911
- self._Limit = params.get("Limit")
14912
- memeber_set = set(params.keys())
14913
- for name, value in vars(self).items():
14914
- property_name = name[1:]
14915
- if property_name in memeber_set:
14916
- memeber_set.remove(property_name)
14917
- if len(memeber_set) > 0:
14918
- warnings.warn("%s fileds are useless." % ",".join(memeber_set))
14919
-
14920
-
14921
-
14922
- class DescribeRabbitMQVirtualHostListResponse(AbstractModel):
14923
- """DescribeRabbitMQVirtualHostList返回参数结构体
14924
-
14925
- """
14926
-
14927
- def __init__(self):
14928
- r"""
14929
- :param _TotalCount: 集群列表数量
14930
- :type TotalCount: int
14931
- :param _VirtualHostList: 集群列表
14932
- 注意:此字段可能返回 null,表示取不到有效值。
14933
- :type VirtualHostList: list of RabbitMQPrivateVirtualHost
14934
- :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14935
- :type RequestId: str
14936
- """
14937
- self._TotalCount = None
14938
- self._VirtualHostList = None
14939
- self._RequestId = None
14940
-
14941
- @property
14942
- def TotalCount(self):
14943
- """集群列表数量
14944
- :rtype: int
14945
- """
14946
- return self._TotalCount
14947
-
14948
- @TotalCount.setter
14949
- def TotalCount(self, TotalCount):
14950
- self._TotalCount = TotalCount
14951
-
14952
- @property
14953
- def VirtualHostList(self):
14954
- """集群列表
14955
- 注意:此字段可能返回 null,表示取不到有效值。
14956
- :rtype: list of RabbitMQPrivateVirtualHost
14957
- """
14958
- return self._VirtualHostList
14959
-
14960
- @VirtualHostList.setter
14961
- def VirtualHostList(self, VirtualHostList):
14962
- self._VirtualHostList = VirtualHostList
14963
-
14964
- @property
14965
- def RequestId(self):
14966
- """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14967
- :rtype: str
14968
- """
14969
- return self._RequestId
14970
-
14971
- @RequestId.setter
14972
- def RequestId(self, RequestId):
14973
- self._RequestId = RequestId
14974
-
14975
-
14976
- def _deserialize(self, params):
14977
- self._TotalCount = params.get("TotalCount")
14978
- if params.get("VirtualHostList") is not None:
14979
- self._VirtualHostList = []
14980
- for item in params.get("VirtualHostList"):
14981
- obj = RabbitMQPrivateVirtualHost()
14982
- obj._deserialize(item)
14983
- self._VirtualHostList.append(obj)
14984
- self._RequestId = params.get("RequestId")
14985
-
14986
-
14987
14750
  class DescribeRabbitMQVirtualHostRequest(AbstractModel):
14988
14751
  """DescribeRabbitMQVirtualHost请求参数结构体
14989
14752
 
@@ -29330,61 +29093,6 @@ class RabbitMQPrivateNode(AbstractModel):
29330
29093
 
29331
29094
 
29332
29095
 
29333
- class RabbitMQPrivateVirtualHost(AbstractModel):
29334
- """RabbitMQ专享版云服务器
29335
-
29336
- """
29337
-
29338
- def __init__(self):
29339
- r"""
29340
- :param _VirtualHostName: 虚拟主机的名字
29341
- 注意:此字段可能返回 null,表示取不到有效值。
29342
- :type VirtualHostName: str
29343
- :param _Description: 虚拟主机的描述
29344
- 注意:此字段可能返回 null,表示取不到有效值。
29345
- :type Description: str
29346
- """
29347
- self._VirtualHostName = None
29348
- self._Description = None
29349
-
29350
- @property
29351
- def VirtualHostName(self):
29352
- """虚拟主机的名字
29353
- 注意:此字段可能返回 null,表示取不到有效值。
29354
- :rtype: str
29355
- """
29356
- return self._VirtualHostName
29357
-
29358
- @VirtualHostName.setter
29359
- def VirtualHostName(self, VirtualHostName):
29360
- self._VirtualHostName = VirtualHostName
29361
-
29362
- @property
29363
- def Description(self):
29364
- """虚拟主机的描述
29365
- 注意:此字段可能返回 null,表示取不到有效值。
29366
- :rtype: str
29367
- """
29368
- return self._Description
29369
-
29370
- @Description.setter
29371
- def Description(self, Description):
29372
- self._Description = Description
29373
-
29374
-
29375
- def _deserialize(self, params):
29376
- self._VirtualHostName = params.get("VirtualHostName")
29377
- self._Description = params.get("Description")
29378
- memeber_set = set(params.keys())
29379
- for name, value in vars(self).items():
29380
- property_name = name[1:]
29381
- if property_name in memeber_set:
29382
- memeber_set.remove(property_name)
29383
- if len(memeber_set) > 0:
29384
- warnings.warn("%s fileds are useless." % ",".join(memeber_set))
29385
-
29386
-
29387
-
29388
29096
  class RabbitMQQueueListConsumerDetailInfo(AbstractModel):
29389
29097
  """RabbitMQ队列列表消费者信息
29390
29098
 
@@ -37749,8 +37457,7 @@ class VpcEndpointInfo(AbstractModel):
37749
37457
  :type SubnetId: str
37750
37458
  :param _VpcEndpoint: vpc接入点信息
37751
37459
  :type VpcEndpoint: str
37752
- :param _VpcDataStreamEndpointStatus: vpc接入点状态
37753
- OFF/ON/CREATING/DELETING
37460
+ :param _VpcDataStreamEndpointStatus: vpc接入点状态 OFF/ON/CREATING/DELETING
37754
37461
  注意:此字段可能返回 null,表示取不到有效值。
37755
37462
  :type VpcDataStreamEndpointStatus: str
37756
37463
  """
@@ -37794,8 +37501,7 @@ OFF/ON/CREATING/DELETING
37794
37501
 
37795
37502
  @property
37796
37503
  def VpcDataStreamEndpointStatus(self):
37797
- """vpc接入点状态
37798
- OFF/ON/CREATING/DELETING
37504
+ """vpc接入点状态 OFF/ON/CREATING/DELETING
37799
37505
  注意:此字段可能返回 null,表示取不到有效值。
37800
37506
  :rtype: str
37801
37507
  """