tencentcloud-sdk-python 3.0.1320__py2.py3-none-any.whl → 3.0.1321__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/ccc/v20200210/errorcodes.py +6 -0
- tencentcloud/essbasic/v20210526/models.py +4 -4
- tencentcloud/facefusion/v20220927/models.py +16 -4
- tencentcloud/gme/v20180711/models.py +0 -28
- tencentcloud/hunyuan/v20230901/models.py +15 -0
- tencentcloud/lighthouse/v20200324/models.py +4 -40
- tencentcloud/lkeap/v20240522/lkeap_client.py +2 -2
- tencentcloud/lkeap/v20240522/models.py +6 -4
- tencentcloud/ocr/v20181119/models.py +352 -0
- tencentcloud/ocr/v20181119/ocr_client.py +23 -0
- tencentcloud/postgres/v20170312/models.py +1255 -91
- tencentcloud/postgres/v20170312/postgres_client.py +139 -0
- tencentcloud/ssl/v20191205/models.py +6 -232
- 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 +8390 -0
- tencentcloud/trabbit/v20230418/trabbit_client.py +693 -0
- {tencentcloud_sdk_python-3.0.1320.dist-info → tencentcloud_sdk_python-3.0.1321.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1320.dist-info → tencentcloud_sdk_python-3.0.1321.dist-info}/RECORD +24 -19
- {tencentcloud_sdk_python-3.0.1320.dist-info → tencentcloud_sdk_python-3.0.1321.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1320.dist-info → tencentcloud_sdk_python-3.0.1321.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1320.dist-info → tencentcloud_sdk_python-3.0.1321.dist-info}/top_level.txt +0 -0
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签名/鉴权错误。
|
18
|
+
AUTHFAILURE = 'AuthFailure'
|
19
|
+
|
20
|
+
# DryRun 操作,代表请求将会是成功的,只是多传了 DryRun 参数。
|
21
|
+
DRYRUNOPERATION = 'DryRunOperation'
|
22
|
+
|
23
|
+
# 操作失败。
|
24
|
+
FAILEDOPERATION = 'FailedOperation'
|
25
|
+
|
26
|
+
# 内部错误。
|
27
|
+
INTERNALERROR = 'InternalError'
|
28
|
+
|
29
|
+
# 无效的过滤器
|
30
|
+
INVALIDFILTER = 'InvalidFilter'
|
31
|
+
|
32
|
+
# 参数错误。
|
33
|
+
INVALIDPARAMETER = 'InvalidParameter'
|
34
|
+
|
35
|
+
# 参数取值错误。
|
36
|
+
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
37
|
+
|
38
|
+
# 超过配额限制。
|
39
|
+
LIMITEXCEEDED = 'LimitExceeded'
|
40
|
+
|
41
|
+
# 缺少参数错误。
|
42
|
+
MISSINGPARAMETER = 'MissingParameter'
|
43
|
+
|
44
|
+
# 操作被拒绝。
|
45
|
+
OPERATIONDENIED = 'OperationDenied'
|
46
|
+
|
47
|
+
# 地域错误
|
48
|
+
REGIONERROR = 'RegionError'
|
49
|
+
|
50
|
+
# 请求的次数超过了频率限制。
|
51
|
+
REQUESTLIMITEXCEEDED = 'RequestLimitExceeded'
|
52
|
+
|
53
|
+
# 资源被占用。
|
54
|
+
RESOURCEINUSE = 'ResourceInUse'
|
55
|
+
|
56
|
+
# 资源不足。
|
57
|
+
RESOURCEINSUFFICIENT = 'ResourceInsufficient'
|
58
|
+
|
59
|
+
# 资源不存在。
|
60
|
+
RESOURCENOTFOUND = 'ResourceNotFound'
|
61
|
+
|
62
|
+
# 资源不可用。
|
63
|
+
RESOURCEUNAVAILABLE = 'ResourceUnavailable'
|
64
|
+
|
65
|
+
# 资源售罄。
|
66
|
+
RESOURCESSOLDOUT = 'ResourcesSoldOut'
|
67
|
+
|
68
|
+
# 未授权操作。
|
69
|
+
UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
|
70
|
+
|
71
|
+
# 未知参数错误。
|
72
|
+
UNKNOWNPARAMETER = 'UnknownParameter'
|
73
|
+
|
74
|
+
# 操作不支持。
|
75
|
+
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|