tencentcloud-sdk-python-intl-en 3.0.1191__py2.py3-none-any.whl → 3.0.1192__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/trabbit/__init__.py +0 -0
- tencentcloud/trabbit/v20230418/__init__.py +0 -0
- tencentcloud/trabbit/v20230418/errorcodes.py +75 -0
- tencentcloud/trabbit/v20230418/models.py +8101 -0
- tencentcloud/trabbit/v20230418/trabbit_client.py +693 -0
- {tencentcloud_sdk_python_intl_en-3.0.1191.dist-info → tencentcloud_sdk_python_intl_en-3.0.1192.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1191.dist-info → tencentcloud_sdk_python_intl_en-3.0.1192.dist-info}/RECORD +10 -5
- {tencentcloud_sdk_python_intl_en-3.0.1191.dist-info → tencentcloud_sdk_python_intl_en-3.0.1192.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1191.dist-info → tencentcloud_sdk_python_intl_en-3.0.1192.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# -*- coding: utf8 -*-
|
|
2
|
+
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. 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
|
+
# DryRun operation means the request will be successful, but the DryRun parameter is passed.
|
|
21
|
+
DRYRUNOPERATION = 'DryRunOperation'
|
|
22
|
+
|
|
23
|
+
# Operation failed.
|
|
24
|
+
FAILEDOPERATION = 'FailedOperation'
|
|
25
|
+
|
|
26
|
+
# Internal error.
|
|
27
|
+
INTERNALERROR = 'InternalError'
|
|
28
|
+
|
|
29
|
+
# Invalid Filter
|
|
30
|
+
INVALIDFILTER = 'InvalidFilter'
|
|
31
|
+
|
|
32
|
+
# Parameter error.
|
|
33
|
+
INVALIDPARAMETER = 'InvalidParameter'
|
|
34
|
+
|
|
35
|
+
# Parameter value error.
|
|
36
|
+
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
|
37
|
+
|
|
38
|
+
# The quota limit is exceeded.
|
|
39
|
+
LIMITEXCEEDED = 'LimitExceeded'
|
|
40
|
+
|
|
41
|
+
# Parameters are missing
|
|
42
|
+
MISSINGPARAMETER = 'MissingParameter'
|
|
43
|
+
|
|
44
|
+
# Operation denied.
|
|
45
|
+
OPERATIONDENIED = 'OperationDenied'
|
|
46
|
+
|
|
47
|
+
# Region error.
|
|
48
|
+
REGIONERROR = 'RegionError'
|
|
49
|
+
|
|
50
|
+
# Request limit exceeded.
|
|
51
|
+
REQUESTLIMITEXCEEDED = 'RequestLimitExceeded'
|
|
52
|
+
|
|
53
|
+
# The resource is occupied.
|
|
54
|
+
RESOURCEINUSE = 'ResourceInUse'
|
|
55
|
+
|
|
56
|
+
# Insufficient resources.
|
|
57
|
+
RESOURCEINSUFFICIENT = 'ResourceInsufficient'
|
|
58
|
+
|
|
59
|
+
# The resource does not exist.
|
|
60
|
+
RESOURCENOTFOUND = 'ResourceNotFound'
|
|
61
|
+
|
|
62
|
+
# Resources are unavailable.
|
|
63
|
+
RESOURCEUNAVAILABLE = 'ResourceUnavailable'
|
|
64
|
+
|
|
65
|
+
# Resources are sold out.
|
|
66
|
+
RESOURCESSOLDOUT = 'ResourcesSoldOut'
|
|
67
|
+
|
|
68
|
+
# Unauthorized operation.
|
|
69
|
+
UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
|
|
70
|
+
|
|
71
|
+
# Unknown parameter error.
|
|
72
|
+
UNKNOWNPARAMETER = 'UnknownParameter'
|
|
73
|
+
|
|
74
|
+
# The operation is not supported.
|
|
75
|
+
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|