tencentcloud-sdk-python 3.0.1338__py2.py3-none-any.whl → 3.0.1340__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 (49) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/models.py +64 -112
  3. tencentcloud/bh/v20230418/bh_client.py +23 -0
  4. tencentcloud/bh/v20230418/models.py +342 -0
  5. tencentcloud/cdwch/v20200915/models.py +15 -0
  6. tencentcloud/cfg/v20210820/models.py +30 -6
  7. tencentcloud/cmq/v20190304/models.py +0 -90
  8. tencentcloud/cvm/v20170312/errorcodes.py +3 -0
  9. tencentcloud/cynosdb/v20190107/models.py +2 -358
  10. tencentcloud/dlc/v20210125/dlc_client.py +23 -0
  11. tencentcloud/dlc/v20210125/models.py +452 -0
  12. tencentcloud/domain/v20180808/models.py +0 -124
  13. tencentcloud/dsgc/v20190723/models.py +8 -0
  14. tencentcloud/dts/v20180330/models.py +0 -2
  15. tencentcloud/dts/v20211206/models.py +0 -328
  16. tencentcloud/emr/v20190103/emr_client.py +23 -0
  17. tencentcloud/emr/v20190103/models.py +431 -0
  18. tencentcloud/es/v20180416/models.py +17 -0
  19. tencentcloud/fmu/v20191213/errorcodes.py +0 -21
  20. tencentcloud/fmu/v20191213/fmu_client.py +0 -75
  21. tencentcloud/fmu/v20191213/models.py +0 -527
  22. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +0 -50
  23. tencentcloud/iotexplorer/v20190423/models.py +0 -491
  24. tencentcloud/iss/v20230517/models.py +15 -534
  25. tencentcloud/kms/v20190118/models.py +30 -0
  26. tencentcloud/lcic/v20220817/lcic_client.py +46 -0
  27. tencentcloud/lcic/v20220817/models.py +188 -0
  28. tencentcloud/mongodb/v20190725/models.py +109 -0
  29. tencentcloud/mongodb/v20190725/mongodb_client.py +23 -0
  30. tencentcloud/rum/v20210622/models.py +0 -2
  31. tencentcloud/svp/v20240125/errorcodes.py +3 -0
  32. tencentcloud/svp/v20240125/models.py +506 -0
  33. tencentcloud/svp/v20240125/svp_client.py +23 -0
  34. tencentcloud/tiw/v20190919/errorcodes.py +3 -24
  35. tencentcloud/tiw/v20190919/models.py +3657 -8172
  36. tencentcloud/tiw/v20190919/tiw_client.py +1 -580
  37. tencentcloud/trtc/v20190722/models.py +39 -8
  38. tencentcloud/tsf/v20180326/errorcodes.py +6 -0
  39. tencentcloud/tsf/v20180326/models.py +85 -14
  40. tencentcloud/tsf/v20180326/tsf_client.py +23 -0
  41. tencentcloud/vpc/v20170312/models.py +100 -0
  42. tencentcloud/vpc/v20170312/vpc_client.py +23 -0
  43. tencentcloud/wedata/v20210820/models.py +654 -0
  44. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  45. {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1340.dist-info}/METADATA +1 -1
  46. {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1340.dist-info}/RECORD +49 -49
  47. {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1340.dist-info}/LICENSE +0 -0
  48. {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1340.dist-info}/WHEEL +0 -0
  49. {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1340.dist-info}/top_level.txt +0 -0
@@ -26,19 +26,14 @@ class DeadLetterPolicy(AbstractModel):
26
26
  def __init__(self):
27
27
  r"""
28
28
  :param _DeadLetterQueue: 死信队列。
29
- 注意:此字段可能返回 null,表示取不到有效值。
30
29
  :type DeadLetterQueue: str
31
30
  :param _DeadLetterQueueName: 死信队列名字。
32
- 注意:此字段可能返回 null,表示取不到有效值。
33
31
  :type DeadLetterQueueName: str
34
32
  :param _MaxTimeToLive: 最大未消费过期时间。Policy为1时必选。范围300-43200,单位秒,需要小于消息最大保留时间MsgRetentionSeconds。
35
- 注意:此字段可能返回 null,表示取不到有效值。
36
33
  :type MaxTimeToLive: int
37
34
  :param _Policy: 死信队列策略。
38
- 注意:此字段可能返回 null,表示取不到有效值。
39
35
  :type Policy: int
40
36
  :param _MaxReceiveCount: 最大接收次数。
41
- 注意:此字段可能返回 null,表示取不到有效值。
42
37
  :type MaxReceiveCount: int
43
38
  """
