tencentcloud-sdk-python-intl-en 3.0.1291__py2.py3-none-any.whl → 3.0.1293__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/vpc/v20170312/errorcodes.py +10 -1
- tencentcloud/vpc/v20170312/models.py +1733 -155
- tencentcloud/vpc/v20170312/vpc_client.py +276 -0
- {tencentcloud_sdk_python_intl_en-3.0.1291.dist-info → tencentcloud_sdk_python_intl_en-3.0.1293.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1291.dist-info → tencentcloud_sdk_python_intl_en-3.0.1293.dist-info}/RECORD +8 -8
- {tencentcloud_sdk_python_intl_en-3.0.1291.dist-info → tencentcloud_sdk_python_intl_en-3.0.1293.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1291.dist-info → tencentcloud_sdk_python_intl_en-3.0.1293.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -281,6 +281,9 @@ INVALIDPARAMETERVALUE_MISSINGASSOCIATEENTITY = 'InvalidParameterValue.MissingAss
|
|
|
281
281
|
# A request cannot contain IP addresses with different cluster types.
|
|
282
282
|
INVALIDPARAMETERVALUE_MIXEDADDRESSIPSETTYPE = 'InvalidParameterValue.MixedAddressIpSetType'
|
|
283
283
|
|
|
284
|
+
# Missing required parameters. provide at least one.
|
|
285
|
+
INVALIDPARAMETERVALUE_MUSTHASONE = 'InvalidParameterValue.MustHasOne'
|
|
286
|
+
|
|
284
287
|
# The DNAT forwarding rule of the NAT gateway already exists.
|
|
285
288
|
INVALIDPARAMETERVALUE_NATGATEWAYDNATRULEEXISTED = 'InvalidParameterValue.NatGatewayDnatRuleExisted'
|
|
286
289
|
|
|
@@ -350,7 +353,10 @@ INVALIDPARAMETERVALUE_RESOURCENOTFOUND = 'InvalidParameterValue.ResourceNotFound
|
|
|
350
353
|
# The resource does not support this operation.
|
|
351
354
|
INVALIDPARAMETERVALUE_RESOURCENOTSUPPORT = 'InvalidParameterValue.ResourceNotSupport'
|
|
352
355
|
|
|
353
|
-
# The
|
|
356
|
+
# The routing strategy binding rule already exists.
|
|
357
|
+
INVALIDPARAMETERVALUE_ROUTEPOLICYASSOCIATIONEXISTS = 'InvalidParameterValue.RoutePolicyAssociationExists'
|
|
358
|
+
|
|
359
|
+
# The specified priority conflicts with each other or with an already existing priority.
|
|
354
360
|
INVALIDPARAMETERVALUE_ROUTEPOLICYPRIORITYCONFLICT = 'InvalidParameterValue.RoutePolicyPriorityConflict'
|
|
355
361
|
|
|
356
362
|
# Operation failed: The instance to shut down is using the current resource.
|
|
@@ -959,6 +965,9 @@ UNSUPPORTEDOPERATION_RESOURCEMISMATCH = 'UnsupportedOperation.ResourceMismatch'
|
|
|
959
965
|
# No roles available. Please confirm whether you get the authorization for the role.
|
|
960
966
|
UNSUPPORTEDOPERATION_ROLENOTFOUND = 'UnsupportedOperation.RoleNotFound'
|
|
961
967
|
|
|
968
|
+
# The routing strategy is associated with the route table and cannot be deleted.
|
|
969
|
+
UNSUPPORTEDOPERATION_ROUTEPOLICYASSOCIATION = 'UnsupportedOperation.RoutePolicyAssociation'
|
|
970
|
+
|
|
962
971
|
# The current route table deletion failed. Please check if there are any associated policies.
|
|
963
972
|
UNSUPPORTEDOPERATION_ROUTETABLECANNOTDELETE = 'UnsupportedOperation.RouteTableCanNotDelete'
|
|
964
973
|
|