tencentcloud-sdk-python-intl-en 3.0.1081__py2.py3-none-any.whl → 3.0.1083__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 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.1081'
16
+ __version__ = '3.0.1083'
@@ -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