tencentcloud-sdk-python-intl-en 3.0.1110__py2.py3-none-any.whl → 3.0.1112__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/privatedns/v20201028/errorcodes.py +9 -0
- tencentcloud/privatedns/v20201028/models.py +1299 -66
- tencentcloud/privatedns/v20201028/privatedns_client.py +161 -0
- {tencentcloud_sdk_python_intl_en-3.0.1110.dist-info → tencentcloud_sdk_python_intl_en-3.0.1112.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1110.dist-info → tencentcloud_sdk_python_intl_en-3.0.1112.dist-info}/RECORD +8 -8
- {tencentcloud_sdk_python_intl_en-3.0.1110.dist-info → tencentcloud_sdk_python_intl_en-3.0.1112.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1110.dist-info → tencentcloud_sdk_python_intl_en-3.0.1112.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -50,6 +50,9 @@ FAILEDOPERATION_DELETELASTBINDVPCRECORDFAILED = 'FailedOperation.DeleteLastBindV
|
|
|
50
50
|
#
|
|
51
51
|
FAILEDOPERATION_DELETERECORDFAILED = 'FailedOperation.DeleteRecordFailed'
|
|
52
52
|
|
|
53
|
+
# Failed to delete the endpoint.
|
|
54
|
+
FAILEDOPERATION_DELETEVPCENDPOINTFAILED = 'FailedOperation.DeleteVpcEndPointFailed'
|
|
55
|
+
|
|
53
56
|
# Failed to create an endpoint service.
|
|
54
57
|
FAILEDOPERATION_ENDPOINTSERVICECREATEFAILED = 'FailedOperation.EndPointServiceCreateFailed'
|
|
55
58
|
|
|
@@ -83,12 +86,18 @@ INVALIDPARAMETER = 'InvalidParameter'
|
|
|
83
86
|
# A bound account already exists.
|
|
84
87
|
INVALIDPARAMETER_ACCOUNTEXIST = 'InvalidParameter.AccountExist'
|
|
85
88
|
|
|
89
|
+
# The endpoint has been bound to a forwarding rule.
|
|
90
|
+
INVALIDPARAMETER_ENDPOINTBINDFORWARDRULE = 'InvalidParameter.EndPointBindForwardRule'
|
|
91
|
+
|
|
86
92
|
# The endpoint does not exist.
|
|
87
93
|
INVALIDPARAMETER_ENDPOINTNOTEXISTS = 'InvalidParameter.EndPointNotExists'
|
|
88
94
|
|
|
89
95
|
# The endpoint service does not exist.
|
|
90
96
|
INVALIDPARAMETER_ENDPOINTSERVICENOTEXIST = 'InvalidParameter.EndPointServiceNotExist'
|
|
91
97
|
|
|
98
|
+
# The forwarding rule does not exist.
|
|
99
|
+
INVALIDPARAMETER_FORWARDRULENOTEXIST = 'InvalidParameter.ForwardRuleNotExist'
|
|
100
|
+
|
|
92
101
|
# The private domain has already been bound with the forwarding rule.
|
|
93
102
|
INVALIDPARAMETER_FORWARDRULEZONEREPEATBIND = 'InvalidParameter.ForwardRuleZoneRepeatBind'
|
|
94
103
|
|