44
39
  self._DeadLetterQueue = None
@@ -50,7 +45,6 @@ class DeadLetterPolicy(AbstractModel):
50
45
  @property
51
46
  def DeadLetterQueue(self):
52
47
  """死信队列。
53
- 注意:此字段可能返回 null,表示取不到有效值。
54
48
  :rtype: str
55
49
  """
56
50
  return self._DeadLetterQueue
@@ -62,7 +56,6 @@ class DeadLetterPolicy(AbstractModel):
62
56
  @property
63
57
  def DeadLetterQueueName(self):
64
58
  """死信队列名字。
65
- 注意:此字段可能返回 null,表示取不到有效值。
66
59
  :rtype: str
67
60
  """
68
61
  return self._DeadLetterQueueName
@@ -74,7 +67,6 @@ class DeadLetterPolicy(AbstractModel):
74
67
  @property
75
68
  def MaxTimeToLive(self):
76
69
  """最大未消费过期时间。Policy为1时必选。范围300-43200,单位秒,需要小于消息最大保留时间MsgRetentionSeconds。
77
- 注意:此字段可能返回 null,表示取不到有效值。
78
70
  :rtype: int
79
71
  """
80
72
  return self._MaxTimeToLive
@@ -86,7 +78,6 @@ class DeadLetterPolicy(AbstractModel):
86
78
  @property
87
79
  def Policy(self):
88
80
  """死信队列策略。
89
- 注意:此字段可能返回 null,表示取不到有效值。
90
81
  :rtype: int
91
82
  """
92
83
  return self._Policy
@@ -98,7 +89,6 @@ class DeadLetterPolicy(AbstractModel):
98
89
  @property
99
90
  def MaxReceiveCount(self):
100
91
  """最大接收次数。
101
- 注意:此字段可能返回 null,表示取不到有效值。
102
92
  :rtype: int
103
93
  """
104
94
  return self._MaxReceiveCount
@@ -132,10 +122,8 @@ class DeadLetterSource(AbstractModel):
132
122
  def __init__(self):
133
123
  r"""
134
124
  :param _QueueId: 消息队列ID。
135
- 注意:此字段可能返回 null,表示取不到有效值。
136
125
  :type QueueId: str
137
126
  :param _QueueName: 消息队列名字。
138
- 注意:此字段可能返回 null,表示取不到有效值。
139
127
  :type QueueName: str
140
128
  """
141
129
  self._QueueId = None
@@ -144,7 +132,6 @@ class DeadLetterSource(AbstractModel):
144
132
  @property
145
133
  def QueueId(self):
146
134
  """消息队列ID。
147
- 注意:此字段可能返回 null,表示取不到有效值。
148
135
  :rtype: str
149
136
  """
150
137
  return self._QueueId
@@ -156,7 +143,6 @@ class DeadLetterSource(AbstractModel):
156
143
  @property
157
144
  def QueueName(self):
158
145
  """消息队列名字。
159
- 注意:此字段可能返回 null,表示取不到有效值。
160
146
  :rtype: str
161
147
  """
162
148
  return self._QueueName
@@ -568,78 +554,57 @@ class QueueSet(AbstractModel):
568
554
  :param _QueueId: 消息队列ID。
569
555
  :type QueueId: str
570
556
  :param _RewindSeconds: 回溯队列的消息回溯时间最大值,取值范围0 - 43200秒,0表示不开启消息回溯。
571
- 注意:此字段可能返回 null,表示取不到有效值。
572
557
  :type RewindSeconds: int
573
558
  :param _CreateUin: 创建者Uin。
574
- 注意:此字段可能返回 null,表示取不到有效值。
575
559
  :type CreateUin: int
576
560
  :param _LastModifyTime: 最后一次修改队列属性的时间。返回 Unix 时间戳,精确到秒。
