tencentcloud-sdk-python-intl-en 3.0.1089__py2.py3-none-any.whl → 3.0.1091__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/ams/v20201229/models.py +2 -2
- tencentcloud/autoscaling/v20180419/autoscaling_client.py +2 -2
- tencentcloud/autoscaling/v20180419/models.py +350 -209
- tencentcloud/billing/v20180709/models.py +109 -74
- tencentcloud/ccc/v20200210/ccc_client.py +25 -0
- tencentcloud/ccc/v20200210/errorcodes.py +8 -8
- tencentcloud/ccc/v20200210/models.py +756 -0
- tencentcloud/config/__init__.py +0 -0
- tencentcloud/config/v20220802/__init__.py +0 -0
- tencentcloud/config/v20220802/config_client.py +141 -0
- tencentcloud/config/v20220802/errorcodes.py +27 -0
- tencentcloud/config/v20220802/models.py +2362 -0
- tencentcloud/domain/v20180808/models.py +2 -2
- tencentcloud/dts/v20211206/dts_client.py +575 -0
- tencentcloud/dts/v20211206/errorcodes.py +9 -0
- tencentcloud/dts/v20211206/models.py +8552 -3594
- tencentcloud/gaap/v20180529/models.py +2 -2
- tencentcloud/intlpartnersmgt/v20220928/models.py +2 -0
- tencentcloud/mdp/v20200527/models.py +119 -4
- tencentcloud/redis/v20180412/errorcodes.py +3 -0
- tencentcloud/redis/v20180412/models.py +3150 -701
- tencentcloud/redis/v20180412/redis_client.py +273 -43
- tencentcloud/ssl/v20191205/errorcodes.py +21 -0
- tencentcloud/ssl/v20191205/models.py +62 -62
- tencentcloud/tcr/v20190924/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +8 -4
- {tencentcloud_sdk_python_intl_en-3.0.1089.dist-info → tencentcloud_sdk_python_intl_en-3.0.1091.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1089.dist-info → tencentcloud_sdk_python_intl_en-3.0.1091.dist-info}/RECORD +31 -26
- {tencentcloud_sdk_python_intl_en-3.0.1089.dist-info → tencentcloud_sdk_python_intl_en-3.0.1091.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1089.dist-info → tencentcloud_sdk_python_intl_en-3.0.1091.dist-info}/top_level.txt +0 -0
|
@@ -1805,14 +1805,14 @@ class DeleteIntlTemplateResponse(AbstractModel):
|
|
|
1805
1805
|
|
|
1806
1806
|
def __init__(self):
|
|
1807
1807
|
r"""
|
|
1808
|
-
:param _RequestId: The unique request ID,
|
|
1808
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1809
1809
|
:type RequestId: str
|
|
1810
1810
|
"""
|
|
1811
1811
|
self._RequestId = None
|
|
1812
1812
|
|
|
1813
1813
|
@property
|
|
1814
1814
|
def RequestId(self):
|
|
1815
|
-
"""The unique request ID,
|
|
1815
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1816
1816
|
:rtype: str
|
|
1817
1817
|
"""
|
|
1818
1818
|
return self._RequestId
|