tencentcloud-sdk-python-intl-en 3.0.1266__py2.py3-none-any.whl → 3.0.1268__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/cvm/v20170312/cvm_client.py +52 -0
- tencentcloud/cvm/v20170312/errorcodes.py +12 -0
- tencentcloud/cvm/v20170312/models.py +226 -0
- tencentcloud/faceid/v20180301/models.py +114 -46
- tencentcloud/ocr/v20181119/ocr_client.py +1 -1
- tencentcloud/sqlserver/v20180328/errorcodes.py +24 -0
- tencentcloud/sqlserver/v20180328/models.py +16669 -6852
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +1212 -39
- tencentcloud/teo/v20220901/models.py +26 -124
- tencentcloud/teo/v20220901/teo_client.py +8 -2
- {tencentcloud_sdk_python_intl_en-3.0.1266.dist-info → tencentcloud_sdk_python_intl_en-3.0.1268.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1266.dist-info → tencentcloud_sdk_python_intl_en-3.0.1268.dist-info}/RECORD +15 -15
- {tencentcloud_sdk_python_intl_en-3.0.1266.dist-info → tencentcloud_sdk_python_intl_en-3.0.1268.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1266.dist-info → tencentcloud_sdk_python_intl_en-3.0.1268.dist-info}/top_level.txt +0 -0
@@ -29,6 +29,9 @@ FAILEDOPERATION_CREATEORDERFAILED = 'FailedOperation.CreateOrderFailed'
|
|
29
29
|
# Database error.
|
30
30
|
FAILEDOPERATION_DBERROR = 'FailedOperation.DBError'
|
31
31
|
|
32
|
+
# Public network operation failed.
|
33
|
+
FAILEDOPERATION_DOMAINOPERATIONFAILED = 'FailedOperation.DomainOperationFailed'
|
34
|
+
|
32
35
|
# The operation failed or the network timed out.
|
33
36
|
FAILEDOPERATION_GCSERROR = 'FailedOperation.GcsError'
|
34
37
|
|
@@ -47,6 +50,9 @@ FAILEDOPERATION_QUERYORDERFAILED = 'FailedOperation.QueryOrderFailed'
|
|
47
50
|
# Billing error. Failed to query price.
|
48
51
|
FAILEDOPERATION_QUERYPRICEFAILED = 'FailedOperation.QueryPriceFailed'
|
49
52
|
|
53
|
+
# Security group operation failed.
|
54
|
+
FAILEDOPERATION_SECURITYGROUPOPERATIONERROR = 'FailedOperation.SecurityGroupOperationError'
|
55
|
+
|
50
56
|
# Failed to operate the network or the session timed out.
|
51
57
|
FAILEDOPERATION_VPCERROR = 'FailedOperation.VPCError'
|
52
58
|
|
@@ -68,6 +74,9 @@ INTERNALERROR_DBCONNECTERROR = 'InternalError.DBConnectError'
|
|
68
74
|
# Database error
|
69
75
|
INTERNALERROR_DBERROR = 'InternalError.DBError'
|
70
76
|
|
77
|
+
# A data error occurs.
|
78
|
+
INTERNALERROR_DATAERROR = 'InternalError.DataError'
|
79
|
+
|
71
80
|
# GCS API error.
|
72
81
|
INTERNALERROR_GCSERROR = 'InternalError.GcsError'
|
73
82
|
|
@@ -92,6 +101,15 @@ INVALIDPARAMETER_INPUTILLEGAL = 'InvalidParameter.InputIllegal'
|
|
92
101
|
# The API does not exist.
|
93
102
|
INVALIDPARAMETER_INTERFACENAMENOTFOUND = 'InvalidParameter.InterfaceNameNotFound'
|
94
103
|
|
104
|
+
# Instances with publish-subscribe relationships are not supported.
|
105
|
+
INVALIDPARAMETER_NOTSUPPORTPUBSUBINSTANCE = 'InvalidParameter.NotSupportPubSubInstance'
|
106
|
+
|
107
|
+
# Primary instances with read-only replicas are not supported.
|
108
|
+
INVALIDPARAMETER_NOTSUPPORTREADONLYMASTERINSTANCE = 'InvalidParameter.NotSupportReadOnlyMasterInstance'
|
109
|
+
|
110
|
+
# Single-node edition (basic edition or RO replica) instances are not supported.
|
111
|
+
INVALIDPARAMETER_NOTSUPPORTSINGLEINSTANCE = 'InvalidParameter.NotSupportSingleInstance'
|
112
|
+
|
95
113
|
# An error occurred while converting parameter assertion.
|
96
114
|
INVALIDPARAMETER_PARAMSASSERTFAILED = 'InvalidParameter.ParamsAssertFailed'
|
97
115
|
|
@@ -185,9 +203,15 @@ INVALIDPARAMETERVALUE_PASSWORDISILLEGAL = 'InvalidParameterValue.PasswordIsIlleg
|
|
185
203
|
# Incorrect database permission settings.
|
186
204
|
INVALIDPARAMETERVALUE_PRIVILEGEISILLEGAL = 'InvalidParameterValue.PrivilegeIsIllegal'
|
187
205
|
|
206
|
+
# The publish/subscribe name does not meet the requirements.
|
207
|
+
INVALIDPARAMETERVALUE_PUBSUBNAMEISILLEGAL = 'InvalidParameterValue.PubSubNameIsIllegal'
|
208
|
+
|
188
209
|
# Read-only group name contains invalid characters.
|
189
210
|
INVALIDPARAMETERVALUE_ROGROUPNAMEISILLEGAL = 'InvalidParameterValue.RoGroupNameIsIllegal'
|
190
211
|
|
212
|
+
# The read-only group status is abnormal.
|
213
|
+
INVALIDPARAMETERVALUE_ROGROUPSTATUSISILLEGAL = 'InvalidParameterValue.RoGroupStatusIsIllegal'
|
214
|
+
|
191
215
|
# Invalid security group ID.
|
192
216
|
INVALIDPARAMETERVALUE_SECURITYGROUPIDISILLEGAL = 'InvalidParameterValue.SecurityGroupIdIsIllegal'
|
193
217
|
|