577
- 注意:此字段可能返回 null,表示取不到有效值。
578
561
  :type LastModifyTime: int
579
562
  :param _VisibilityTimeout: 消息可见性超时。取值范围1 - 43200秒(即12小时内),默认值30。
580
- 注意:此字段可能返回 null,表示取不到有效值。
581
563
  :type VisibilityTimeout: int
582
564
  :param _QueueName: 消息队列名字。
583
565
  :type QueueName: str
584
566
  :param _Trace: 消息轨迹。true表示开启,false表示不开启。
585
- 注意:此字段可能返回 null,表示取不到有效值。
586
567
  :type Trace: bool
587
568
  :param _Tags: 关联的标签。
588
- 注意:此字段可能返回 null,表示取不到有效值。
589
569
  :type Tags: list of Tag
590
570
  :param _RewindMsgNum: 已调用 DelMsg 接口删除,但还在回溯保留时间内的消息数量。
591
- 注意:此字段可能返回 null,表示取不到有效值。
592
571
  :type RewindMsgNum: int
593
572
  :param _MaxDelaySeconds: 飞行消息最大保留时间。
594
- 注意:此字段可能返回 null,表示取不到有效值。
595
573
  :type MaxDelaySeconds: int
596
574
  :param _TransactionPolicy: 事务消息策略。
597
575
  注意:此字段可能返回 null,表示取不到有效值。
598
576
  :type TransactionPolicy: :class:`tencentcloud.cmq.v20190304.models.TransactionPolicy`
599
577
  :param _MsgRetentionSeconds: 消息保留周期。取值范围60-1296000秒(1min-15天),默认值345600秒(4 天)。
600
- 注意:此字段可能返回 null,表示取不到有效值。
601
578
  :type MsgRetentionSeconds: int
602
579
  :param _DelayMsgNum: 延迟消息数。
603
- 注意:此字段可能返回 null,表示取不到有效值。
604
580
  :type DelayMsgNum: int
605
581
  :param _MaxMsgHeapNum: 最大堆积消息数。取值范围在公测期间为 1,000,000 - 10,000,000,正式上线后范围可达到 1000,000-1000,000,000。默认取值在公测期间为 10,000,000,正式上线后为 100,000,000。
606
- 注意:此字段可能返回 null,表示取不到有效值。
607
582
  :type MaxMsgHeapNum: int
608
583
  :param _PollingWaitSeconds: 消息接收长轮询等待时间。取值范围0 - 30秒,默认值0。
609
- 注意:此字段可能返回 null,表示取不到有效值。
610
584
  :type PollingWaitSeconds: int
611
585
  :param _Bps: 带宽限制。
612
- 注意:此字段可能返回 null,表示取不到有效值。
613
586
  :type Bps: int
614
587
  :param _InactiveMsgNum: 在队列中处于 Inactive 状态(正处于被消费状态)的消息总数,为近似值。
615
- 注意:此字段可能返回 null,表示取不到有效值。
616
588
  :type InactiveMsgNum: int
617
589
  :param _DeadLetterPolicy: 死信队列策略。
618
590
  注意:此字段可能返回 null,表示取不到有效值。
619
591
  :type DeadLetterPolicy: :class:`tencentcloud.cmq.v20190304.models.DeadLetterPolicy`
620
592
  :param _ActiveMsgNum: 在队列中处于 Active 状态(不处于被消费状态)的消息总数,为近似值。
621
- 注意:此字段可能返回 null,表示取不到有效值。
622
593
  :type ActiveMsgNum: int
623
594
  :param _MaxMsgSize: 消息最大长度。取值范围1024 - 1048576 Byte(即1K - 1024K),默认值65536。
624
- 注意:此字段可能返回 null,表示取不到有效值。
625
595
  :type MaxMsgSize: int
626
596
  :param _MinMsgTime: 消息最小未消费时间,单位为秒。
627
- 注意:此字段可能返回 null,表示取不到有效值。
628
597
  :type MinMsgTime: int
629
598
  :param _DeadLetterSource: 死信队列。
630
- 注意:此字段可能返回 null,表示取不到有效值。
631
599
  :type DeadLetterSource: list of DeadLetterSource
