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
tencentcloud/__init__.py
CHANGED
|
@@ -970,7 +970,7 @@ class CreateAudioModerationTaskResponse(AbstractModel):
|
|
|
970
970
|
:param _Results: This field is used to return the task creation result. For the specific output content, see the detailed description of the `TaskResult` data structure.
|
|
971
971
|
Note: this field may return null, indicating that no valid values can be obtained.
|
|
972
972
|
:type Results: list of TaskResult
|
|
973
|
-
:param _RequestId: The unique request ID,
|
|
973
|
+
: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.
|
|
974
974
|
:type RequestId: str
|
|
975
975
|
"""
|
|
976
976
|
self._Results = None
|
|
@@ -990,7 +990,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
990
990
|
|
|
991
991
|
@property
|
|
992
992
|
def RequestId(self):
|
|
993
|
-
"""The unique request ID,
|
|
993
|
+
"""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.
|
|
994
994
|
:rtype: str
|
|
995
995
|
"""
|
|
996
996
|
return self._RequestId
|
|
@@ -1468,9 +1468,9 @@ class AutoscalingClient(AbstractClient):
|
|
|
1468
1468
|
|
|
1469
1469
|
|
|
1470
1470
|
def UpgradeLifecycleHook(self, request):
|
|
1471
|
-
"""This API
|
|
1471
|
+
"""This API is used to upgrade the lifecycle hook.
|
|
1472
1472
|
|
|
1473
|
-
* This API is used to upgrade
|
|
1473
|
+
* This API is used to upgrade the lifecycle hook, adopting a "comprehensive overwrite" style. Regardless of how the previous parameters were set, it uniformly uses the new configurations for API parameters. For optional fields, if they are not filled in, default values will be used.
|
|
1474
1474
|
|
|
1475
1475
|
:param request: Request instance for UpgradeLifecycleHook.
|
|
1476
1476
|
:type request: :class:`tencentcloud.autoscaling.v20180419.models.UpgradeLifecycleHookRequest`
|