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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cat/v20180409/errorcodes.py +3 -0
- tencentcloud/ccc/v20200210/models.py +806 -36
- tencentcloud/cdb/v20170320/models.py +74 -94
- tencentcloud/cdwch/v20200915/models.py +15 -0
- tencentcloud/cfs/v20190719/errorcodes.py +3 -0
- tencentcloud/cls/v20201016/cls_client.py +92 -0
- tencentcloud/cls/v20201016/cls_client_async.py +72 -0
- tencentcloud/cls/v20201016/models.py +728 -0
- tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
- tencentcloud/cynosdb/v20190107/models.py +97 -104
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/emr_client_async.py +18 -0
- tencentcloud/emr/v20190103/errorcodes.py +51 -0
- tencentcloud/emr/v20190103/models.py +1167 -92
- tencentcloud/ess/v20201111/ess_client.py +39 -0
- tencentcloud/ess/v20201111/ess_client_async.py +34 -0
- tencentcloud/ess/v20201111/models.py +279 -88
- tencentcloud/essbasic/v20210526/errorcodes.py +3 -0
- tencentcloud/ft/v20200304/models.py +16 -8
- tencentcloud/ims/v20201229/models.py +30 -0
- tencentcloud/ioa/v20220601/models.py +4 -4
- tencentcloud/iss/v20230517/models.py +2 -2
- tencentcloud/lke/v20231130/models.py +759 -500
- tencentcloud/monitor/v20180724/models.py +142 -80
- tencentcloud/mps/v20190612/models.py +435 -40
- tencentcloud/mps/v20190612/mps_client.py +46 -0
- tencentcloud/mps/v20190612/mps_client_async.py +36 -0
- tencentcloud/postgres/v20170312/errorcodes.py +3 -0
- tencentcloud/postgres/v20170312/models.py +328 -38
- tencentcloud/rum/v20210622/models.py +422 -422
- tencentcloud/ses/v20201002/ses_client.py +2 -1
- tencentcloud/ses/v20201002/ses_client_async.py +1 -0
- tencentcloud/sms/v20210111/errorcodes.py +6 -0
- tencentcloud/sms/v20210111/models.py +326 -0
- tencentcloud/sms/v20210111/sms_client.py +23 -0
- tencentcloud/sms/v20210111/sms_client_async.py +18 -0
- tencentcloud/tcb/v20180608/errorcodes.py +6 -0
- tencentcloud/tcss/v20201101/errorcodes.py +3 -0
- tencentcloud/tcss/v20201101/models.py +1157 -92
- tencentcloud/tcss/v20201101/tcss_client.py +138 -0
- tencentcloud/tcss/v20201101/tcss_client_async.py +108 -0
- tencentcloud/thpc/v20230321/models.py +35 -24
- tencentcloud/tione/v20211111/models.py +34 -0
- tencentcloud/tione/v20211111/tione_client.py +23 -0
- tencentcloud/tione/v20211111/tione_client_async.py +18 -0
- tencentcloud/tke/v20180525/models.py +15 -0
- tencentcloud/trtc/v20190722/models.py +51 -0
- tencentcloud/waf/v20180125/errorcodes.py +15 -0
- tencentcloud/waf/v20180125/models.py +4815 -1627
- tencentcloud/waf/v20180125/waf_client.py +345 -0
- tencentcloud/waf/v20180125/waf_client_async.py +270 -0
- {tencentcloud_sdk_python-3.1.83.dist-info → tencentcloud_sdk_python-3.1.85.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.1.83.dist-info → tencentcloud_sdk_python-3.1.85.dist-info}/RECORD +57 -57
- {tencentcloud_sdk_python-3.1.83.dist-info → tencentcloud_sdk_python-3.1.85.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.1.83.dist-info → tencentcloud_sdk_python-3.1.85.dist-info}/WHEEL +0 -0
- {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
|
@@ -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
|
|