tencentcloud-sdk-python-intl-en 3.0.1081__py2.py3-none-any.whl → 3.0.1082__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/cdb/v20170320/cdb_client.py +0 -27
- tencentcloud/cdb/v20170320/models.py +266 -395
- tencentcloud/dc/v20180410/models.py +2 -2
- tencentcloud/mariadb/v20170312/mariadb_client.py +1 -1
- tencentcloud/mariadb/v20170312/models.py +132 -132
- tencentcloud/msp/v20180319/models.py +14 -14
- tencentcloud/trtc/v20190722/models.py +30 -0
- {tencentcloud_sdk_python_intl_en-3.0.1081.dist-info → tencentcloud_sdk_python_intl_en-3.0.1082.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1081.dist-info → tencentcloud_sdk_python_intl_en-3.0.1082.dist-info}/RECORD +12 -12
- {tencentcloud_sdk_python_intl_en-3.0.1081.dist-info → tencentcloud_sdk_python_intl_en-3.0.1082.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1081.dist-info → tencentcloud_sdk_python_intl_en-3.0.1082.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -1958,33 +1958,6 @@ class CdbClient(AbstractClient):
|
|
|
1958
1958
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1959
1959
|
|
|
1960
1960
|
|
|
1961
|
-
def InitDBInstances(self, request):
|
|
1962
|
-
"""该接口不再维护,参考CreateDBInstance+API文档,在发货时即可完成初始化。
|
|
1963
|
-
|
|
1964
|
-
This API was disused. You can refer to the CreateDBInstance API, and initialize the instance when creating it.
|
|
1965
|
-
|
|
1966
|
-
This API is used to initialize a TencentDB instance, including initial password, default character set, and instance port number. But it is disused and not recommended. You can now set the instance information by using the parameter `Password`, `ParamList`, and `Port` respectively in the `CreateDBInstance` and `CreateDBInstanceHour` APIs.
|
|
1967
|
-
|
|
1968
|
-
:param request: Request instance for InitDBInstances.
|
|
1969
|
-
:type request: :class:`tencentcloud.cdb.v20170320.models.InitDBInstancesRequest`
|
|
1970
|
-
:rtype: :class:`tencentcloud.cdb.v20170320.models.InitDBInstancesResponse`
|
|
1971
|
-
|
|
1972
|
-
"""
|
|
1973
|
-
try:
|
|
1974
|
-
params = request._serialize()
|
|
1975
|
-
headers = request.headers
|
|
1976
|
-
body = self.call("InitDBInstances", params, headers=headers)
|
|
1977
|
-
response = json.loads(body)
|
|
1978
|
-
model = models.InitDBInstancesResponse()
|
|
1979
|
-
model._deserialize(response["Response"])
|
|
1980
|
-
return model
|
|
1981
|
-
except Exception as e:
|
|
1982
|
-
if isinstance(e, TencentCloudSDKException):
|
|
1983
|
-
raise
|
|
1984
|
-
else:
|
|
1985
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
1961
|
def IsolateDBInstance(self, request):
|
|
1989
1962
|
"""This API is used to isolate a TencentDB instance, which will no longer be accessible via IP and port. The isolated instance can be started up in the recycle bin. If it is isolated due to arrears, please top up your account as soon as possible.
|
|
1990
1963
|
|