tencentcloud-sdk-python-intl-en 3.0.1084__py2.py3-none-any.whl → 3.0.1086__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.

Files changed (36) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ciam/v20210420/errorcodes.py +2 -2
  3. tencentcloud/ciam/v20210420/models.py +2 -2
  4. tencentcloud/dnspod/v20210323/errorcodes.py +9 -0
  5. tencentcloud/dnspod/v20210323/models.py +2 -2
  6. tencentcloud/es/v20180416/models.py +2 -2
  7. tencentcloud/gwlb/v20240906/models.py +50 -30
  8. tencentcloud/ims/v20201229/errorcodes.py +9 -0
  9. tencentcloud/ims/v20201229/models.py +4 -4
  10. tencentcloud/ocr/v20181119/models.py +17 -0
  11. tencentcloud/omics/v20221128/models.py +4 -0
  12. tencentcloud/privatedns/v20201028/models.py +159 -35
  13. tencentcloud/privatedns/v20201028/privatedns_client.py +1 -1
  14. tencentcloud/sqlserver/v20180328/errorcodes.py +3 -0
  15. tencentcloud/sqlserver/v20180328/models.py +2370 -1230
  16. tencentcloud/sqlserver/v20180328/sqlserver_client.py +96 -4
  17. tencentcloud/tchd/v20230306/models.py +2 -2
  18. tencentcloud/tiw/v20190919/errorcodes.py +3 -0
  19. tencentcloud/tiw/v20190919/models.py +102 -102
  20. tencentcloud/tke/v20180525/errorcodes.py +2 -2
  21. tencentcloud/tke/v20220501/__init__.py +0 -0
  22. tencentcloud/tke/v20220501/errorcodes.py +69 -0
  23. tencentcloud/tke/v20220501/models.py +6338 -0
  24. tencentcloud/tke/v20220501/tke_client.py +279 -0
  25. tencentcloud/tms/v20201229/errorcodes.py +3 -0
  26. tencentcloud/tms/v20201229/models.py +2 -2
  27. tencentcloud/vm/v20201229/errorcodes.py +14 -14
  28. tencentcloud/vm/v20201229/models.py +17 -2
  29. tencentcloud/vm/v20210922/models.py +2 -2
  30. tencentcloud/vpc/v20170312/errorcodes.py +67 -1
  31. tencentcloud/vpc/v20170312/models.py +1495 -606
  32. tencentcloud/vpc/v20170312/vpc_client.py +96 -4
  33. {tencentcloud_sdk_python_intl_en-3.0.1084.dist-info → tencentcloud_sdk_python_intl_en-3.0.1086.dist-info}/METADATA +1 -1
  34. {tencentcloud_sdk_python_intl_en-3.0.1084.dist-info → tencentcloud_sdk_python_intl_en-3.0.1086.dist-info}/RECORD +36 -32
  35. {tencentcloud_sdk_python_intl_en-3.0.1084.dist-info → tencentcloud_sdk_python_intl_en-3.0.1086.dist-info}/WHEEL +0 -0
  36. {tencentcloud_sdk_python_intl_en-3.0.1084.dist-info → tencentcloud_sdk_python_intl_en-3.0.1086.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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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
@@ -17,40 +17,40 @@
17
17
  # A CAM signature/authentication error occurred.
18
18
  AUTHFAILURE = 'AuthFailure'
19
19
 
20
- # `DryRun` Operation. It means that the request would have succeeded, but the `DryRun` parameter was used.
20
+ # DryRun operation, which means the DryRun parameter is passed in yet the request will still be successful.
21
21
  DRYRUNOPERATION = 'DryRunOperation'
22
22
 
23
- # The operation failed.
23
+ # Operation failed.
24
24
  FAILEDOPERATION = 'FailedOperation'
25
25
 
26
- # An internal error occurred.
26
+ # Internal error.
27
27
  INTERNALERROR = 'InternalError'
28
28
 
29
- # The parameter is incorrect.
29
+ # Parameter error.
30
30
  INVALIDPARAMETER = 'InvalidParameter'
31
31
 
32
- # The parameter value is incorrect.
32
+ # Invalid parameter value.
33
33
  INVALIDPARAMETERVALUE = 'InvalidParameterValue'
34
34
 
35
- # The quota limit is exceeded.
35
+ # The quota limit has been reached.
36
36
  LIMITEXCEEDED = 'LimitExceeded'
37
37
 
38
- # The parameter is missing.
38
+ # Missing parameter.
39
39
  MISSINGPARAMETER = 'MissingParameter'
40
40
 
41
- # The operation was denied.
41
+ # Operation denied.
42
42
  OPERATIONDENIED = 'OperationDenied'
43
43
 
44
44
  # The number of requests exceeds the frequency limit.
45
45
  REQUESTLIMITEXCEEDED = 'RequestLimitExceeded'
46
46
 
47
- # The resource is in use.
47
+ # The resource is occupied.
48
48
  RESOURCEINUSE = 'ResourceInUse'
49
49
 
50
- # The resource is insufficient.
50
+ # Insufficient resource.
51
51
  RESOURCEINSUFFICIENT = 'ResourceInsufficient'
52
52
 
53
- # The resource does not exist.
53
+ # The resource doesn’t exist.
54
54
  RESOURCENOTFOUND = 'ResourceNotFound'
55
55
 
56
56
  # The resource is unavailable.
@@ -59,14 +59,14 @@ RESOURCEUNAVAILABLE = 'ResourceUnavailable'
59
59
  # The resources have been sold out.
60
60
  RESOURCESSOLDOUT = 'ResourcesSoldOut'
61
61
 
62
- # The operation is unauthorized.
62
+ # Unauthorized operation.
63
63
  UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
64
64
 
65
65
  #
66
66
  UNAUTHORIZEDOPERATION_UNAUTHORIZED = 'UnauthorizedOperation.Unauthorized'
67
67
 
68
- # The parameter is unknown.
68
+ # Unknown parameter error.
69
69
  UNKNOWNPARAMETER = 'UnknownParameter'
70
70
 
71
- # The operation is not supported.
71
+ # Unsupported operation.
72
72
  UNSUPPORTEDOPERATION = 'UnsupportedOperation'
@@ -409,6 +409,8 @@ Note: this field may return null, indicating that no valid values can be obtaine
409
409
  :param _SubLabel: This field is used to return a subtag under the current tag (Lable).
410
410
  Note: this field may return null, indicating that no valid values can be obtained.
411
411
  :type SubLabel: str
412
+ :param _Suggestion: This field returns the suggested action according to the check result. <br>Values: `Block`, `Review`, `Pass`.
413
+ :type Suggestion: str
412
414
  """
413
415
  self._Label = None
414
416
  self._Score = None
@@ -416,6 +418,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
416
418
  self._EndTime = None
417
419
  self._SubLabelCode = None
418
420
  self._SubLabel = None
421
+ self._Suggestion = None
419
422
 
420
423
  @property
421
424
  def Label(self):
@@ -485,6 +488,17 @@ Note: this field may return null, indicating that no valid values can be obtaine
485
488
  def SubLabel(self, SubLabel):
486
489
  self._SubLabel = SubLabel
487
490
 
491
+ @property
492
+ def Suggestion(self):
493
+ """This field returns the suggested action according to the check result. <br>Values: `Block`, `Review`, `Pass`.
494
+ :rtype: str
495
+ """
496
+ return self._Suggestion
497
+
498
+ @Suggestion.setter
499
+ def Suggestion(self, Suggestion):
500
+ self._Suggestion = Suggestion
501
+
488
502
 
489
503
  def _deserialize(self, params):
490
504
  self._Label = params.get("Label")
@@ -493,6 +507,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
493
507
  self._EndTime = params.get("EndTime")
494
508
  self._SubLabelCode = params.get("SubLabelCode")
495
509
  self._SubLabel = params.get("SubLabel")
510
+ self._Suggestion = params.get("Suggestion")
496
511
  memeber_set = set(params.keys())
497
512
  for name, value in vars(self).items():
498
513
  property_name = name[1:]
@@ -1130,7 +1145,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
1130
1145
  :param _Label: If the recognition result is normal, this parameter is returned with the value `Normal`. If malicious content is recognized, the tag with the highest priority in the result of `Labels` is returned.
1131
1146
  Note: This field may return `null`, indicating that no valid value can be obtained.
1132
1147
  :type Label: str
1133
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1148
+ :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.
1134
1149
  :type RequestId: str
1135
1150
  """
1136
1151
  self._TaskId = None
@@ -1361,7 +1376,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
1361
1376
 
1362
1377
  @property
1363
1378
  def RequestId(self):
1364
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1379
+ """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.
1365
1380
  :rtype: str
1366
1381
  """
1367
1382
  return self._RequestId
@@ -993,7 +993,7 @@ class CreateVideoModerationTaskResponse(AbstractModel):
993
993
  :param _Results: Task creation result
994
994
  Note: This field may return null, indicating that no valid values can be obtained.
995
995
  :type Results: list of TaskResult
996
- :param _RequestId: The unique request ID, which is returned for each request. RequestId is required for locating a problem.
996
+ :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.
997
997
  :type RequestId: str
998
998
  """
999
999
  self._Results = None
@@ -1013,7 +1013,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
1013
1013
 
1014
1014
  @property
1015
1015
  def RequestId(self):
1016
- """The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1016
+ """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.
1017
1017
  :rtype: str
1018
1018
  """
1019
1019
  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
- # u200dThere is already a flow log created for the specified ResourceId.
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