tencentcloud-sdk-python-intl-en 3.0.1233__py2.py3-none-any.whl → 3.0.1235__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/billing/v20180709/models.py +4 -0
- tencentcloud/emr/v20190103/emr_client.py +138 -0
- tencentcloud/emr/v20190103/errorcodes.py +12 -0
- tencentcloud/emr/v20190103/models.py +6945 -5478
- tencentcloud/mongodb/v20190725/errorcodes.py +8 -2
- tencentcloud/mongodb/v20190725/models.py +1162 -506
- tencentcloud/mongodb/v20190725/mongodb_client.py +34 -11
- {tencentcloud_sdk_python_intl_en-3.0.1233.dist-info → tencentcloud_sdk_python_intl_en-3.0.1235.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1233.dist-info → tencentcloud_sdk_python_intl_en-3.0.1235.dist-info}/RECORD +12 -12
- {tencentcloud_sdk_python_intl_en-3.0.1233.dist-info → tencentcloud_sdk_python_intl_en-3.0.1235.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1233.dist-info → tencentcloud_sdk_python_intl_en-3.0.1235.dist-info}/top_level.txt +0 -0
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
# CAM signature/authentication error
|
|
18
18
|
AUTHFAILURE = 'AuthFailure'
|
|
19
19
|
|
|
20
|
+
# Public network access has been enabled for the current instance.
|
|
21
|
+
FAILEDOPERATION_NOTALLOWMODIFYADDRAFTEROPENWANSERVICE = 'FailedOperation.NotAllowModifyAddrAfterOpenWanService'
|
|
22
|
+
|
|
20
23
|
# Internal error
|
|
21
24
|
INTERNALERROR = 'InternalError'
|
|
22
25
|
|
|
@@ -35,7 +38,7 @@ INVALIDPARAMETER_CURRENTINSTANCENOTSUPPORTMODIFYPARAMS = 'InvalidParameter.Curre
|
|
|
35
38
|
# Invalid Vip information
|
|
36
39
|
INVALIDPARAMETER_INVALIDVIP = 'InvalidParameter.InvalidVip'
|
|
37
40
|
|
|
38
|
-
# The current
|
|
41
|
+
# The current sub-account has no permission to perform this operation.
|
|
39
42
|
INVALIDPARAMETER_PERMISSIONDENIED = 'InvalidParameter.PermissionDenied'
|
|
40
43
|
|
|
41
44
|
# Instances are not purchasable in this AZ.
|
|
@@ -131,7 +134,7 @@ INVALIDPARAMETERVALUE_SECURITYGROUPID = 'InvalidParameterValue.SecurityGroupId'
|
|
|
131
134
|
# The disk size to be set cannot be less than 1.2 times the used disk capacity.
|
|
132
135
|
INVALIDPARAMETERVALUE_SETDISKLESSTHANUSED = 'InvalidParameterValue.SetDiskLessThanUsed'
|
|
133
136
|
|
|
134
|
-
# The value of the
|
|
137
|
+
# The value range of the slowMS parameter is [100,65536].
|
|
135
138
|
INVALIDPARAMETERVALUE_SLOWMSBELOWLIMIT = 'InvalidParameterValue.SlowMSBelowLimit'
|
|
136
139
|
|
|
137
140
|
# Incorrect purchasable specification.
|
|
@@ -158,6 +161,9 @@ INVALIDPARAMETERVALUE_ZONECLOSED = 'InvalidParameterValue.ZoneClosed'
|
|
|
158
161
|
# Invalid availability zone
|
|
159
162
|
INVALIDPARAMETERVALUE_ZONEERROR = 'InvalidParameterValue.ZoneError'
|
|
160
163
|
|
|
164
|
+
# The API frequency limit is triggered due to frequent requests.
|
|
165
|
+
LIMITEXCEEDED_TOOMANYREQUESTS = 'LimitExceeded.TooManyRequests'
|
|
166
|
+
|
|
161
167
|
# The resource does not exist.
|
|
162
168
|
RESOURCENOTFOUND = 'ResourceNotFound'
|
|
163
169
|
|