632
600
  :param _Transaction: 事务消息队列。true表示是事务消息,false表示不是事务消息。
633
601
  注意:此字段可能返回 null,表示取不到有效值。
634
602
  :type Transaction: bool
635
603
  :param _Qps: 每秒钟生产消息条数的限制,消费消息的大小是该值的1.1倍。
636
- 注意:此字段可能返回 null,表示取不到有效值。
637
604
  :type Qps: int
638
605
  :param _CreateTime: 队列的创建时间。返回 Unix 时间戳,精确到秒。
639
- 注意:此字段可能返回 null,表示取不到有效值。
640
606
  :type CreateTime: int
641
607
  :param _Migrate: 是否迁移到新版本。0 表示仅同步元数据,1 表示迁移中,2 表示已经迁移完毕,3 表示回切状态,曾经迁移过,4 未迁移。
642
- 注意:此字段可能返回 null,表示取不到有效值。
643
608
  :type Migrate: int
644
609
  """
645
610
  self._QueueId = None
@@ -683,7 +648,6 @@ class QueueSet(AbstractModel):
683
648
  @property
684
649
  def RewindSeconds(self):
685
650
  """回溯队列的消息回溯时间最大值,取值范围0 - 43200秒,0表示不开启消息回溯。
686
- 注意:此字段可能返回 null,表示取不到有效值。
687
651
  :rtype: int
688
652
  """
689
653
  return self._RewindSeconds
@@ -695,7 +659,6 @@ class QueueSet(AbstractModel):
695
659
  @property
696
660
  def CreateUin(self):
697
661
  """创建者Uin。
698
- 注意:此字段可能返回 null,表示取不到有效值。
699
662
  :rtype: int
700
663
  """
701
664
  return self._CreateUin
@@ -707,7 +670,6 @@ class QueueSet(AbstractModel):
707
670
  @property
708
671
  def LastModifyTime(self):
709
672
  """最后一次修改队列属性的时间。返回 Unix 时间戳,精确到秒。
710
- 注意:此字段可能返回 null,表示取不到有效值。
711
673
  :rtype: int
712
674
  """
713
675
  return self._LastModifyTime
@@ -719,7 +681,6 @@ class QueueSet(AbstractModel):
719
681
  @property
720
682
  def VisibilityTimeout(self):
721
683
  """消息可见性超时。取值范围1 - 43200秒(即12小时内),默认值30。
722
- 注意:此字段可能返回 null,表示取不到有效值。
723
684
  :rtype: int
724
685
  """
725
686
  return self._VisibilityTimeout
@@ -742,7 +703,6 @@ class QueueSet(AbstractModel):
742
703
  @property
743
704
  def Trace(self):
744
705
  """消息轨迹。true表示开启,false表示不开启。
745
- 注意:此字段可能返回 null,表示取不到有效值。
746
706
  :rtype: bool
747
707
  """
748
708
  return self._Trace
@@ -754,7 +714,6 @@ class QueueSet(AbstractModel):
754
714
  @property
755
715
  def Tags(self):
756
716
  """关联的标签。
757
- 注意:此字段可能返回 null,表示取不到有效值。
758
717
  :rtype: list of Tag
759
718
  """
760
719
  return self._Tags
@@ -766,7 +725,6 @@ class QueueSet(AbstractModel):
766
725
  @property
767
726
  def RewindMsgNum(self):
768
727
  """已调用 DelMsg 接口删除,但还在回溯保留时间内的消息数量。
769
- 注意:此字段可能返回 null,表示取不到有效值。
770
728
  :rtype: int
771
729
  """
772
730
  return self._RewindMsgNum
@@ -778,7 +736,6 @@ class QueueSet(AbstractModel):
778
736
  @property
779
737
  def MaxDelaySeconds(self):
780
738
  """飞行消息最大保留时间。
781
- 注意:此字段可能返回 null,表示取不到有效值。
782
739
  :rtype: int
783
740
  """
784
741
  return self._MaxDelaySeconds
@@ -802,7 +759,6 @@ class QueueSet(AbstractModel):
802
759
  @property
803
760
  def MsgRetentionSeconds(self):
804
761
  """消息保留周期。取值范围60-1296000秒(1min-15天),默认值345600秒(4 天)。
