tencentcloud-sdk-python 3.1.83__py2.py3-none-any.whl → 3.1.85__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 (57) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/cat/v20180409/errorcodes.py +3 -0
  3. tencentcloud/ccc/v20200210/models.py +806 -36
  4. tencentcloud/cdb/v20170320/models.py +74 -94
  5. tencentcloud/cdwch/v20200915/models.py +15 -0
  6. tencentcloud/cfs/v20190719/errorcodes.py +3 -0
  7. tencentcloud/cls/v20201016/cls_client.py +92 -0
  8. tencentcloud/cls/v20201016/cls_client_async.py +72 -0
  9. tencentcloud/cls/v20201016/models.py +728 -0
  10. tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
  11. tencentcloud/cynosdb/v20190107/models.py +97 -104
  12. tencentcloud/emr/v20190103/emr_client.py +23 -0
  13. tencentcloud/emr/v20190103/emr_client_async.py +18 -0
  14. tencentcloud/emr/v20190103/errorcodes.py +51 -0
  15. tencentcloud/emr/v20190103/models.py +1167 -92
  16. tencentcloud/ess/v20201111/ess_client.py +39 -0
  17. tencentcloud/ess/v20201111/ess_client_async.py +34 -0
  18. tencentcloud/ess/v20201111/models.py +279 -88
  19. tencentcloud/essbasic/v20210526/errorcodes.py +3 -0
  20. tencentcloud/ft/v20200304/models.py +16 -8
  21. tencentcloud/ims/v20201229/models.py +30 -0
  22. tencentcloud/ioa/v20220601/models.py +4 -4
  23. tencentcloud/iss/v20230517/models.py +2 -2
  24. tencentcloud/lke/v20231130/models.py +759 -500
  25. tencentcloud/monitor/v20180724/models.py +142 -80
  26. tencentcloud/mps/v20190612/models.py +435 -40
  27. tencentcloud/mps/v20190612/mps_client.py +46 -0
  28. tencentcloud/mps/v20190612/mps_client_async.py +36 -0
  29. tencentcloud/postgres/v20170312/errorcodes.py +3 -0
  30. tencentcloud/postgres/v20170312/models.py +328 -38
  31. tencentcloud/rum/v20210622/models.py +422 -422
  32. tencentcloud/ses/v20201002/ses_client.py +2 -1
  33. tencentcloud/ses/v20201002/ses_client_async.py +1 -0
  34. tencentcloud/sms/v20210111/errorcodes.py +6 -0
  35. tencentcloud/sms/v20210111/models.py +326 -0
  36. tencentcloud/sms/v20210111/sms_client.py +23 -0
  37. tencentcloud/sms/v20210111/sms_client_async.py +18 -0
  38. tencentcloud/tcb/v20180608/errorcodes.py +6 -0
  39. tencentcloud/tcss/v20201101/errorcodes.py +3 -0
  40. tencentcloud/tcss/v20201101/models.py +1157 -92
  41. tencentcloud/tcss/v20201101/tcss_client.py +138 -0
  42. tencentcloud/tcss/v20201101/tcss_client_async.py +108 -0
  43. tencentcloud/thpc/v20230321/models.py +35 -24
  44. tencentcloud/tione/v20211111/models.py +34 -0
  45. tencentcloud/tione/v20211111/tione_client.py +23 -0
  46. tencentcloud/tione/v20211111/tione_client_async.py +18 -0
  47. tencentcloud/tke/v20180525/models.py +15 -0
  48. tencentcloud/trtc/v20190722/models.py +51 -0
  49. tencentcloud/waf/v20180125/errorcodes.py +15 -0
  50. tencentcloud/waf/v20180125/models.py +4815 -1627
  51. tencentcloud/waf/v20180125/waf_client.py +345 -0
  52. tencentcloud/waf/v20180125/waf_client_async.py +270 -0
  53. {tencentcloud_sdk_python-3.1.83.dist-info → tencentcloud_sdk_python-3.1.85.dist-info}/METADATA +1 -1
  54. {tencentcloud_sdk_python-3.1.83.dist-info → tencentcloud_sdk_python-3.1.85.dist-info}/RECORD +57 -57
  55. {tencentcloud_sdk_python-3.1.83.dist-info → tencentcloud_sdk_python-3.1.85.dist-info}/LICENSE +0 -0
  56. {tencentcloud_sdk_python-3.1.83.dist-info → tencentcloud_sdk_python-3.1.85.dist-info}/WHEEL +0 -0
  57. {tencentcloud_sdk_python-3.1.83.dist-info → tencentcloud_sdk_python-3.1.85.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.83'
17
+ __version__ = '3.1.85'
@@ -32,6 +32,9 @@ FAILEDOPERATION_ESQUERYERROR = 'FailedOperation.ESQueryError'
32
32
  # 任务绑定的预付费套餐已过期。
33
33
  FAILEDOPERATION_ERRPREPAIDRESOURCEEXPIRE = 'FailedOperation.ErrPrePaidResourceExpire'
34
34
 
35
+ # 触发指定审批流
36
+ FAILEDOPERATION_NEEDAPPROVAL = 'FailedOperation.NeedApproval'
37
+
35
38
  # 无有效节点。
36
39
  FAILEDOPERATION_NOVALIDNODES = 'FailedOperation.NoValidNodes'
37
40