tencentcloud-sdk-python-cfw 3.1.127__tar.gz → 3.1.129__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-cfw might be problematic. Click here for more details.
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/setup.py +1 -1
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/tencentcloud/cfw/v20190904/models.py +15 -0
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cfw-3.1.129/tencentcloud_sdk_python_cfw.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cfw-3.1.127/tencentcloud_sdk_python_cfw.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/README.rst +0 -0
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/tencentcloud/cfw/__init__.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/tencentcloud/cfw/v20190904/__init__.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/tencentcloud/cfw/v20190904/cfw_client.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/tencentcloud/cfw/v20190904/cfw_client_async.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cfw-3.1.127 → tencentcloud_sdk_python_cfw-3.1.129}/tencentcloud_sdk_python_cfw.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cfw
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.129
|
|
4
4
|
Summary: Tencent Cloud Cfw 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.129
|
|
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-cfw',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.129,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cfw SDK for Python',
|
|
@@ -15245,11 +15245,14 @@ class DescribeOfflineExportTemporaryCredentialsResponse(AbstractModel):
|
|
|
15245
15245
|
:type ReturnCode: int
|
|
15246
15246
|
:param _ReturnMsg: <p>返回信息 success 成功 其他 不成功</p>
|
|
15247
15247
|
:type ReturnMsg: str
|
|
15248
|
+
:param _Link: <p>临时下载链接</p>
|
|
15249
|
+
:type Link: str
|
|
15248
15250
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15249
15251
|
:type RequestId: str
|
|
15250
15252
|
"""
|
|
15251
15253
|
self._ReturnCode = None
|
|
15252
15254
|
self._ReturnMsg = None
|
|
15255
|
+
self._Link = None
|
|
15253
15256
|
self._RequestId = None
|
|
15254
15257
|
|
|
15255
15258
|
@property
|
|
@@ -15274,6 +15277,17 @@ class DescribeOfflineExportTemporaryCredentialsResponse(AbstractModel):
|
|
|
15274
15277
|
def ReturnMsg(self, ReturnMsg):
|
|
15275
15278
|
self._ReturnMsg = ReturnMsg
|
|
15276
15279
|
|
|
15280
|
+
@property
|
|
15281
|
+
def Link(self):
|
|
15282
|
+
r"""<p>临时下载链接</p>
|
|
15283
|
+
:rtype: str
|
|
15284
|
+
"""
|
|
15285
|
+
return self._Link
|
|
15286
|
+
|
|
15287
|
+
@Link.setter
|
|
15288
|
+
def Link(self, Link):
|
|
15289
|
+
self._Link = Link
|
|
15290
|
+
|
|
15277
15291
|
@property
|
|
15278
15292
|
def RequestId(self):
|
|
15279
15293
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -15289,6 +15303,7 @@ class DescribeOfflineExportTemporaryCredentialsResponse(AbstractModel):
|
|
|
15289
15303
|
def _deserialize(self, params):
|
|
15290
15304
|
self._ReturnCode = params.get("ReturnCode")
|
|
15291
15305
|
self._ReturnMsg = params.get("ReturnMsg")
|
|
15306
|
+
self._Link = params.get("Link")
|
|
15292
15307
|
self._RequestId = params.get("RequestId")
|
|
15293
15308
|
|
|
15294
15309
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cfw
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.129
|
|
4
4
|
Summary: Tencent Cloud Cfw 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.129
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.129
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.127
|
|
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
|