tencentcloud-sdk-python-intl-en 3.0.1084__py2.py3-none-any.whl → 3.0.1085__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/gwlb/v20240906/models.py +50 -30
- tencentcloud/ims/v20201229/errorcodes.py +9 -0
- tencentcloud/ims/v20201229/models.py +4 -4
- tencentcloud/ocr/v20181119/models.py +17 -0
- tencentcloud/tke/v20220501/__init__.py +0 -0
- tencentcloud/tke/v20220501/errorcodes.py +69 -0
- tencentcloud/tke/v20220501/models.py +6338 -0
- tencentcloud/tke/v20220501/tke_client.py +279 -0
- tencentcloud/tms/v20201229/errorcodes.py +3 -0
- tencentcloud/tms/v20201229/models.py +2 -2
- tencentcloud/vpc/v20170312/errorcodes.py +67 -1
- tencentcloud/vpc/v20170312/models.py +1495 -606
- tencentcloud/vpc/v20170312/vpc_client.py +96 -4
- {tencentcloud_sdk_python_intl_en-3.0.1084.dist-info → tencentcloud_sdk_python_intl_en-3.0.1085.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1084.dist-info → tencentcloud_sdk_python_intl_en-3.0.1085.dist-info}/RECORD +18 -14
- {tencentcloud_sdk_python_intl_en-3.0.1084.dist-info → tencentcloud_sdk_python_intl_en-3.0.1085.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1084.dist-info → tencentcloud_sdk_python_intl_en-3.0.1085.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
# -*- coding: utf8 -*-
|
|
2
|
+
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
import json
|
|
17
|
+
|
|
18
|
+
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
|
|
19
|
+
from tencentcloud.common.abstract_client import AbstractClient
|
|
20
|
+
from tencentcloud.tke.v20220501 import models
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class TkeClient(AbstractClient):
|
|
24
|
+
_apiVersion = '2022-05-01'
|
|
25
|
+
_endpoint = 'tke.tencentcloudapi.com'
|
|
26
|
+
_service = 'tke'
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def CreateHealthCheckPolicy(self, request):
|
|
30
|
+
"""This API is used to create a health check policy.
|
|
31
|
+
|
|
32
|
+
:param request: Request instance for CreateHealthCheckPolicy.
|
|
33
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.CreateHealthCheckPolicyRequest`
|
|
34
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.CreateHealthCheckPolicyResponse`
|
|
35
|
+
|
|
36
|
+
"""
|
|
37
|
+
try:
|
|
38
|
+
params = request._serialize()
|
|
39
|
+
headers = request.headers
|
|
40
|
+
body = self.call("CreateHealthCheckPolicy", params, headers=headers)
|
|
41
|
+
response = json.loads(body)
|
|
42
|
+
model = models.CreateHealthCheckPolicyResponse()
|
|
43
|
+
model._deserialize(response["Response"])
|
|
44
|
+
return model
|
|
45
|
+
except Exception as e:
|
|
46
|
+
if isinstance(e, TencentCloudSDKException):
|
|
47
|
+
raise
|
|
48
|
+
else:
|
|
49
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def CreateNodePool(self, request):
|
|
53
|
+
"""This API is used to create a TKE node pool
|
|
54
|
+
|
|
55
|
+
:param request: Request instance for CreateNodePool.
|
|
56
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.CreateNodePoolRequest`
|
|
57
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.CreateNodePoolResponse`
|
|
58
|
+
|
|
59
|
+
"""
|
|
60
|
+
try:
|
|
61
|
+
params = request._serialize()
|
|
62
|
+
headers = request.headers
|
|
63
|
+
body = self.call("CreateNodePool", params, headers=headers)
|
|
64
|
+
response = json.loads(body)
|
|
65
|
+
model = models.CreateNodePoolResponse()
|
|
66
|
+
model._deserialize(response["Response"])
|
|
67
|
+
return model
|
|
68
|
+
except Exception as e:
|
|
69
|
+
if isinstance(e, TencentCloudSDKException):
|
|
70
|
+
raise
|
|
71
|
+
else:
|
|
72
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
def DeleteHealthCheckPolicy(self, request):
|
|
76
|
+
"""This API is used to delete a health check policy.
|
|
77
|
+
|
|
78
|
+
:param request: Request instance for DeleteHealthCheckPolicy.
|
|
79
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.DeleteHealthCheckPolicyRequest`
|
|
80
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.DeleteHealthCheckPolicyResponse`
|
|
81
|
+
|
|
82
|
+
"""
|
|
83
|
+
try:
|
|
84
|
+
params = request._serialize()
|
|
85
|
+
headers = request.headers
|
|
86
|
+
body = self.call("DeleteHealthCheckPolicy", params, headers=headers)
|
|
87
|
+
response = json.loads(body)
|
|
88
|
+
model = models.DeleteHealthCheckPolicyResponse()
|
|
89
|
+
model._deserialize(response["Response"])
|
|
90
|
+
return model
|
|
91
|
+
except Exception as e:
|
|
92
|
+
if isinstance(e, TencentCloudSDKException):
|
|
93
|
+
raise
|
|
94
|
+
else:
|
|
95
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
def DeleteNodePool(self, request):
|
|
99
|
+
"""This API is used to delete a TKE node pool.
|
|
100
|
+
|
|
101
|
+
:param request: Request instance for DeleteNodePool.
|
|
102
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.DeleteNodePoolRequest`
|
|
103
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.DeleteNodePoolResponse`
|
|
104
|
+
|
|
105
|
+
"""
|
|
106
|
+
try:
|
|
107
|
+
params = request._serialize()
|
|
108
|
+
headers = request.headers
|
|
109
|
+
body = self.call("DeleteNodePool", params, headers=headers)
|
|
110
|
+
response = json.loads(body)
|
|
111
|
+
model = models.DeleteNodePoolResponse()
|
|
112
|
+
model._deserialize(response["Response"])
|
|
113
|
+
return model
|
|
114
|
+
except Exception as e:
|
|
115
|
+
if isinstance(e, TencentCloudSDKException):
|
|
116
|
+
raise
|
|
117
|
+
else:
|
|
118
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
def DescribeClusterInstances(self, request):
|
|
122
|
+
"""This API is used to query the information of node instances in a cluster.
|
|
123
|
+
|
|
124
|
+
:param request: Request instance for DescribeClusterInstances.
|
|
125
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.DescribeClusterInstancesRequest`
|
|
126
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.DescribeClusterInstancesResponse`
|
|
127
|
+
|
|
128
|
+
"""
|
|
129
|
+
try:
|
|
130
|
+
params = request._serialize()
|
|
131
|
+
headers = request.headers
|
|
132
|
+
body = self.call("DescribeClusterInstances", params, headers=headers)
|
|
133
|
+
response = json.loads(body)
|
|
134
|
+
model = models.DescribeClusterInstancesResponse()
|
|
135
|
+
model._deserialize(response["Response"])
|
|
136
|
+
return model
|
|
137
|
+
except Exception as e:
|
|
138
|
+
if isinstance(e, TencentCloudSDKException):
|
|
139
|
+
raise
|
|
140
|
+
else:
|
|
141
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
def DescribeHealthCheckPolicies(self, request):
|
|
145
|
+
"""This API is used to query a health check policy.
|
|
146
|
+
|
|
147
|
+
:param request: Request instance for DescribeHealthCheckPolicies.
|
|
148
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.DescribeHealthCheckPoliciesRequest`
|
|
149
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.DescribeHealthCheckPoliciesResponse`
|
|
150
|
+
|
|
151
|
+
"""
|
|
152
|
+
try:
|
|
153
|
+
params = request._serialize()
|
|
154
|
+
headers = request.headers
|
|
155
|
+
body = self.call("DescribeHealthCheckPolicies", params, headers=headers)
|
|
156
|
+
response = json.loads(body)
|
|
157
|
+
model = models.DescribeHealthCheckPoliciesResponse()
|
|
158
|
+
model._deserialize(response["Response"])
|
|
159
|
+
return model
|
|
160
|
+
except Exception as e:
|
|
161
|
+
if isinstance(e, TencentCloudSDKException):
|
|
162
|
+
raise
|
|
163
|
+
else:
|
|
164
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
def DescribeHealthCheckPolicyBindings(self, request):
|
|
168
|
+
"""This API is used to query a health check policy binding relationship.
|
|
169
|
+
|
|
170
|
+
:param request: Request instance for DescribeHealthCheckPolicyBindings.
|
|
171
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.DescribeHealthCheckPolicyBindingsRequest`
|
|
172
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.DescribeHealthCheckPolicyBindingsResponse`
|
|
173
|
+
|
|
174
|
+
"""
|
|
175
|
+
try:
|
|
176
|
+
params = request._serialize()
|
|
177
|
+
headers = request.headers
|
|
178
|
+
body = self.call("DescribeHealthCheckPolicyBindings", params, headers=headers)
|
|
179
|
+
response = json.loads(body)
|
|
180
|
+
model = models.DescribeHealthCheckPolicyBindingsResponse()
|
|
181
|
+
model._deserialize(response["Response"])
|
|
182
|
+
return model
|
|
183
|
+
except Exception as e:
|
|
184
|
+
if isinstance(e, TencentCloudSDKException):
|
|
185
|
+
raise
|
|
186
|
+
else:
|
|
187
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
def DescribeHealthCheckTemplate(self, request):
|
|
191
|
+
"""This API is used to query a health check policy template.
|
|
192
|
+
|
|
193
|
+
:param request: Request instance for DescribeHealthCheckTemplate.
|
|
194
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.DescribeHealthCheckTemplateRequest`
|
|
195
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.DescribeHealthCheckTemplateResponse`
|
|
196
|
+
|
|
197
|
+
"""
|
|
198
|
+
try:
|
|
199
|
+
params = request._serialize()
|
|
200
|
+
headers = request.headers
|
|
201
|
+
body = self.call("DescribeHealthCheckTemplate", params, headers=headers)
|
|
202
|
+
response = json.loads(body)
|
|
203
|
+
model = models.DescribeHealthCheckTemplateResponse()
|
|
204
|
+
model._deserialize(response["Response"])
|
|
205
|
+
return model
|
|
206
|
+
except Exception as e:
|
|
207
|
+
if isinstance(e, TencentCloudSDKException):
|
|
208
|
+
raise
|
|
209
|
+
else:
|
|
210
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
def DescribeNodePools(self, request):
|
|
214
|
+
"""This API is used to query a TKE node pool list.
|
|
215
|
+
|
|
216
|
+
:param request: Request instance for DescribeNodePools.
|
|
217
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.DescribeNodePoolsRequest`
|
|
218
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.DescribeNodePoolsResponse`
|
|
219
|
+
|
|
220
|
+
"""
|
|
221
|
+
try:
|
|
222
|
+
params = request._serialize()
|
|
223
|
+
headers = request.headers
|
|
224
|
+
body = self.call("DescribeNodePools", params, headers=headers)
|
|
225
|
+
response = json.loads(body)
|
|
226
|
+
model = models.DescribeNodePoolsResponse()
|
|
227
|
+
model._deserialize(response["Response"])
|
|
228
|
+
return model
|
|
229
|
+
except Exception as e:
|
|
230
|
+
if isinstance(e, TencentCloudSDKException):
|
|
231
|
+
raise
|
|
232
|
+
else:
|
|
233
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
def ModifyHealthCheckPolicy(self, request):
|
|
237
|
+
"""This API is used to modify a health check policy.
|
|
238
|
+
|
|
239
|
+
:param request: Request instance for ModifyHealthCheckPolicy.
|
|
240
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.ModifyHealthCheckPolicyRequest`
|
|
241
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.ModifyHealthCheckPolicyResponse`
|
|
242
|
+
|
|
243
|
+
"""
|
|
244
|
+
try:
|
|
245
|
+
params = request._serialize()
|
|
246
|
+
headers = request.headers
|
|
247
|
+
body = self.call("ModifyHealthCheckPolicy", params, headers=headers)
|
|
248
|
+
response = json.loads(body)
|
|
249
|
+
model = models.ModifyHealthCheckPolicyResponse()
|
|
250
|
+
model._deserialize(response["Response"])
|
|
251
|
+
return model
|
|
252
|
+
except Exception as e:
|
|
253
|
+
if isinstance(e, TencentCloudSDKException):
|
|
254
|
+
raise
|
|
255
|
+
else:
|
|
256
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
def ModifyNodePool(self, request):
|
|
260
|
+
"""This API is used to update a TKE node pool.
|
|
261
|
+
|
|
262
|
+
:param request: Request instance for ModifyNodePool.
|
|
263
|
+
:type request: :class:`tencentcloud.tke.v20220501.models.ModifyNodePoolRequest`
|
|
264
|
+
:rtype: :class:`tencentcloud.tke.v20220501.models.ModifyNodePoolResponse`
|
|
265
|
+
|
|
266
|
+
"""
|
|
267
|
+
try:
|
|
268
|
+
params = request._serialize()
|
|
269
|
+
headers = request.headers
|
|
270
|
+
body = self.call("ModifyNodePool", params, headers=headers)
|
|
271
|
+
response = json.loads(body)
|
|
272
|
+
model = models.ModifyNodePoolResponse()
|
|
273
|
+
model._deserialize(response["Response"])
|
|
274
|
+
return model
|
|
275
|
+
except Exception as e:
|
|
276
|
+
if isinstance(e, TencentCloudSDKException):
|
|
277
|
+
raise
|
|
278
|
+
else:
|
|
279
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
@@ -38,5 +38,8 @@ INVALIDPARAMETERVALUE_ERRTEXTCONTENTLEN = 'InvalidParameterValue.ErrTextContentL
|
|
|
38
38
|
# The text in the request is in the incorrect format (base64-encoded text is required).
|
|
39
39
|
INVALIDPARAMETERVALUE_ERRTEXTCONTENTTYPE = 'InvalidParameterValue.ErrTextContentType'
|
|
40
40
|
|
|
41
|
+
#
|
|
42
|
+
REQUESTLIMITEXCEEDED = 'RequestLimitExceeded'
|
|
43
|
+
|
|
41
44
|
# Operation not authorized/No valid package/The account is overdue
|
|
42
45
|
UNAUTHORIZEDOPERATION_UNAUTHORIZED = 'UnauthorizedOperation.Unauthorized'
|
|
@@ -584,7 +584,7 @@ Note: This field may return `null`, indicating that no valid value can be found.
|
|
|
584
584
|
:param _ContextText: Returns the context text.
|
|
585
585
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
586
586
|
:type ContextText: str
|
|
587
|
-
:param _RequestId: The unique request ID,
|
|
587
|
+
: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.
|
|
588
588
|
:type RequestId: str
|
|
589
589
|
"""
|
|
590
590
|
self._BizType = None
|
|
@@ -730,7 +730,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
730
730
|
|
|
731
731
|
@property
|
|
732
732
|
def RequestId(self):
|
|
733
|
-
"""The unique request ID,
|
|
733
|
+
"""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.
|
|
734
734
|
:rtype: str
|
|
735
735
|
"""
|
|
736
736
|
return self._RequestId
|
|
@@ -296,6 +296,9 @@ INVALIDPARAMETERVALUE_NETWORKINTERFACEIDMALFORMED = 'InvalidParameterValue.Netwo
|
|
|
296
296
|
# The network interface ID was not found. The private IP address may not be configured on the network interface.
|
|
297
297
|
INVALIDPARAMETERVALUE_NETWORKINTERFACENOTFOUND = 'InvalidParameterValue.NetworkInterfaceNotFound'
|
|
298
298
|
|
|
299
|
+
#
|
|
300
|
+
INVALIDPARAMETERVALUE_NOTUTF8ENCODINGERROR = 'InvalidParameterValue.NotUtf8EncodingError'
|
|
301
|
+
|
|
299
302
|
# This operation is only available for primary ENIs.
|
|
300
303
|
INVALIDPARAMETERVALUE_ONLYSUPPORTEDFORMASTERNETWORKCARD = 'InvalidParameterValue.OnlySupportedForMasterNetworkCard'
|
|
301
304
|
|
|
@@ -326,6 +329,9 @@ INVALIDPARAMETERVALUE_RESOURCENOTFOUND = 'InvalidParameterValue.ResourceNotFound
|
|
|
326
329
|
# The resource does not support this operation.
|
|
327
330
|
INVALIDPARAMETERVALUE_RESOURCENOTSUPPORT = 'InvalidParameterValue.ResourceNotSupport'
|
|
328
331
|
|
|
332
|
+
#
|
|
333
|
+
INVALIDPARAMETERVALUE_ROUTEPOLICYPRIORITYCONFLICT = 'InvalidParameterValue.RoutePolicyPriorityConflict'
|
|
334
|
+
|
|
329
335
|
# Operation failed: The instance to shut down is using the current resource.
|
|
330
336
|
INVALIDPARAMETERVALUE_STOPCHARGINGINSTANCEINUSE = 'InvalidParameterValue.StopChargingInstanceInUse'
|
|
331
337
|
|
|
@@ -398,6 +404,15 @@ INVALIDPARAMETERVALUE_VPCCIDRCONFLICT = 'InvalidParameterValue.VpcCidrConflict'
|
|
|
398
404
|
# This feature is not available for this direct connect gateway.
|
|
399
405
|
INVALIDPARAMETERVALUE_VPGTYPENOTMATCH = 'InvalidParameterValue.VpgTypeNotMatch'
|
|
400
406
|
|
|
407
|
+
#
|
|
408
|
+
INVALIDPARAMETERVALUE_VPNCONNBGPTUNNELCIDRCONFLICT = 'InvalidParameterValue.VpnConnBgpTunnelCidrConflict'
|
|
409
|
+
|
|
410
|
+
#
|
|
411
|
+
INVALIDPARAMETERVALUE_VPNCONNBGPTUNNELCIDRMASK = 'InvalidParameterValue.VpnConnBgpTunnelCidrMask'
|
|
412
|
+
|
|
413
|
+
#
|
|
414
|
+
INVALIDPARAMETERVALUE_VPNCONNBGPTUNNELCIDRNOTSUPPORTED = 'InvalidParameterValue.VpnConnBgpTunnelCidrNotSupported'
|
|
415
|
+
|
|
401
416
|
# Destination IP address range conflicts with CIDR block of the current VPC tunnel.
|
|
402
417
|
INVALIDPARAMETERVALUE_VPNCONNCIDRCONFLICT = 'InvalidParameterValue.VpnConnCidrConflict'
|
|
403
418
|
|
|
@@ -476,6 +491,9 @@ LIMITEXCEEDED_DAILYALLOCATEADDRESSQUOTALIMITEXCEEDED = 'LimitExceeded.DailyAlloc
|
|
|
476
491
|
# Run out of the daily chances to change the IP.
|
|
477
492
|
LIMITEXCEEDED_DAILYCHANGEADDRESSQUOTA = 'LimitExceeded.DailyChangeAddressQuota'
|
|
478
493
|
|
|
494
|
+
#
|
|
495
|
+
LIMITEXCEEDED_DEFAULTVPCLIMITEXCEEDED = 'LimitExceeded.DefaultVpcLimitExceeded'
|
|
496
|
+
|
|
479
497
|
# Exceeded the upper limit of the EIPs bound to the instance.
|
|
480
498
|
LIMITEXCEEDED_INSTANCEADDRESSQUOTA = 'LimitExceeded.InstanceAddressQuota'
|
|
481
499
|
|
|
@@ -485,12 +503,18 @@ LIMITEXCEEDED_MODIFYADDRESSINTERNETCHARGETYPEQUOTA = 'LimitExceeded.ModifyAddres
|
|
|
485
503
|
# Ran out of the monthly quota of chances to retrieve IPs.
|
|
486
504
|
LIMITEXCEEDED_MONTHLYADDRESSRECOVERYQUOTA = 'LimitExceeded.MonthlyAddressRecoveryQuota'
|
|
487
505
|
|
|
506
|
+
#
|
|
507
|
+
LIMITEXCEEDED_NATGATEWAYDNATLIMITEXCEEDED = 'LimitExceeded.NatGatewayDnatLimitExceeded'
|
|
508
|
+
|
|
488
509
|
# Reached the upper limit of NAT gateways.
|
|
489
510
|
LIMITEXCEEDED_NATGATEWAYLIMITEXCEEDED = 'LimitExceeded.NatGatewayLimitExceeded'
|
|
490
511
|
|
|
491
512
|
# The number of NAT gateways created by the VPC has reached the upper limit.
|
|
492
513
|
LIMITEXCEEDED_NATGATEWAYPERVPCLIMITEXCEEDED = 'LimitExceeded.NatGatewayPerVpcLimitExceeded'
|
|
493
514
|
|
|
515
|
+
#
|
|
516
|
+
LIMITEXCEEDED_NETWORKINTERFACELIMITEXCEEDED = 'LimitExceeded.NetworkInterfaceLimitExceeded'
|
|
517
|
+
|
|
494
518
|
# Exceeded the character limit of a filter name.
|
|
495
519
|
LIMITEXCEEDED_NUMBEROFFILTERS = 'LimitExceeded.NumberOfFilters'
|
|
496
520
|
|
|
@@ -674,6 +698,9 @@ UNSUPPORTEDOPERATION_DELROUTEWITHSUBNET = 'UnsupportedOperation.DelRouteWithSubn
|
|
|
674
698
|
#
|
|
675
699
|
UNSUPPORTEDOPERATION_DELETEVPNCONNINVALIDSTATE = 'UnsupportedOperation.DeleteVpnConnInvalidState'
|
|
676
700
|
|
|
701
|
+
#
|
|
702
|
+
UNSUPPORTEDOPERATION_DELIVERYFAILED = 'UnsupportedOperation.DeliveryFailed'
|
|
703
|
+
|
|
677
704
|
# Direct connect gateway is updating the BGP Community attribute.
|
|
678
705
|
UNSUPPORTEDOPERATION_DIRECTCONNECTGATEWAYISUPDATINGCOMMUNITY = 'UnsupportedOperation.DirectConnectGatewayIsUpdatingCommunity'
|
|
679
706
|
|
|
@@ -698,10 +725,13 @@ UNSUPPORTEDOPERATION_ECMPWITHUSERROUTE = 'UnsupportedOperation.EcmpWithUserRoute
|
|
|
698
725
|
# Multi-cast is not available in the current region.
|
|
699
726
|
UNSUPPORTEDOPERATION_ENABLEMULTICAST = 'UnsupportedOperation.EnableMulticast'
|
|
700
727
|
|
|
728
|
+
#
|
|
729
|
+
UNSUPPORTEDOPERATION_ENDPOINTMISMATCHENDPOINTSERVICECDCID = 'UnsupportedOperation.EndPointMismatchEndPointServiceCdcId'
|
|
730
|
+
|
|
701
731
|
# The endpoint service itself cannot be set as the endpoint.
|
|
702
732
|
UNSUPPORTEDOPERATION_ENDPOINTSERVICE = 'UnsupportedOperation.EndPointService'
|
|
703
733
|
|
|
704
|
-
#
|
|
734
|
+
# There is already a flow log created for the specified ResourceId.
|
|
705
735
|
UNSUPPORTEDOPERATION_FLOWLOGINSTANCEEXISTED = 'UnsupportedOperation.FlowLogInstanceExisted'
|
|
706
736
|
|
|
707
737
|
# Unable to create a flow log: the current ENI is bound with a KO model.
|
|
@@ -710,6 +740,15 @@ UNSUPPORTEDOPERATION_FLOWLOGSNOTSUPPORTKOINSTANCEENI = 'UnsupportedOperation.Flo
|
|
|
710
740
|
# Unable to create a flow log: the current ENI is not bound to an instance.
|
|
711
741
|
UNSUPPORTEDOPERATION_FLOWLOGSNOTSUPPORTNULLINSTANCEENI = 'UnsupportedOperation.FlowLogsNotSupportNullInstanceEni'
|
|
712
742
|
|
|
743
|
+
#
|
|
744
|
+
UNSUPPORTEDOPERATION_IPV6CIDRNOTDEPLOYED = 'UnsupportedOperation.IPV6CidrNotDeployed'
|
|
745
|
+
|
|
746
|
+
#
|
|
747
|
+
UNSUPPORTEDOPERATION_IDEMPOTENTPARAMETERMISMATCH = 'UnsupportedOperation.IdempotentParameterMismatch'
|
|
748
|
+
|
|
749
|
+
#
|
|
750
|
+
UNSUPPORTEDOPERATION_IDEMPOTENTPROCESSING = 'UnsupportedOperation.IdempotentProcessing'
|
|
751
|
+
|
|
713
752
|
# This type of address does not support this operation.
|
|
714
753
|
UNSUPPORTEDOPERATION_INCORRECTADDRESSRESOURCETYPE = 'UnsupportedOperation.IncorrectAddressResourceType'
|
|
715
754
|
|
|
@@ -785,6 +824,9 @@ UNSUPPORTEDOPERATION_NATGATEWAYEIPNOTEXISTS = 'UnsupportedOperation.NatGatewayEi
|
|
|
785
824
|
# There are IPs associated with this NAT gateway.
|
|
786
825
|
UNSUPPORTEDOPERATION_NATGATEWAYHADEIPUNASSOCIATE = 'UnsupportedOperation.NatGatewayHadEipUnassociate'
|
|
787
826
|
|
|
827
|
+
#
|
|
828
|
+
UNSUPPORTEDOPERATION_NATGATEWAYRESTRICTED = 'UnsupportedOperation.NatGatewayRestricted'
|
|
829
|
+
|
|
788
830
|
# The private IP specified in the SNAT/DNAT forwarding rule has been bound with another rule.
|
|
789
831
|
UNSUPPORTEDOPERATION_NATGATEWAYRULEPIPEXISTS = 'UnsupportedOperation.NatGatewayRulePipExists'
|
|
790
832
|
|
|
@@ -869,6 +911,9 @@ UNSUPPORTEDOPERATION_RECORDEXISTS = 'UnsupportedOperation.RecordExists'
|
|
|
869
911
|
# The record does not exist.
|
|
870
912
|
UNSUPPORTEDOPERATION_RECORDNOTEXISTS = 'UnsupportedOperation.RecordNotExists'
|
|
871
913
|
|
|
914
|
+
#
|
|
915
|
+
UNSUPPORTEDOPERATION_REMOTEREGIONSGHASREFERENCEDSG = 'UnsupportedOperation.RemoteRegionSgHasReferencedSg'
|
|
916
|
+
|
|
872
917
|
# Operation prohibited: The resource is not available.
|
|
873
918
|
UNSUPPORTEDOPERATION_RESOURCEISINVALIDSTATE = 'UnsupportedOperation.ResourceIsInvalidState'
|
|
874
919
|
|
|
@@ -878,6 +923,9 @@ UNSUPPORTEDOPERATION_RESOURCEMISMATCH = 'UnsupportedOperation.ResourceMismatch'
|
|
|
878
923
|
# No roles available. Please confirm whether you get the authorization for the role.
|
|
879
924
|
UNSUPPORTEDOPERATION_ROLENOTFOUND = 'UnsupportedOperation.RoleNotFound'
|
|
880
925
|
|
|
926
|
+
#
|
|
927
|
+
UNSUPPORTEDOPERATION_ROUTETABLECANNOTDELETE = 'UnsupportedOperation.RouteTableCanNotDelete'
|
|
928
|
+
|
|
881
929
|
# The routing table is bound to a subnet.
|
|
882
930
|
UNSUPPORTEDOPERATION_ROUTETABLEHASSUBNETRULE = 'UnsupportedOperation.RouteTableHasSubnetRule'
|
|
883
931
|
|
|
@@ -968,9 +1016,27 @@ UNSUPPORTEDOPERATION_VPCMISMATCH = 'UnsupportedOperation.VpcMismatch'
|
|
|
968
1016
|
# Operation failed: The tunnel is not available now.
|
|
969
1017
|
UNSUPPORTEDOPERATION_VPNCONNINVALIDSTATE = 'UnsupportedOperation.VpnConnInvalidState'
|
|
970
1018
|
|
|
1019
|
+
#
|
|
1020
|
+
UNSUPPORTEDOPERATION_VPNCONNSPDOVERLAP = 'UnsupportedOperation.VpnConnSPDOverlap'
|
|
1021
|
+
|
|
971
1022
|
#
|
|
972
1023
|
UNSUPPORTEDOPERATION_VPNGWVPCIDMUSTHAVE = 'UnsupportedOperation.VpnGwVpcIdMustHave'
|
|
973
1024
|
|
|
1025
|
+
#
|
|
1026
|
+
UNSUPPORTEDOPERATION_VPNUNSUPPORTEDBGP = 'UnsupportedOperation.VpnUnsupportedBgp'
|
|
1027
|
+
|
|
1028
|
+
#
|
|
1029
|
+
UNSUPPORTEDOPERATION_VPNUNSUPPORTEDBGPASNEQUAL = 'UnsupportedOperation.VpnUnsupportedBgpAsnEqual'
|
|
1030
|
+
|
|
1031
|
+
#
|
|
1032
|
+
UNSUPPORTEDOPERATION_VPNUNSUPPORTEDMODIFYBANDWIDTH = 'UnsupportedOperation.VpnUnsupportedModifyBandwidth'
|
|
1033
|
+
|
|
1034
|
+
#
|
|
1035
|
+
UNSUPPORTEDOPERATION_VPNUNSUPPORTEDMODIFYBGPASN = 'UnsupportedOperation.VpnUnsupportedModifyBgpAsn'
|
|
1036
|
+
|
|
1037
|
+
#
|
|
1038
|
+
UNSUPPORTEDOPERATION_VPNUNSUPPORTEDNOTEXISTBGPASN = 'UnsupportedOperation.VpnUnsupportedNotExistBgpAsn'
|
|
1039
|
+
|
|
974
1040
|
# The specified resources are not in the same availability zone.
|
|
975
1041
|
UNSUPPORTEDOPERATION_ZONEMISMATCH = 'UnsupportedOperation.ZoneMismatch'
|
|
976
1042
|
|