tencentcloud-sdk-python-ga2 3.1.172__tar.gz → 3.1.173__tar.gz
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_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/setup.py +1 -1
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/tencentcloud/ga2/v20250115/errorcodes.py +6 -0
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/tencentcloud_sdk_python_ga2.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ga2-3.1.173/tencentcloud_sdk_python_ga2.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ga2-3.1.172/tencentcloud_sdk_python_ga2.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/README.rst +0 -0
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/tencentcloud/ga2/__init__.py +0 -0
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/tencentcloud/ga2/v20250115/__init__.py +0 -0
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/tencentcloud/ga2/v20250115/ga2_client.py +0 -0
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/tencentcloud/ga2/v20250115/ga2_client_async.py +0 -0
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/tencentcloud/ga2/v20250115/models.py +0 -0
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/tencentcloud_sdk_python_ga2.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/tencentcloud_sdk_python_ga2.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ga2-3.1.172 → tencentcloud_sdk_python_ga2-3.1.173}/tencentcloud_sdk_python_ga2.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ga2
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.173
|
|
4
4
|
Summary: Tencent Cloud Ga2 SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.173
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-ga2',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.173,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ga2 SDK for Python',
|
|
@@ -101,6 +101,9 @@ INVALIDPARAMETERVALUE_INSTANCEMISMATCH = 'InvalidParameterValue.InstanceMismatch
|
|
|
101
101
|
# 实例名称仅支持以大小写字符或中文开头,支持数字、英文句号、或段划线、下划线。
|
|
102
102
|
INVALIDPARAMETERVALUE_INSTANCENAME = 'InvalidParameterValue.InstanceName'
|
|
103
103
|
|
|
104
|
+
# 参数值`%(value)s`不能包含特殊字段`%(key)s`。
|
|
105
|
+
INVALIDPARAMETERVALUE_INTERNALRESERVEDFIELDS = 'InvalidParameterValue.InternalReservedFields'
|
|
106
|
+
|
|
104
107
|
# 参数 `%(parameter)s` 值 `%(value)s` 数量超过限制。不能大于 `%(limit)s` 个。
|
|
105
108
|
INVALIDPARAMETERVALUE_LIMITEXCEEDED = 'InvalidParameterValue.LimitExceeded'
|
|
106
109
|
|
|
@@ -167,6 +170,9 @@ MISSINGPARAMETER_CUSTOMCHECKTYPEPARAMETER = 'MissingParameter.CustomCheckTypePar
|
|
|
167
170
|
# 终端节点组配置为开启健康检查,请求缺少必填参数 `%(parameter)s`。
|
|
168
171
|
MISSINGPARAMETER_ENABLEHEALTHCHECKPARAMETER = 'MissingParameter.EnableHealthCheckParameter'
|
|
169
172
|
|
|
173
|
+
# 加速地域 `%(value)s` 下存在边缘加速地域,不可删除该加速地域。
|
|
174
|
+
RESOURCEINUSE_EDGEACCELERATEAREA = 'ResourceInUse.EdgeAccelerateArea'
|
|
175
|
+
|
|
170
176
|
# 资源不存在。
|
|
171
177
|
RESOURCENOTFOUND = 'ResourceNotFound'
|
|
172
178
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ga2
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.173
|
|
4
4
|
Summary: Tencent Cloud Ga2 SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.173
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.173
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.172
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|