tencentcloud-sdk-python-intl-en 3.0.1086__py2.py3-none-any.whl → 3.0.1088__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tencentcloud/__init__.py +1 -1
- tencentcloud/batch/v20170312/errorcodes.py +3 -0
- tencentcloud/batch/v20170312/models.py +119 -45
- tencentcloud/car/v20220110/models.py +2 -2
- tencentcloud/cbs/v20170312/models.py +2 -2
- tencentcloud/cdc/__init__.py +0 -0
- tencentcloud/cdc/v20201214/__init__.py +0 -0
- tencentcloud/cdc/v20201214/cdc_client.py +486 -0
- tencentcloud/cdc/v20201214/errorcodes.py +78 -0
- tencentcloud/cdc/v20201214/models.py +6084 -0
- tencentcloud/ckafka/v20190819/models.py +2 -2
- tencentcloud/cloudaudit/v20190319/errorcodes.py +3 -0
- tencentcloud/cloudaudit/v20190319/models.py +2 -2
- tencentcloud/cls/v20201016/models.py +177 -0
- tencentcloud/cmq/v20190304/models.py +74 -74
- tencentcloud/cvm/v20170312/errorcodes.py +6 -0
- tencentcloud/eb/v20210416/models.py +47 -2
- tencentcloud/ecm/v20190719/models.py +2 -2
- tencentcloud/gme/v20180711/errorcodes.py +1 -1
- tencentcloud/gme/v20180711/models.py +2 -2
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +2 -2
- tencentcloud/lighthouse/v20200324/models.py +2 -2
- tencentcloud/live/v20180801/errorcodes.py +1 -1
- tencentcloud/live/v20180801/models.py +2 -2
- tencentcloud/organization/v20181225/errorcodes.py +16 -4
- tencentcloud/organization/v20181225/models.py +40 -40
- tencentcloud/organization/v20210331/errorcodes.py +96 -0
- tencentcloud/organization/v20210331/models.py +2110 -269
- tencentcloud/organization/v20210331/organization_client.py +417 -3
- tencentcloud/scf/v20180416/errorcodes.py +3 -0
- tencentcloud/scf/v20180416/models.py +2 -2
- tencentcloud/sms/v20210111/errorcodes.py +4 -1
- tencentcloud/tat/v20201028/errorcodes.py +12 -0
- tencentcloud/tat/v20201028/models.py +38 -38
- tencentcloud/tdmq/v20200217/models.py +2 -2
- tencentcloud/tem/v20210701/models.py +2 -2
- tencentcloud/teo/v20220901/errorcodes.py +19 -19
- tencentcloud/teo/v20220901/models.py +92 -20
- tencentcloud/vclm/__init__.py +0 -0
- tencentcloud/vclm/v20240523/__init__.py +0 -0
- tencentcloud/vclm/v20240523/errorcodes.py +126 -0
- tencentcloud/vclm/v20240523/models.py +538 -0
- tencentcloud/vclm/v20240523/vclm_client.py +72 -0
- tencentcloud/vod/v20180717/models.py +128 -11
- tencentcloud/waf/v20180125/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +1680 -720
- tencentcloud/waf/v20180125/waf_client.py +83 -45
- tencentcloud/wedata/v20210820/models.py +6 -6
- {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/RECORD +52 -42
- {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/top_level.txt +0 -0
|
@@ -61,14 +61,14 @@ class ClearQueueResponse(AbstractModel):
|
|
|
61
61
|
|
|
62
62
|
def __init__(self):
|
|
63
63
|
r"""
|
|
64
|
-
:param _RequestId: The unique request ID,
|
|
64
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
65
65
|
:type RequestId: str
|
|
66
66
|
"""
|
|
67
67
|
self._RequestId = None
|
|
68
68
|
|
|
69
69
|
@property
|
|
70
70
|
def RequestId(self):
|
|
71
|
-
"""The unique request ID,
|
|
71
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
72
72
|
:rtype: str
|
|
73
73
|
"""
|
|
74
74
|
return self._RequestId
|
|
@@ -140,14 +140,14 @@ class ClearSubscriptionFilterTagsResponse(AbstractModel):
|
|
|
140
140
|
|
|
141
141
|
def __init__(self):
|
|
142
142
|
r"""
|
|
143
|
-
:param _RequestId: The unique request ID,
|
|
143
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
144
144
|
:type RequestId: str
|
|
145
145
|
"""
|
|
146
146
|
self._RequestId = None
|
|
147
147
|
|
|
148
148
|
@property
|
|
149
149
|
def RequestId(self):
|
|
150
|
-
"""The unique request ID,
|
|
150
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
151
151
|
:rtype: str
|
|
152
152
|
"""
|
|
153
153
|
return self._RequestId
|
|
@@ -170,17 +170,17 @@ class CreateQueueRequest(AbstractModel):
|
|
|
170
170
|
r"""
|
|
171
171
|
:param _QueueName: Queue name, which is unique under the same account in an individual region. It is a string of up to 64 characters, which must begin with a letter and can contain letters, digits, and dashes (`-`).
|
|
172
172
|
:type QueueName: str
|
|
173
|
-
:param _MaxMsgHeapNum: Maximum number of heaped messages. The value range is 1,000,000
|
|
173
|
+
:param _MaxMsgHeapNum: Maximum number of heaped messages. The value range is 1,000,000-10,000,000 during the beta test and can be 1,000,000-1,000,000,000 after the product is officially released. The default value is 10,000,000 during the beta test and will be 100,000,000 after the product is officially released.
|
|
174
174
|
:type MaxMsgHeapNum: int
|
|
175
|
-
:param _PollingWaitSeconds: Long polling wait time for message reception. Value range: 0
|
|
175
|
+
:param _PollingWaitSeconds: Long polling wait time for message reception. Value range: 0-30 seconds. Default value: 0.
|
|
176
176
|
:type PollingWaitSeconds: int
|
|
177
|
-
:param _VisibilityTimeout: Message visibility timeout period. Value range: 1
|
|
177
|
+
:param _VisibilityTimeout: Message visibility timeout period. Value range: 1-43200 seconds (i.e., 12 hours). Default value: 30.
|
|
178
178
|
:type VisibilityTimeout: int
|
|
179
|
-
:param _MaxMsgSize: Maximum message length. Value range: 1024
|
|
179
|
+
:param _MaxMsgSize: Maximum message length. Value range: 1024-65536 bytes (i.e., 1-64 KB). Default value: 65536.
|
|
180
180
|
:type MaxMsgSize: int
|
|
181
|
-
:param _MsgRetentionSeconds: Message retention period. Value range: 60
|
|
181
|
+
:param _MsgRetentionSeconds: Message retention period. Value range: 60-1296000 seconds (i.e., 1 minute-15 days). Default value: 345600 (i.e., 4 days).
|
|
182
182
|
:type MsgRetentionSeconds: int
|
|
183
|
-
:param _RewindSeconds: Whether to enable the message rewinding feature for a queue. Value range: 0
|
|
183
|
+
:param _RewindSeconds: Whether to enable the message rewinding feature for a queue. Value range: 0-msgRetentionSeconds, where 0 means not to enable this feature, while `msgRetentionSeconds` indicates that the maximum rewindable period is the message retention period of the queue.
|
|
184
184
|
:type RewindSeconds: int
|
|
185
185
|
:param _Transaction: 1: transaction queue, 0: general queue
|
|
186
186
|
:type Transaction: int
|
|
@@ -192,9 +192,9 @@ class CreateQueueRequest(AbstractModel):
|
|
|
192
192
|
:type DeadLetterQueueName: str
|
|
193
193
|
:param _Policy: Dead letter policy. 0: message has been consumed multiple times but not deleted, 1: `Time-To-Live` has elapsed
|
|
194
194
|
:type Policy: int
|
|
195
|
-
:param _MaxReceiveCount: Maximum receipt times. Value range: 1
|
|
195
|
+
:param _MaxReceiveCount: Maximum receipt times. Value range: 1-1000
|
|
196
196
|
:type MaxReceiveCount: int
|
|
197
|
-
:param _MaxTimeToLive: Maximum period in seconds before an unconsumed message expires, which is required if `policy` is 1. Value range: 300
|
|
197
|
+
:param _MaxTimeToLive: Maximum period in seconds before an unconsumed message expires, which is required if `policy` is 1. Value range: 300-43200. This value should be smaller than `msgRetentionSeconds` (maximum message retention period)
|
|
198
198
|
:type MaxTimeToLive: int
|
|
199
199
|
:param _Trace: Whether to enable message trace. true: yes, false: no. If this field is not set, the feature will not be enabled
|
|
200
200
|
:type Trace: bool
|
|
@@ -228,7 +228,7 @@ class CreateQueueRequest(AbstractModel):
|
|
|
228
228
|
|
|
229
229
|
@property
|
|
230
230
|
def MaxMsgHeapNum(self):
|
|
231
|
-
"""Maximum number of heaped messages. The value range is 1,000,000
|
|
231
|
+
"""Maximum number of heaped messages. The value range is 1,000,000-10,000,000 during the beta test and can be 1,000,000-1,000,000,000 after the product is officially released. The default value is 10,000,000 during the beta test and will be 100,000,000 after the product is officially released.
|
|
232
232
|
:rtype: int
|
|
233
233
|
"""
|
|
234
234
|
return self._MaxMsgHeapNum
|
|
@@ -239,7 +239,7 @@ class CreateQueueRequest(AbstractModel):
|
|
|
239
239
|
|
|
240
240
|
@property
|
|
241
241
|
def PollingWaitSeconds(self):
|
|
242
|
-
"""Long polling wait time for message reception. Value range: 0
|
|
242
|
+
"""Long polling wait time for message reception. Value range: 0-30 seconds. Default value: 0.
|
|
243
243
|
:rtype: int
|
|
244
244
|
"""
|
|
245
245
|
return self._PollingWaitSeconds
|
|
@@ -250,7 +250,7 @@ class CreateQueueRequest(AbstractModel):
|
|
|
250
250
|
|
|
251
251
|
@property
|
|
252
252
|
def VisibilityTimeout(self):
|
|
253
|
-
"""Message visibility timeout period. Value range: 1
|
|
253
|
+
"""Message visibility timeout period. Value range: 1-43200 seconds (i.e., 12 hours). Default value: 30.
|
|
254
254
|
:rtype: int
|
|
255
255
|
"""
|
|
256
256
|
return self._VisibilityTimeout
|
|
@@ -261,7 +261,7 @@ class CreateQueueRequest(AbstractModel):
|
|
|
261
261
|
|
|
262
262
|
@property
|
|
263
263
|
def MaxMsgSize(self):
|
|
264
|
-
"""Maximum message length. Value range: 1024
|
|
264
|
+
"""Maximum message length. Value range: 1024-65536 bytes (i.e., 1-64 KB). Default value: 65536.
|
|
265
265
|
:rtype: int
|
|
266
266
|
"""
|
|
267
267
|
return self._MaxMsgSize
|
|
@@ -272,7 +272,7 @@ class CreateQueueRequest(AbstractModel):
|
|
|
272
272
|
|
|
273
273
|
@property
|
|
274
274
|
def MsgRetentionSeconds(self):
|
|
275
|
-
"""Message retention period. Value range: 60
|
|
275
|
+
"""Message retention period. Value range: 60-1296000 seconds (i.e., 1 minute-15 days). Default value: 345600 (i.e., 4 days).
|
|
276
276
|
:rtype: int
|
|
277
277
|
"""
|
|
278
278
|
return self._MsgRetentionSeconds
|
|
@@ -283,7 +283,7 @@ class CreateQueueRequest(AbstractModel):
|
|
|
283
283
|
|
|
284
284
|
@property
|
|
285
285
|
def RewindSeconds(self):
|
|
286
|
-
"""Whether to enable the message rewinding feature for a queue. Value range: 0
|
|
286
|
+
"""Whether to enable the message rewinding feature for a queue. Value range: 0-msgRetentionSeconds, where 0 means not to enable this feature, while `msgRetentionSeconds` indicates that the maximum rewindable period is the message retention period of the queue.
|
|
287
287
|
:rtype: int
|
|
288
288
|
"""
|
|
289
289
|
return self._RewindSeconds
|
|
@@ -349,7 +349,7 @@ class CreateQueueRequest(AbstractModel):
|
|
|
349
349
|
|
|
350
350
|
@property
|
|
351
351
|
def MaxReceiveCount(self):
|
|
352
|
-
"""Maximum receipt times. Value range: 1
|
|
352
|
+
"""Maximum receipt times. Value range: 1-1000
|
|
353
353
|
:rtype: int
|
|
354
354
|
"""
|
|
355
355
|
return self._MaxReceiveCount
|
|
@@ -360,7 +360,7 @@ class CreateQueueRequest(AbstractModel):
|
|
|
360
360
|
|
|
361
361
|
@property
|
|
362
362
|
def MaxTimeToLive(self):
|
|
363
|
-
"""Maximum period in seconds before an unconsumed message expires, which is required if `policy` is 1. Value range: 300
|
|
363
|
+
"""Maximum period in seconds before an unconsumed message expires, which is required if `policy` is 1. Value range: 300-43200. This value should be smaller than `msgRetentionSeconds` (maximum message retention period)
|
|
364
364
|
:rtype: int
|
|
365
365
|
"""
|
|
366
366
|
return self._MaxTimeToLive
|
|
@@ -414,9 +414,9 @@ class CreateQueueResponse(AbstractModel):
|
|
|
414
414
|
|
|
415
415
|
def __init__(self):
|
|
416
416
|
r"""
|
|
417
|
-
:param _QueueId:
|
|
417
|
+
:param _QueueId: "queueId" of a successfully created queue
|
|
418
418
|
:type QueueId: str
|
|
419
|
-
:param _RequestId: The unique request ID,
|
|
419
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
420
420
|
:type RequestId: str
|
|
421
421
|
"""
|
|
422
422
|
self._QueueId = None
|
|
@@ -424,7 +424,7 @@ class CreateQueueResponse(AbstractModel):
|
|
|
424
424
|
|
|
425
425
|
@property
|
|
426
426
|
def QueueId(self):
|
|
427
|
-
"""
|
|
427
|
+
""""queueId" of a successfully created queue
|
|
428
428
|
:rtype: str
|
|
429
429
|
"""
|
|
430
430
|
return self._QueueId
|
|
@@ -435,7 +435,7 @@ class CreateQueueResponse(AbstractModel):
|
|
|
435
435
|
|
|
436
436
|
@property
|
|
437
437
|
def RequestId(self):
|
|
438
|
-
"""The unique request ID,
|
|
438
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
439
439
|
:rtype: str
|
|
440
440
|
"""
|
|
441
441
|
return self._RequestId
|
|
@@ -600,7 +600,7 @@ class CreateSubscribeResponse(AbstractModel):
|
|
|
600
600
|
r"""
|
|
601
601
|
:param _SubscriptionId: SubscriptionId
|
|
602
602
|
:type SubscriptionId: str
|
|
603
|
-
:param _RequestId: The unique request ID,
|
|
603
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
604
604
|
:type RequestId: str
|
|
605
605
|
"""
|
|
606
606
|
self._SubscriptionId = None
|
|
@@ -619,7 +619,7 @@ class CreateSubscribeResponse(AbstractModel):
|
|
|
619
619
|
|
|
620
620
|
@property
|
|
621
621
|
def RequestId(self):
|
|
622
|
-
"""The unique request ID,
|
|
622
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
623
623
|
:rtype: str
|
|
624
624
|
"""
|
|
625
625
|
return self._RequestId
|
|
@@ -643,11 +643,11 @@ class CreateTopicRequest(AbstractModel):
|
|
|
643
643
|
r"""
|
|
644
644
|
:param _TopicName: Topic name, which is unique under the same account in an individual region. It is a string of up to 64 characters, which must begin with a letter and can contain letters, digits, and dashes (`-`).
|
|
645
645
|
:type TopicName: str
|
|
646
|
-
:param _MaxMsgSize: Maximum message length. Value range: 1024
|
|
646
|
+
:param _MaxMsgSize: Maximum message length. Value range: 1024-65536 bytes (i.e., 1-64 KB). Default value: 65536.
|
|
647
647
|
:type MaxMsgSize: int
|
|
648
648
|
:param _FilterType: Message match policy for a specified topic.
|
|
649
649
|
:type FilterType: int
|
|
650
|
-
:param _MsgRetentionSeconds: Message retention period. Value range: 60
|
|
650
|
+
:param _MsgRetentionSeconds: Message retention period. Value range: 60-86400 seconds (i.e., 1 minute-1 day). Default value: 86400.
|
|
651
651
|
:type MsgRetentionSeconds: int
|
|
652
652
|
:param _Trace: Whether to enable message trace. true: yes, false: no. If this field is left empty, the feature will not be enabled.
|
|
653
653
|
:type Trace: bool
|
|
@@ -671,7 +671,7 @@ class CreateTopicRequest(AbstractModel):
|
|
|
671
671
|
|
|
672
672
|
@property
|
|
673
673
|
def MaxMsgSize(self):
|
|
674
|
-
"""Maximum message length. Value range: 1024
|
|
674
|
+
"""Maximum message length. Value range: 1024-65536 bytes (i.e., 1-64 KB). Default value: 65536.
|
|
675
675
|
:rtype: int
|
|
676
676
|
"""
|
|
677
677
|
return self._MaxMsgSize
|
|
@@ -693,7 +693,7 @@ class CreateTopicRequest(AbstractModel):
|
|
|
693
693
|
|
|
694
694
|
@property
|
|
695
695
|
def MsgRetentionSeconds(self):
|
|
696
|
-
"""Message retention period. Value range: 60
|
|
696
|
+
"""Message retention period. Value range: 60-86400 seconds (i.e., 1 minute-1 day). Default value: 86400.
|
|
697
697
|
:rtype: int
|
|
698
698
|
"""
|
|
699
699
|
return self._MsgRetentionSeconds
|
|
@@ -739,7 +739,7 @@ class CreateTopicResponse(AbstractModel):
|
|
|
739
739
|
r"""
|
|
740
740
|
:param _TopicId: TopicName
|
|
741
741
|
:type TopicId: str
|
|
742
|
-
:param _RequestId: The unique request ID,
|
|
742
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
743
743
|
:type RequestId: str
|
|
744
744
|
"""
|
|
745
745
|
self._TopicId = None
|
|
@@ -758,7 +758,7 @@ class CreateTopicResponse(AbstractModel):
|
|
|
758
758
|
|
|
759
759
|
@property
|
|
760
760
|
def RequestId(self):
|
|
761
|
-
"""The unique request ID,
|
|
761
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
762
762
|
:rtype: str
|
|
763
763
|
"""
|
|
764
764
|
return self._RequestId
|
|
@@ -977,14 +977,14 @@ class DeleteQueueResponse(AbstractModel):
|
|
|
977
977
|
|
|
978
978
|
def __init__(self):
|
|
979
979
|
r"""
|
|
980
|
-
:param _RequestId: The unique request ID,
|
|
980
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
981
981
|
:type RequestId: str
|
|
982
982
|
"""
|
|
983
983
|
self._RequestId = None
|
|
984
984
|
|
|
985
985
|
@property
|
|
986
986
|
def RequestId(self):
|
|
987
|
-
"""The unique request ID,
|
|
987
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
988
988
|
:rtype: str
|
|
989
989
|
"""
|
|
990
990
|
return self._RequestId
|
|
@@ -1056,14 +1056,14 @@ class DeleteSubscribeResponse(AbstractModel):
|
|
|
1056
1056
|
|
|
1057
1057
|
def __init__(self):
|
|
1058
1058
|
r"""
|
|
1059
|
-
:param _RequestId: The unique request ID,
|
|
1059
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1060
1060
|
:type RequestId: str
|
|
1061
1061
|
"""
|
|
1062
1062
|
self._RequestId = None
|
|
1063
1063
|
|
|
1064
1064
|
@property
|
|
1065
1065
|
def RequestId(self):
|
|
1066
|
-
"""The unique request ID,
|
|
1066
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1067
1067
|
:rtype: str
|
|
1068
1068
|
"""
|
|
1069
1069
|
return self._RequestId
|
|
@@ -1120,14 +1120,14 @@ class DeleteTopicResponse(AbstractModel):
|
|
|
1120
1120
|
|
|
1121
1121
|
def __init__(self):
|
|
1122
1122
|
r"""
|
|
1123
|
-
:param _RequestId: The unique request ID,
|
|
1123
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1124
1124
|
:type RequestId: str
|
|
1125
1125
|
"""
|
|
1126
1126
|
self._RequestId = None
|
|
1127
1127
|
|
|
1128
1128
|
@property
|
|
1129
1129
|
def RequestId(self):
|
|
1130
|
-
"""The unique request ID,
|
|
1130
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1131
1131
|
:rtype: str
|
|
1132
1132
|
"""
|
|
1133
1133
|
return self._RequestId
|
|
@@ -1238,7 +1238,7 @@ class DescribeDeadLetterSourceQueuesResponse(AbstractModel):
|
|
|
1238
1238
|
:type TotalCount: int
|
|
1239
1239
|
:param _QueueSet: Source queues of dead letter queue
|
|
1240
1240
|
:type QueueSet: list of DeadLetterSource
|
|
1241
|
-
:param _RequestId: The unique request ID,
|
|
1241
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1242
1242
|
:type RequestId: str
|
|
1243
1243
|
"""
|
|
1244
1244
|
self._TotalCount = None
|
|
@@ -1269,7 +1269,7 @@ class DescribeDeadLetterSourceQueuesResponse(AbstractModel):
|
|
|
1269
1269
|
|
|
1270
1270
|
@property
|
|
1271
1271
|
def RequestId(self):
|
|
1272
|
-
"""The unique request ID,
|
|
1272
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1273
1273
|
:rtype: str
|
|
1274
1274
|
"""
|
|
1275
1275
|
return self._RequestId
|
|
@@ -1402,7 +1402,7 @@ class DescribeQueueDetailResponse(AbstractModel):
|
|
|
1402
1402
|
:type TotalCount: int
|
|
1403
1403
|
:param _QueueSet: Queue list
|
|
1404
1404
|
:type QueueSet: list of QueueSet
|
|
1405
|
-
:param _RequestId: The unique request ID,
|
|
1405
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1406
1406
|
:type RequestId: str
|
|
1407
1407
|
"""
|
|
1408
1408
|
self._TotalCount = None
|
|
@@ -1433,7 +1433,7 @@ class DescribeQueueDetailResponse(AbstractModel):
|
|
|
1433
1433
|
|
|
1434
1434
|
@property
|
|
1435
1435
|
def RequestId(self):
|
|
1436
|
-
"""The unique request ID,
|
|
1436
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1437
1437
|
:rtype: str
|
|
1438
1438
|
"""
|
|
1439
1439
|
return self._RequestId
|
|
@@ -1552,7 +1552,7 @@ class DescribeSubscriptionDetailResponse(AbstractModel):
|
|
|
1552
1552
|
:param _SubscriptionSet: Subscription attribute set
|
|
1553
1553
|
Note: this field may return null, indicating that no valid values can be obtained.
|
|
1554
1554
|
:type SubscriptionSet: list of Subscription
|
|
1555
|
-
:param _RequestId: The unique request ID,
|
|
1555
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1556
1556
|
:type RequestId: str
|
|
1557
1557
|
"""
|
|
1558
1558
|
self._TotalCount = None
|
|
@@ -1584,7 +1584,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1584
1584
|
|
|
1585
1585
|
@property
|
|
1586
1586
|
def RequestId(self):
|
|
1587
|
-
"""The unique request ID,
|
|
1587
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1588
1588
|
:rtype: str
|
|
1589
1589
|
"""
|
|
1590
1590
|
return self._RequestId
|
|
@@ -1717,7 +1717,7 @@ class DescribeTopicDetailResponse(AbstractModel):
|
|
|
1717
1717
|
:type TotalCount: int
|
|
1718
1718
|
:param _TopicSet: TopicSet
|
|
1719
1719
|
:type TopicSet: list of TopicSet
|
|
1720
|
-
:param _RequestId: The unique request ID,
|
|
1720
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1721
1721
|
:type RequestId: str
|
|
1722
1722
|
"""
|
|
1723
1723
|
self._TotalCount = None
|
|
@@ -1748,7 +1748,7 @@ class DescribeTopicDetailResponse(AbstractModel):
|
|
|
1748
1748
|
|
|
1749
1749
|
@property
|
|
1750
1750
|
def RequestId(self):
|
|
1751
|
-
"""The unique request ID,
|
|
1751
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1752
1752
|
:rtype: str
|
|
1753
1753
|
"""
|
|
1754
1754
|
return self._RequestId
|
|
@@ -1829,17 +1829,17 @@ class ModifyQueueAttributeRequest(AbstractModel):
|
|
|
1829
1829
|
r"""
|
|
1830
1830
|
:param _QueueName: Queue name, which is unique under the same account in an individual region. It is a string of up to 64 characters, which must begin with a letter and can contain letters, digits, and dashes (`-`).
|
|
1831
1831
|
:type QueueName: str
|
|
1832
|
-
:param _MaxMsgHeapNum: Maximum number of heaped messages. The value range is 1,000,000
|
|
1832
|
+
:param _MaxMsgHeapNum: Maximum number of heaped messages. The value range is 1,000,000-10,000,000 during the beta test and can be 1,000,000-1,000,000,000 after the product is officially released. The default value is 10,000,000 during the beta test and will be 100,000,000 after the product is officially released.
|
|
1833
1833
|
:type MaxMsgHeapNum: int
|
|
1834
|
-
:param _PollingWaitSeconds: Long polling wait time for message reception. Value range: 0
|
|
1834
|
+
:param _PollingWaitSeconds: Long polling wait time for message reception. Value range: 0-30 seconds. Default value: 0.
|
|
1835
1835
|
:type PollingWaitSeconds: int
|
|
1836
|
-
:param _VisibilityTimeout: Message visibility timeout period. Value range: 1
|
|
1836
|
+
:param _VisibilityTimeout: Message visibility timeout period. Value range: 1-43200 seconds (i.e., 12 hours). Default value: 30.
|
|
1837
1837
|
:type VisibilityTimeout: int
|
|
1838
|
-
:param _MaxMsgSize: Maximum message length. Value range: 1024
|
|
1838
|
+
:param _MaxMsgSize: Maximum message length. Value range: 1024-65536 bytes (i.e., 1-64 KB). Default value: 65536.
|
|
1839
1839
|
:type MaxMsgSize: int
|
|
1840
|
-
:param _MsgRetentionSeconds: Message retention period. Value range: 60
|
|
1840
|
+
:param _MsgRetentionSeconds: Message retention period. Value range: 60-1296000 seconds (i.e., 1 minute-15 days). Default value: 345600 (i.e., 4 days).
|
|
1841
1841
|
:type MsgRetentionSeconds: int
|
|
1842
|
-
:param _RewindSeconds: Maximum message rewindable period. Value range: 0
|
|
1842
|
+
:param _RewindSeconds: Maximum message rewindable period. Value range: 0-msgRetentionSeconds (maximum message retention period of a queue). 0 means not to enable message rewinding.
|
|
1843
1843
|
:type RewindSeconds: int
|
|
1844
1844
|
:param _FirstQueryInterval: First query time
|
|
1845
1845
|
:type FirstQueryInterval: int
|
|
@@ -1847,7 +1847,7 @@ class ModifyQueueAttributeRequest(AbstractModel):
|
|
|
1847
1847
|
:type MaxQueryCount: int
|
|
1848
1848
|
:param _DeadLetterQueueName: Dead letter queue name
|
|
1849
1849
|
:type DeadLetterQueueName: str
|
|
1850
|
-
:param _MaxTimeToLive: Maximum period in seconds before an unconsumed message expires, which is required if `MaxTimeToLivepolicy` is 1. Value range: 300
|
|
1850
|
+
:param _MaxTimeToLive: Maximum period in seconds before an unconsumed message expires, which is required if `MaxTimeToLivepolicy` is 1. Value range: 300-43200. This value should be smaller than `MsgRetentionSeconds` (maximum message retention period)
|
|
1851
1851
|
:type MaxTimeToLive: int
|
|
1852
1852
|
:param _MaxReceiveCount: Maximum number of receipts
|
|
1853
1853
|
:type MaxReceiveCount: int
|
|
@@ -1884,7 +1884,7 @@ class ModifyQueueAttributeRequest(AbstractModel):
|
|
|
1884
1884
|
|
|
1885
1885
|
@property
|
|
1886
1886
|
def MaxMsgHeapNum(self):
|
|
1887
|
-
"""Maximum number of heaped messages. The value range is 1,000,000
|
|
1887
|
+
"""Maximum number of heaped messages. The value range is 1,000,000-10,000,000 during the beta test and can be 1,000,000-1,000,000,000 after the product is officially released. The default value is 10,000,000 during the beta test and will be 100,000,000 after the product is officially released.
|
|
1888
1888
|
:rtype: int
|
|
1889
1889
|
"""
|
|
1890
1890
|
return self._MaxMsgHeapNum
|
|
@@ -1895,7 +1895,7 @@ class ModifyQueueAttributeRequest(AbstractModel):
|
|
|
1895
1895
|
|
|
1896
1896
|
@property
|
|
1897
1897
|
def PollingWaitSeconds(self):
|
|
1898
|
-
"""Long polling wait time for message reception. Value range: 0
|
|
1898
|
+
"""Long polling wait time for message reception. Value range: 0-30 seconds. Default value: 0.
|
|
1899
1899
|
:rtype: int
|
|
1900
1900
|
"""
|
|
1901
1901
|
return self._PollingWaitSeconds
|
|
@@ -1906,7 +1906,7 @@ class ModifyQueueAttributeRequest(AbstractModel):
|
|
|
1906
1906
|
|
|
1907
1907
|
@property
|
|
1908
1908
|
def VisibilityTimeout(self):
|
|
1909
|
-
"""Message visibility timeout period. Value range: 1
|
|
1909
|
+
"""Message visibility timeout period. Value range: 1-43200 seconds (i.e., 12 hours). Default value: 30.
|
|
1910
1910
|
:rtype: int
|
|
1911
1911
|
"""
|
|
1912
1912
|
return self._VisibilityTimeout
|
|
@@ -1917,7 +1917,7 @@ class ModifyQueueAttributeRequest(AbstractModel):
|
|
|
1917
1917
|
|
|
1918
1918
|
@property
|
|
1919
1919
|
def MaxMsgSize(self):
|
|
1920
|
-
"""Maximum message length. Value range: 1024
|
|
1920
|
+
"""Maximum message length. Value range: 1024-65536 bytes (i.e., 1-64 KB). Default value: 65536.
|
|
1921
1921
|
:rtype: int
|
|
1922
1922
|
"""
|
|
1923
1923
|
return self._MaxMsgSize
|
|
@@ -1928,7 +1928,7 @@ class ModifyQueueAttributeRequest(AbstractModel):
|
|
|
1928
1928
|
|
|
1929
1929
|
@property
|
|
1930
1930
|
def MsgRetentionSeconds(self):
|
|
1931
|
-
"""Message retention period. Value range: 60
|
|
1931
|
+
"""Message retention period. Value range: 60-1296000 seconds (i.e., 1 minute-15 days). Default value: 345600 (i.e., 4 days).
|
|
1932
1932
|
:rtype: int
|
|
1933
1933
|
"""
|
|
1934
1934
|
return self._MsgRetentionSeconds
|
|
@@ -1939,7 +1939,7 @@ class ModifyQueueAttributeRequest(AbstractModel):
|
|
|
1939
1939
|
|
|
1940
1940
|
@property
|
|
1941
1941
|
def RewindSeconds(self):
|
|
1942
|
-
"""Maximum message rewindable period. Value range: 0
|
|
1942
|
+
"""Maximum message rewindable period. Value range: 0-msgRetentionSeconds (maximum message retention period of a queue). 0 means not to enable message rewinding.
|
|
1943
1943
|
:rtype: int
|
|
1944
1944
|
"""
|
|
1945
1945
|
return self._RewindSeconds
|
|
@@ -1983,7 +1983,7 @@ class ModifyQueueAttributeRequest(AbstractModel):
|
|
|
1983
1983
|
|
|
1984
1984
|
@property
|
|
1985
1985
|
def MaxTimeToLive(self):
|
|
1986
|
-
"""Maximum period in seconds before an unconsumed message expires, which is required if `MaxTimeToLivepolicy` is 1. Value range: 300
|
|
1986
|
+
"""Maximum period in seconds before an unconsumed message expires, which is required if `MaxTimeToLivepolicy` is 1. Value range: 300-43200. This value should be smaller than `MsgRetentionSeconds` (maximum message retention period)
|
|
1987
1987
|
:rtype: int
|
|
1988
1988
|
"""
|
|
1989
1989
|
return self._MaxTimeToLive
|
|
@@ -2058,14 +2058,14 @@ class ModifyQueueAttributeResponse(AbstractModel):
|
|
|
2058
2058
|
|
|
2059
2059
|
def __init__(self):
|
|
2060
2060
|
r"""
|
|
2061
|
-
:param _RequestId: The unique request ID,
|
|
2061
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2062
2062
|
:type RequestId: str
|
|
2063
2063
|
"""
|
|
2064
2064
|
self._RequestId = None
|
|
2065
2065
|
|
|
2066
2066
|
@property
|
|
2067
2067
|
def RequestId(self):
|
|
2068
|
-
"""The unique request ID,
|
|
2068
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2069
2069
|
:rtype: str
|
|
2070
2070
|
"""
|
|
2071
2071
|
return self._RequestId
|
|
@@ -2201,14 +2201,14 @@ class ModifySubscriptionAttributeResponse(AbstractModel):
|
|
|
2201
2201
|
|
|
2202
2202
|
def __init__(self):
|
|
2203
2203
|
r"""
|
|
2204
|
-
:param _RequestId: The unique request ID,
|
|
2204
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2205
2205
|
:type RequestId: str
|
|
2206
2206
|
"""
|
|
2207
2207
|
self._RequestId = None
|
|
2208
2208
|
|
|
2209
2209
|
@property
|
|
2210
2210
|
def RequestId(self):
|
|
2211
|
-
"""The unique request ID,
|
|
2211
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2212
2212
|
:rtype: str
|
|
2213
2213
|
"""
|
|
2214
2214
|
return self._RequestId
|
|
@@ -2231,9 +2231,9 @@ class ModifyTopicAttributeRequest(AbstractModel):
|
|
|
2231
2231
|
r"""
|
|
2232
2232
|
:param _TopicName: Topic name, which is unique under the same account in an individual region. It is a string of up to 64 characters, which must begin with a letter and can contain letters, digits, and dashes (`-`).
|
|
2233
2233
|
:type TopicName: str
|
|
2234
|
-
:param _MaxMsgSize: Maximum message length. Value range: 1024
|
|
2234
|
+
:param _MaxMsgSize: Maximum message length. Value range: 1024-65536 bytes (i.e., 1-64 KB). Default value: 65536.
|
|
2235
2235
|
:type MaxMsgSize: int
|
|
2236
|
-
:param _MsgRetentionSeconds: Message retention period. Value range: 60
|
|
2236
|
+
:param _MsgRetentionSeconds: Message retention period. Value range: 60-86400 seconds (i.e., 1 minute-1 day). Default value: 86400.
|
|
2237
2237
|
:type MsgRetentionSeconds: int
|
|
2238
2238
|
:param _Trace: Whether to enable message trace. true: yes, false: no. If this field is left empty, the feature will not be enabled.
|
|
2239
2239
|
:type Trace: bool
|
|
@@ -2256,7 +2256,7 @@ class ModifyTopicAttributeRequest(AbstractModel):
|
|
|
2256
2256
|
|
|
2257
2257
|
@property
|
|
2258
2258
|
def MaxMsgSize(self):
|
|
2259
|
-
"""Maximum message length. Value range: 1024
|
|
2259
|
+
"""Maximum message length. Value range: 1024-65536 bytes (i.e., 1-64 KB). Default value: 65536.
|
|
2260
2260
|
:rtype: int
|
|
2261
2261
|
"""
|
|
2262
2262
|
return self._MaxMsgSize
|
|
@@ -2267,7 +2267,7 @@ class ModifyTopicAttributeRequest(AbstractModel):
|
|
|
2267
2267
|
|
|
2268
2268
|
@property
|
|
2269
2269
|
def MsgRetentionSeconds(self):
|
|
2270
|
-
"""Message retention period. Value range: 60
|
|
2270
|
+
"""Message retention period. Value range: 60-86400 seconds (i.e., 1 minute-1 day). Default value: 86400.
|
|
2271
2271
|
:rtype: int
|
|
2272
2272
|
"""
|
|
2273
2273
|
return self._MsgRetentionSeconds
|
|
@@ -2310,14 +2310,14 @@ class ModifyTopicAttributeResponse(AbstractModel):
|
|
|
2310
2310
|
|
|
2311
2311
|
def __init__(self):
|
|
2312
2312
|
r"""
|
|
2313
|
-
:param _RequestId: The unique request ID,
|
|
2313
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2314
2314
|
:type RequestId: str
|
|
2315
2315
|
"""
|
|
2316
2316
|
self._RequestId = None
|
|
2317
2317
|
|
|
2318
2318
|
@property
|
|
2319
2319
|
def RequestId(self):
|
|
2320
|
-
"""The unique request ID,
|
|
2320
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2321
2321
|
:rtype: str
|
|
2322
2322
|
"""
|
|
2323
2323
|
return self._RequestId
|
|
@@ -2845,14 +2845,14 @@ class RewindQueueResponse(AbstractModel):
|
|
|
2845
2845
|
|
|
2846
2846
|
def __init__(self):
|
|
2847
2847
|
r"""
|
|
2848
|
-
:param _RequestId: The unique request ID,
|
|
2848
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2849
2849
|
:type RequestId: str
|
|
2850
2850
|
"""
|
|
2851
2851
|
self._RequestId = None
|
|
2852
2852
|
|
|
2853
2853
|
@property
|
|
2854
2854
|
def RequestId(self):
|
|
2855
|
-
"""The unique request ID,
|
|
2855
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2856
2856
|
:rtype: str
|
|
2857
2857
|
"""
|
|
2858
2858
|
return self._RequestId
|
|
@@ -3474,14 +3474,14 @@ class UnbindDeadLetterResponse(AbstractModel):
|
|
|
3474
3474
|
|
|
3475
3475
|
def __init__(self):
|
|
3476
3476
|
r"""
|
|
3477
|
-
:param _RequestId: The unique request ID,
|
|
3477
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3478
3478
|
:type RequestId: str
|
|
3479
3479
|
"""
|
|
3480
3480
|
self._RequestId = None
|
|
3481
3481
|
|
|
3482
3482
|
@property
|
|
3483
3483
|
def RequestId(self):
|
|
3484
|
-
"""The unique request ID,
|
|
3484
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3485
3485
|
:rtype: str
|
|
3486
3486
|
"""
|
|
3487
3487
|
return self._RequestId
|
|
@@ -269,6 +269,9 @@ INVALIDPARAMETER_INVALIDDEPENDENCE = 'InvalidParameter.InvalidDependence'
|
|
|
269
269
|
# Invalid VPC IP address format.
|
|
270
270
|
INVALIDPARAMETER_INVALIDIPFORMAT = 'InvalidParameter.InvalidIpFormat'
|
|
271
271
|
|
|
272
|
+
#
|
|
273
|
+
INVALIDPARAMETER_INVALIDKMSKEYID = 'InvalidParameter.InvalidKmsKeyId'
|
|
274
|
+
|
|
272
275
|
# `ImageIds` and `Filters` cannot be specified at the same time.
|
|
273
276
|
INVALIDPARAMETER_INVALIDPARAMETERCOEXISTIMAGEIDSFILTERS = 'InvalidParameter.InvalidParameterCoexistImageIdsFilters'
|
|
274
277
|
|
|
@@ -1067,6 +1070,9 @@ UNSUPPORTEDOPERATION_STOPPEDMODESTOPCHARGING = 'UnsupportedOperation.StoppedMode
|
|
|
1067
1070
|
# Configuration adjustment of the same type is not supported for instances with no charges when shut down.
|
|
1068
1071
|
UNSUPPORTEDOPERATION_STOPPEDMODESTOPCHARGINGSAMEFAMILY = 'UnsupportedOperation.StoppedModeStopChargingSameFamily'
|
|
1069
1072
|
|
|
1073
|
+
#
|
|
1074
|
+
UNSUPPORTEDOPERATION_SYNCENCRYPTIMAGENOTSUPPORT = 'UnsupportedOperation.SyncEncryptImageNotSupport'
|
|
1075
|
+
|
|
1070
1076
|
#
|
|
1071
1077
|
UNSUPPORTEDOPERATION_SYSTEMDISKTYPE = 'UnsupportedOperation.SystemDiskType'
|
|
1072
1078
|
|