805
- 注意:此字段可能返回 null,表示取不到有效值。
806
762
  :rtype: int
807
763
  """
808
764
  return self._MsgRetentionSeconds
@@ -814,7 +770,6 @@ class QueueSet(AbstractModel):
814
770
  @property
815
771
  def DelayMsgNum(self):
816
772
  """延迟消息数。
817
- 注意:此字段可能返回 null,表示取不到有效值。
818
773
  :rtype: int
819
774
  """
820
775
  return self._DelayMsgNum
@@ -826,7 +781,6 @@ class QueueSet(AbstractModel):
826
781
  @property
827
782
  def MaxMsgHeapNum(self):
828
783
  """最大堆积消息数。取值范围在公测期间为 1,000,000 - 10,000,000,正式上线后范围可达到 1000,000-1000,000,000。默认取值在公测期间为 10,000,000,正式上线后为 100,000,000。
829
- 注意:此字段可能返回 null,表示取不到有效值。
830
784
  :rtype: int
831
785
  """
832
786
  return self._MaxMsgHeapNum
@@ -838,7 +792,6 @@ class QueueSet(AbstractModel):
838
792
  @property
839
793
  def PollingWaitSeconds(self):
840
794
  """消息接收长轮询等待时间。取值范围0 - 30秒,默认值0。
841
- 注意:此字段可能返回 null,表示取不到有效值。
842
795
  :rtype: int
843
796
  """
844
797
  return self._PollingWaitSeconds
@@ -850,7 +803,6 @@ class QueueSet(AbstractModel):
850
803
  @property
851
804
  def Bps(self):
852
805
  """带宽限制。
853
- 注意:此字段可能返回 null,表示取不到有效值。
854
806
  :rtype: int
855
807
  """
856
808
  return self._Bps
@@ -862,7 +814,6 @@ class QueueSet(AbstractModel):
862
814
  @property
863
815
  def InactiveMsgNum(self):
864
816
  """在队列中处于 Inactive 状态(正处于被消费状态)的消息总数,为近似值。
865
- 注意:此字段可能返回 null,表示取不到有效值。
866
817
  :rtype: int
867
818
  """
868
819
  return self._InactiveMsgNum
@@ -886,7 +837,6 @@ class QueueSet(AbstractModel):
886
837
  @property
887
838
  def ActiveMsgNum(self):
888
839
  """在队列中处于 Active 状态(不处于被消费状态)的消息总数,为近似值。
889
- 注意:此字段可能返回 null,表示取不到有效值。
890
840
  :rtype: int
891
841
  """
892
842
  return self._ActiveMsgNum
@@ -898,7 +848,6 @@ class QueueSet(AbstractModel):
898
848
  @property
899
849
  def MaxMsgSize(self):
900
850
  """消息最大长度。取值范围1024 - 1048576 Byte(即1K - 1024K),默认值65536。
901
- 注意:此字段可能返回 null,表示取不到有效值。
902
851
  :rtype: int
903
852
  """
904
853
  return self._MaxMsgSize
@@ -910,7 +859,6 @@ class QueueSet(AbstractModel):
910
859
  @property
911
860
  def MinMsgTime(self):
912
861
  """消息最小未消费时间,单位为秒。
913
- 注意:此字段可能返回 null,表示取不到有效值。
914
862
  :rtype: int
915
863
  """
916
864
  return self._MinMsgTime
@@ -922,7 +870,6 @@ class QueueSet(AbstractModel):
922
870
  @property
923
871
  def DeadLetterSource(self):
924
872
  """死信队列。
925
- 注意:此字段可能返回 null,表示取不到有效值。
926
873
  :rtype: list of DeadLetterSource
927
874
  """
928
875
  return self._DeadLetterSource
@@ -946,7 +893,6 @@ class QueueSet(AbstractModel):
946
893
  @property
947
894
  def Qps(self):
948
895
  """每秒钟生产消息条数的限制,消费消息的大小是该值的1.1倍。
949
- 注意:此字段可能返回 null,表示取不到有效值。
950
896
  :rtype: int
951
897
  """
952
898
  return self._Qps
@@ -958,7 +904,6 @@ class QueueSet(AbstractModel):
958
904
  @property
959
905
  def CreateTime(self):
960
906
  """队列的创建时间。返回 Unix 时间戳,精确到秒。
