tencentcloud-sdk-python-intl-en 3.0.1288__py2.py3-none-any.whl → 3.0.1291__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ccc/v20200210/ccc_client.py +23 -0
- tencentcloud/ccc/v20200210/models.py +184 -0
- tencentcloud/clb/v20180317/clb_client.py +4 -4
- tencentcloud/clb/v20180317/errorcodes.py +9 -0
- tencentcloud/clb/v20180317/models.py +27 -2
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +46 -0
- tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
- tencentcloud/cynosdb/v20190107/models.py +1286 -75
- tencentcloud/dlc/v20210125/dlc_client.py +69 -0
- tencentcloud/dlc/v20210125/models.py +504 -0
- tencentcloud/mdl/v20200326/models.py +191 -0
- tencentcloud/mongodb/v20190725/errorcodes.py +15 -0
- tencentcloud/mongodb/v20190725/models.py +1276 -463
- tencentcloud/mongodb/v20190725/mongodb_client.py +75 -6
- tencentcloud/monitor/v20180724/models.py +1351 -124
- tencentcloud/monitor/v20180724/monitor_client.py +118 -0
- tencentcloud/mps/v20190612/models.py +366 -62
- tencentcloud/quota/v20241204/models.py +17 -2
- tencentcloud/redis/v20180412/models.py +410 -168
- tencentcloud/redis/v20180412/redis_client.py +4 -4
- tencentcloud/wedata/v20250806/__init__.py +0 -0
- tencentcloud/wedata/v20250806/errorcodes.py +57 -0
- tencentcloud/wedata/v20250806/models.py +26375 -0
- tencentcloud/wedata/v20250806/wedata_client.py +1797 -0
- {tencentcloud_sdk_python_intl_en-3.0.1288.dist-info → tencentcloud_sdk_python_intl_en-3.0.1291.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1288.dist-info → tencentcloud_sdk_python_intl_en-3.0.1291.dist-info}/RECORD +29 -25
- {tencentcloud_sdk_python_intl_en-3.0.1288.dist-info → tencentcloud_sdk_python_intl_en-3.0.1291.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1288.dist-info → tencentcloud_sdk_python_intl_en-3.0.1291.dist-info}/top_level.txt +0 -0
|
@@ -625,7 +625,7 @@ class RedisClient(AbstractClient):
|
|
|
625
625
|
|
|
626
626
|
|
|
627
627
|
def DescribeInstanceAccount(self, request):
|
|
628
|
-
r"""This API is used to
|
|
628
|
+
r"""This API is used to view instance account information.
|
|
629
629
|
|
|
630
630
|
:param request: Request instance for DescribeInstanceAccount.
|
|
631
631
|
:type request: :class:`tencentcloud.redis.v20180412.models.DescribeInstanceAccountRequest`
|
|
@@ -1430,7 +1430,7 @@ class RedisClient(AbstractClient):
|
|
|
1430
1430
|
|
|
1431
1431
|
|
|
1432
1432
|
def DescribeSecondLevelBackupInfo(self, request):
|
|
1433
|
-
r"""This API is used to query
|
|
1433
|
+
r"""This API is used to query second-level backup information for the instance.
|
|
1434
1434
|
|
|
1435
1435
|
:param request: Request instance for DescribeSecondLevelBackupInfo.
|
|
1436
1436
|
:type request: :class:`tencentcloud.redis.v20180412.models.DescribeSecondLevelBackupInfoRequest`
|
|
@@ -1890,7 +1890,7 @@ class RedisClient(AbstractClient):
|
|
|
1890
1890
|
|
|
1891
1891
|
|
|
1892
1892
|
def ModifyInstanceAccount(self, request):
|
|
1893
|
-
r"""This API is used to modify
|
|
1893
|
+
r"""This API is used to modify an instance account.
|
|
1894
1894
|
|
|
1895
1895
|
:param request: Request instance for ModifyInstanceAccount.
|
|
1896
1896
|
:type request: :class:`tencentcloud.redis.v20180412.models.ModifyInstanceAccountRequest`
|
|
@@ -1936,7 +1936,7 @@ class RedisClient(AbstractClient):
|
|
|
1936
1936
|
|
|
1937
1937
|
|
|
1938
1938
|
def ModifyInstanceBackupMode(self, request):
|
|
1939
|
-
r"""This API is used to modify the
|
|
1939
|
+
r"""This API is used to modify the backup mode of an instance.
|
|
1940
1940
|
|
|
1941
1941
|
:param request: Request instance for ModifyInstanceBackupMode.
|
|
1942
1942
|
:type request: :class:`tencentcloud.redis.v20180412.models.ModifyInstanceBackupModeRequest`
|
|
File without changes
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# -*- coding: utf8 -*-
|
|
2
|
+
# Copyright (c) 2017-2025 Tencent. All Rights Reserved.
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# CAM signature/authentication error.
|
|
18
|
+
AUTHFAILURE = 'AuthFailure'
|
|
19
|
+
|
|
20
|
+
# Operation failed.
|
|
21
|
+
FAILEDOPERATION = 'FailedOperation'
|
|
22
|
+
|
|
23
|
+
# Internal error.
|
|
24
|
+
INTERNALERROR = 'InternalError'
|
|
25
|
+
|
|
26
|
+
# Parameter error.
|
|
27
|
+
INVALIDPARAMETER = 'InvalidParameter'
|
|
28
|
+
|
|
29
|
+
# Client ip is unauthorized.
|
|
30
|
+
INVALIDPARAMETER_CLIENTIPNOTAUTHORIZED = 'InvalidParameter.ClientIpNotAuthorized'
|
|
31
|
+
|
|
32
|
+
# Missing Servlet Request Parameter
|
|
33
|
+
INVALIDPARAMETER_MISSINGREQUESTPARAMETER = 'InvalidParameter.MissingRequestParameter'
|
|
34
|
+
|
|
35
|
+
# Parameter value error.
|
|
36
|
+
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
|
|
37
|
+
|
|
38
|
+
# Alarm rule name is duplicate.
|
|
39
|
+
INVALIDPARAMETERVALUE_RULENAMEREPEATED = 'InvalidParameterValue.RuleNameRepeated'
|
|
40
|
+
|
|
41
|
+
# Param Validation Error
|
|
42
|
+
INVALIDPARAMETERVALUE_VALIDATIONERROR = 'InvalidParameterValue.ValidationError'
|
|
43
|
+
|
|
44
|
+
# The quota limit is exceeded.
|
|
45
|
+
LIMITEXCEEDED = 'LimitExceeded'
|
|
46
|
+
|
|
47
|
+
# Parameter missing.
|
|
48
|
+
MISSINGPARAMETER = 'MissingParameter'
|
|
49
|
+
|
|
50
|
+
# Operation denied.
|
|
51
|
+
OPERATIONDENIED = 'OperationDenied'
|
|
52
|
+
|
|
53
|
+
# The resource is occupied.
|
|
54
|
+
RESOURCEINUSE = 'ResourceInUse'
|
|
55
|
+
|
|
56
|
+
# The resource does not exist.
|
|
57
|
+
RESOURCENOTFOUND = 'ResourceNotFound'
|