tencentcloud-sdk-python-intl-en 3.0.1276__py2.py3-none-any.whl → 3.0.1277__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/tione/__init__.py +0 -0
- tencentcloud/tione/v20211111/__init__.py +0 -0
- tencentcloud/tione/v20211111/errorcodes.py +90 -0
- tencentcloud/tione/v20211111/models.py +5096 -0
- tencentcloud/tione/v20211111/tione_client.py +49 -0
- {tencentcloud_sdk_python_intl_en-3.0.1276.dist-info → tencentcloud_sdk_python_intl_en-3.0.1277.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1276.dist-info → tencentcloud_sdk_python_intl_en-3.0.1277.dist-info}/RECORD +10 -5
- {tencentcloud_sdk_python_intl_en-3.0.1276.dist-info → tencentcloud_sdk_python_intl_en-3.0.1277.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1276.dist-info → tencentcloud_sdk_python_intl_en-3.0.1277.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
File without changes
|
File without changes
|
@@ -0,0 +1,90 @@
|
|
1
|
+
# -*- coding: utf8 -*-
|
2
|
+
# Copyright (c) 2017-2025 Tencent. 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
|
+
|
17
|
+
# CAM signature/authentication error.
|
18
|
+
AUTHFAILURE = 'AuthFailure'
|
19
|
+
|
20
|
+
# Cloud Access Management (CAM) system exception.
|
21
|
+
AUTHFAILURE_CAMEXCEPTION = 'AuthFailure.CamException'
|
22
|
+
|
23
|
+
# Unauthorized operation.
|
24
|
+
AUTHFAILURE_UNAUTHORIZEDOPERATION = 'AuthFailure.UnauthorizedOperation'
|
25
|
+
|
26
|
+
# Operation failed.
|
27
|
+
FAILEDOPERATION = 'FailedOperation'
|
28
|
+
|
29
|
+
# Failed to access the API Gateway. Please try again.
|
30
|
+
FAILEDOPERATION_APIGATEWAYQUERYFAILED = 'FailedOperation.ApiGatewayQueryFailed'
|
31
|
+
|
32
|
+
# Failed to access the billing module.
|
33
|
+
FAILEDOPERATION_BILLINGQUERYFAILED = 'FailedOperation.BillingQueryFailed'
|
34
|
+
|
35
|
+
# Cluster access failed.
|
36
|
+
FAILEDOPERATION_CLUSTERQUERYFAILED = 'FailedOperation.ClusterQueryFailed'
|
37
|
+
|
38
|
+
# Duplicated name.
|
39
|
+
FAILEDOPERATION_DUPLICATENAME = 'FailedOperation.DuplicateName'
|
40
|
+
|
41
|
+
# Database execution error.
|
42
|
+
FAILEDOPERATION_EXECDATABASEFAIL = 'FailedOperation.ExecDatabaseFail'
|
43
|
+
|
44
|
+
# Tag operation failed.
|
45
|
+
FAILEDOPERATION_EXECTAGFAIL = 'FailedOperation.ExecTagFail'
|
46
|
+
|
47
|
+
# No permissions.
|
48
|
+
FAILEDOPERATION_NOPERMISSION = 'FailedOperation.NoPermission'
|
49
|
+
|
50
|
+
# The operation is not allowed.
|
51
|
+
FAILEDOPERATION_NOTALLOW = 'FailedOperation.NotAllow'
|
52
|
+
|
53
|
+
# Database query error.
|
54
|
+
FAILEDOPERATION_QUERYDATABASEFAIL = 'FailedOperation.QueryDatabaseFail'
|
55
|
+
|
56
|
+
# Failed to query the tag service.
|
57
|
+
FAILEDOPERATION_QUERYTAGFAIL = 'FailedOperation.QueryTagFail'
|
58
|
+
|
59
|
+
# Failed to access the key service. Please try again.
|
60
|
+
FAILEDOPERATION_STSQUERYFAILED = 'FailedOperation.StsQueryFailed'
|
61
|
+
|
62
|
+
# Unknown instance specifications.
|
63
|
+
FAILEDOPERATION_UNKNOWNINSTANCETYPE = 'FailedOperation.UnknownInstanceType'
|
64
|
+
|
65
|
+
# Data parsing failed.
|
66
|
+
FAILEDOPERATION_UNMARSHALDATA = 'FailedOperation.UnmarshalData'
|
67
|
+
|
68
|
+
# Internal error.
|
69
|
+
INTERNALERROR = 'InternalError'
|
70
|
+
|
71
|
+
# Parameter error.
|
72
|
+
INVALIDPARAMETER = 'InvalidParameter'
|
73
|
+
|
74
|
+
# Parameter value error.
|
75
|
+
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
76
|
+
|
77
|
+
# Invalid name.
|
78
|
+
INVALIDPARAMETERVALUE_BADNAME = 'InvalidParameterValue.BadName'
|
79
|
+
|
80
|
+
# Error of missing parameters.
|
81
|
+
MISSINGPARAMETER = 'MissingParameter'
|
82
|
+
|
83
|
+
# Operation denied.
|
84
|
+
OPERATIONDENIED = 'OperationDenied'
|
85
|
+
|
86
|
+
# Insufficient balance. Failed to create or update.
|
87
|
+
OPERATIONDENIED_BALANCEINSUFFICIENT = 'OperationDenied.BalanceInsufficient'
|
88
|
+
|
89
|
+
# The resource does not exist.
|
90
|
+
RESOURCENOTFOUND = 'ResourceNotFound'
|