961
- 注意:此字段可能返回 null,表示取不到有效值。
962
907
  :rtype: int
963
908
  """
964
909
  return self._CreateTime
@@ -970,7 +915,6 @@ class QueueSet(AbstractModel):
970
915
  @property
971
916
  def Migrate(self):
972
917
  """是否迁移到新版本。0 表示仅同步元数据,1 表示迁移中,2 表示已经迁移完毕,3 表示回切状态,曾经迁移过,4 未迁移。
973
- 注意:此字段可能返回 null,表示取不到有效值。
974
918
  :rtype: int
975
919
  """
976
920
  return self._Migrate
@@ -1039,10 +983,8 @@ class Tag(AbstractModel):
1039
983
  def __init__(self):
1040
984
  r"""
1041
985
  :param _TagKey: 标签Key
1042
- 注意:此字段可能返回 null,表示取不到有效值。
1043
986
  :type TagKey: str
1044
987
  :param _TagValue: 标签值
1045
- 注意:此字段可能返回 null,表示取不到有效值。
1046
988
  :type TagValue: str
1047
989
  """
1048
990
  self._TagKey = None
@@ -1051,7 +993,6 @@ class Tag(AbstractModel):
1051
993
  @property
1052
994
  def TagKey(self):
1053
995
  """标签Key
1054
- 注意:此字段可能返回 null,表示取不到有效值。
1055
996
  :rtype: str
1056
997
  """
1057
998
  return self._TagKey
@@ -1063,7 +1004,6 @@ class Tag(AbstractModel):
1063
1004
  @property
1064
1005
  def TagValue(self):
1065
1006
  """标签值
1066
- 注意:此字段可能返回 null,表示取不到有效值。
1067
1007
  :rtype: str
1068
1008
  """
1069
1009
  return self._TagValue
@@ -1094,45 +1034,32 @@ class TopicSet(AbstractModel):
1094
1034
  def __init__(self):
1095
1035
  r"""
1096
1036
  :param _MsgCount: 当前该主题中消息数目(消息堆积数)。
1097
- 注意:此字段可能返回 null,表示取不到有效值。
1098
1037
  :type MsgCount: int
1099
1038
  :param _TopicId: 主题的 ID。
1100
- 注意:此字段可能返回 null,表示取不到有效值。
1101
1039
  :type TopicId: str
1102
1040
  :param _MaxMsgSize: 消息最大长度。取值范围1024 - 1048576Byte(即1 - 1024K),默认值为65536。
1103
- 注意:此字段可能返回 null,表示取不到有效值。
1104
1041
  :type MaxMsgSize: int
1105
1042
  :param _Trace: 消息轨迹。true表示开启,false表示不开启。
1106
- 注意:此字段可能返回 null,表示取不到有效值。
1107
1043
  :type Trace: bool
1108
1044
  :param _Tags: 关联的标签。
1109
- 注意:此字段可能返回 null,表示取不到有效值。
1110
1045
  :type Tags: list of Tag
1111
1046
  :param _CreateUin: 创建者 Uin,CAM 鉴权 resource 由该字段组合而成。
1112
- 注意:此字段可能返回 null,表示取不到有效值。
1113
1047
  :type CreateUin: int
1114
1048
  :param _FilterType: 描述用户创建订阅时选择的过滤策略:
1115
1049
  FilterType = 1表示用户使用 FilterTag 标签过滤;
1116
1050
  FilterType = 2表示用户使用 BindingKey 过滤。
1117
- 注意:此字段可能返回 null,表示取不到有效值。
1118
1051
  :type FilterType: int
1119
1052
  :param _TopicName: 主题名称。
1120
- 注意:此字段可能返回 null,表示取不到有效值。
1121
1053
  :type TopicName: str
1122
1054
  :param _LastModifyTime: 最后一次修改主题属性的时间。返回 Unix 时间戳,精确到秒。
1123
- 注意:此字段可能返回 null,表示取不到有效值。
1124
1055
  :type LastModifyTime: int
