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.
Files changed (31) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ams/v20201229/models.py +2 -2
  3. tencentcloud/autoscaling/v20180419/autoscaling_client.py +2 -2
  4. tencentcloud/autoscaling/v20180419/models.py +350 -209
  5. tencentcloud/billing/v20180709/models.py +109 -74
  6. tencentcloud/ccc/v20200210/ccc_client.py +25 -0
  7. tencentcloud/ccc/v20200210/errorcodes.py +8 -8
  8. tencentcloud/ccc/v20200210/models.py +756 -0
  9. tencentcloud/config/__init__.py +0 -0
  10. tencentcloud/config/v20220802/__init__.py +0 -0
  11. tencentcloud/config/v20220802/config_client.py +141 -0
  12. tencentcloud/config/v20220802/errorcodes.py +27 -0
  13. tencentcloud/config/v20220802/models.py +2362 -0
  14. tencentcloud/domain/v20180808/models.py +2 -2
  15. tencentcloud/dts/v20211206/dts_client.py +575 -0
  16. tencentcloud/dts/v20211206/errorcodes.py +9 -0
  17. tencentcloud/dts/v20211206/models.py +8552 -3594
  18. tencentcloud/gaap/v20180529/models.py +2 -2
  19. tencentcloud/intlpartnersmgt/v20220928/models.py +2 -0
  20. tencentcloud/mdp/v20200527/models.py +119 -4
  21. tencentcloud/redis/v20180412/errorcodes.py +3 -0
  22. tencentcloud/redis/v20180412/models.py +3150 -701
  23. tencentcloud/redis/v20180412/redis_client.py +273 -43
  24. tencentcloud/ssl/v20191205/errorcodes.py +21 -0
  25. tencentcloud/ssl/v20191205/models.py +62 -62
  26. tencentcloud/tcr/v20190924/errorcodes.py +3 -0
  27. tencentcloud/teo/v20220901/models.py +8 -4
  28. {tencentcloud_sdk_python_intl_en-3.0.1089.dist-info → tencentcloud_sdk_python_intl_en-3.0.1091.dist-info}/METADATA +1 -1
  29. {tencentcloud_sdk_python_intl_en-3.0.1089.dist-info → tencentcloud_sdk_python_intl_en-3.0.1091.dist-info}/RECORD +31 -26
  30. {tencentcloud_sdk_python_intl_en-3.0.1089.dist-info → tencentcloud_sdk_python_intl_en-3.0.1091.dist-info}/WHEEL +0 -0
  31. {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
@@ -13,4 +13,4 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
 
16
- __version__ = '3.0.1089'
16
+ __version__ = '3.0.1091'
@@ -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, which is returned for each request. RequestId is required for locating a problem.
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, which is returned for each request. RequestId is required for locating a problem.
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 (UpgradeLifecycleHook) is used to upgrade a lifecycle hook.
1471
+ """This API is used to upgrade the lifecycle hook.
1472
1472
 
1473
- * This API is used to upgrade a lifecycle hook in a "completely overriding" manner, i.e., it uniformly sets a new configuration according to the API parameters regardless of the original parameters. If optional fields are left empty, their default values will be used.
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`