1125
1056
  :param _MsgRetentionSeconds: 消息在主题中最长存活时间,从发送到该主题开始经过此参数指定的时间后,不论消息是否被成功推送给用户都将被删除,单位为秒。固定为一天(86400秒),该属性不能修改。
1126
- 注意:此字段可能返回 null,表示取不到有效值。
1127
1057
  :type MsgRetentionSeconds: int
1128
1058
  :param _Qps: 每秒钟发布消息的条数。
1129
- 注意:此字段可能返回 null,表示取不到有效值。
1130
1059
  :type Qps: int
1131
1060
  :param _CreateTime: 主题的创建时间。返回 Unix 时间戳,精确到秒。
1132
- 注意:此字段可能返回 null,表示取不到有效值。
1133
1061
  :type CreateTime: int
1134
1062
  :param _Migrate: 是否迁移到新版本。0 表示未迁移,1 表示迁移中,2 表示已经迁移完毕,3 表示回切状态,曾经迁移过,4 未知状态。
1135
- 注意:此字段可能返回 null,表示取不到有效值。
1136
1063
  :type Migrate: int
1137
1064
  """
1138
1065
  self._MsgCount = None
@@ -1152,7 +1079,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1152
1079
  @property
1153
1080
  def MsgCount(self):
1154
1081
  """当前该主题中消息数目(消息堆积数)。
1155
- 注意:此字段可能返回 null,表示取不到有效值。
1156
1082
  :rtype: int
1157
1083
  """
1158
1084
  return self._MsgCount
@@ -1164,7 +1090,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1164
1090
  @property
1165
1091
  def TopicId(self):
1166
1092
  """主题的 ID。
1167
- 注意:此字段可能返回 null,表示取不到有效值。
1168
1093
  :rtype: str
1169
1094
  """
1170
1095
  return self._TopicId
@@ -1176,7 +1101,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1176
1101
  @property
1177
1102
  def MaxMsgSize(self):
1178
1103
  """消息最大长度。取值范围1024 - 1048576Byte(即1 - 1024K),默认值为65536。
1179
- 注意:此字段可能返回 null,表示取不到有效值。
1180
1104
  :rtype: int
1181
1105
  """
1182
1106
  return self._MaxMsgSize
@@ -1188,7 +1112,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1188
1112
  @property
1189
1113
  def Trace(self):
1190
1114
  """消息轨迹。true表示开启,false表示不开启。
1191
- 注意:此字段可能返回 null,表示取不到有效值。
1192
1115
  :rtype: bool
1193
1116
  """
1194
1117
  return self._Trace
@@ -1200,7 +1123,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1200
1123
  @property
1201
1124
  def Tags(self):
1202
1125
  """关联的标签。
1203
- 注意:此字段可能返回 null,表示取不到有效值。
1204
1126
  :rtype: list of Tag
1205
1127
  """
1206
1128
  return self._Tags
@@ -1212,7 +1134,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1212
1134
  @property
1213
1135
  def CreateUin(self):
1214
1136
  """创建者 Uin,CAM 鉴权 resource 由该字段组合而成。
1215
- 注意:此字段可能返回 null,表示取不到有效值。
1216
1137
  :rtype: int
1217
1138
  """
1218
1139
  return self._CreateUin
@@ -1226,7 +1147,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1226
1147
  """描述用户创建订阅时选择的过滤策略:
1227
1148
  FilterType = 1表示用户使用 FilterTag 标签过滤;
1228
1149
  FilterType = 2表示用户使用 BindingKey 过滤。
1229
- 注意:此字段可能返回 null,表示取不到有效值。
1230
1150
  :rtype: int
1231
1151
  """
1232
1152
  return self._FilterType
@@ -1238,7 +1158,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1238
1158
  @property
1239
1159
  def TopicName(self):
1240
1160
  """主题名称。
1241
- 注意:此字段可能返回 null,表示取不到有效值。
1242
1161
  :rtype: str
1243
1162
  """
1244
1163
  return self._TopicName
@@ -1250,7 +1169,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1250
1169
  @property
1251
1170
  def LastModifyTime(self):
1252
1171
  """最后一次修改主题属性的时间。返回 Unix 时间戳,精确到秒。
1253
- 注意:此字段可能返回 null,表示取不到有效值。
1254
1172
  :rtype: int
1255
1173
  """
1256
1174
  return self._LastModifyTime
@@ -1262,7 +1180,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1262
1180
  @property
1263
1181
  def MsgRetentionSeconds(self):
1264
1182
  """消息在主题中最长存活时间,从发送到该主题开始经过此参数指定的时间后,不论消息是否被成功推送给用户都将被删除,单位为秒。固定为一天(86400秒),该属性不能修改。
1265
- 注意:此字段可能返回 null,表示取不到有效值。
1266
1183
  :rtype: int
1267
1184
  """
1268
1185
  return self._MsgRetentionSeconds
@@ -1274,7 +1191,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1274
1191
  @property
1275
1192
  def Qps(self):
1276
1193
  """每秒钟发布消息的条数。
1277
- 注意:此字段可能返回 null,表示取不到有效值。
1278
1194
  :rtype: int
1279
1195
  """
1280
1196
  return self._Qps
@@ -1286,7 +1202,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1286
1202
  @property
1287
1203
  def CreateTime(self):
1288
1204
  """主题的创建时间。返回 Unix 时间戳,精确到秒。
1289
- 注意:此字段可能返回 null,表示取不到有效值。
1290
1205
  :rtype: int
1291
1206
  """
1292
1207
  return self._CreateTime
@@ -1298,7 +1213,6 @@ FilterType = 2表示用户使用 BindingKey 过滤。
1298
1213
  @property
1299
1214
  def Migrate(self):
1300
1215
  """是否迁移到新版本。0 表示未迁移,1 表示迁移中,2 表示已经迁移完毕,3 表示回切状态,曾经迁移过,4 未知状态。
1301
- 注意:此字段可能返回 null,表示取不到有效值。
1302
1216
  :rtype: int
1303
1217
  """
1304
1218
  return self._Migrate
@@ -1345,10 +1259,8 @@ class TransactionPolicy(AbstractModel):
1345
1259
  def __init__(self):
1346
1260
  r"""
1347
1261
  :param _MaxQueryCount: 最大查询次数。
1348
- 注意:此字段可能返回 null,表示取不到有效值。
1349
1262
  :type MaxQueryCount: int
1350
1263
  :param _FirstQueryInterval: 第一次回查时间。
1351
- 注意:此字段可能返回 null,表示取不到有效值。
1352
1264
  :type FirstQueryInterval: int
1353
1265
  """
1354
1266
  self._MaxQueryCount = None
@@ -1357,7 +1269,6 @@ class TransactionPolicy(AbstractModel):
1357
1269
  @property
1358
1270
  def MaxQueryCount(self):
1359
1271
  """最大查询次数。
1360
- 注意:此字段可能返回 null,表示取不到有效值。
1361
1272
  :rtype: int
1362
1273
  """
1363
1274
  return self._MaxQueryCount
@@ -1369,7 +1280,6 @@ class TransactionPolicy(AbstractModel):
1369
1280
  @property
1370
1281
  def FirstQueryInterval(self):
1371
1282
  """第一次回查时间。
1372
- 注意:此字段可能返回 null,表示取不到有效值。
1373
1283
  :rtype: int
1374
1284
  """
1375
1285
  return self._FirstQueryInterval
@@ -992,6 +992,9 @@ UNSUPPORTEDOPERATION_INSTANCESTATETERMINATING = 'UnsupportedOperation.InstanceSt
992
992
  # 实例类型不支持设置`GridDriverService` 状态
993
993
  UNSUPPORTEDOPERATION_INSTANCETYPENOTSUPPORTGRIDLICENCE = 'UnsupportedOperation.InstanceTypeNotSupportGridLicence'
994
994
 
995
+ # 实例类型不支持设置 HighDensityMode 状态
996
+ UNSUPPORTEDOPERATION_INSTANCETYPENOTSUPPORTHIGHDENSITYMODESETTING = 'UnsupportedOperation.InstanceTypeNotSupportHighDensityModeSetting'
997
+
995
998
  # 实例类型不支持设置`EnableJumboFrame` 状态
996
999
  UNSUPPORTEDOPERATION_INSTANCETYPENOTSUPPORTJUMBOFRAME = 'UnsupportedOperation.InstanceTypeNotSupportJumboFrame'
997
1000