tencentcloud-sdk-python-intl-en 3.0.1192__py2.py3-none-any.whl → 3.0.1194__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/cvm/v20170312/cvm_client.py +3 -3
- tencentcloud/cvm/v20170312/errorcodes.py +1 -1
- tencentcloud/cvm/v20170312/models.py +358 -268
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +447 -102
- tencentcloud/cynosdb/v20190107/errorcodes.py +45 -0
- tencentcloud/cynosdb/v20190107/models.py +4708 -1349
- tencentcloud/intlpartnersmgt/v20220928/errorcodes.py +27 -0
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +54 -7
- tencentcloud/intlpartnersmgt/v20220928/models.py +391 -0
- {tencentcloud_sdk_python_intl_en-3.0.1192.dist-info → tencentcloud_sdk_python_intl_en-3.0.1194.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1192.dist-info → tencentcloud_sdk_python_intl_en-3.0.1194.dist-info}/RECORD +14 -14
- {tencentcloud_sdk_python_intl_en-3.0.1192.dist-info → tencentcloud_sdk_python_intl_en-3.0.1194.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1192.dist-info → tencentcloud_sdk_python_intl_en-3.0.1194.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -245,11 +245,11 @@ class CvmClient(AbstractClient):
|
|
|
245
245
|
|
|
246
246
|
|
|
247
247
|
def CreateLaunchTemplate(self, request):
|
|
248
|
-
"""This
|
|
248
|
+
"""This interface (CreateLaunchTemplate) is used for instance launch template creation.
|
|
249
249
|
|
|
250
|
-
An instance launch template
|
|
250
|
+
An instance launch template is a configuration data and can be used to create instances. Its content includes configurations required to create instances, such as instance type, types and sizes of data disk and system disk, and security group and other information.
|
|
251
251
|
|
|
252
|
-
|
|
252
|
+
This API is used to create an instance launch template. After the initial creation of the instance template, its template version is the default version 1. A new version can be created using CreateLaunchTemplateVersion (https://intl.cloud.tencent.com/document/product/213/66326?from_cn_redirect=1), and the version number will increment. By default, when specifying an instance launch template in RunInstances (https://intl.cloud.tencent.com/document/product/213/15730?from_cn_redirect=1), if the template version number is not specified, the default version will be used.
|
|
253
253
|
|
|
254
254
|
:param request: Request instance for CreateLaunchTemplate.
|
|
255
255
|
:type request: :class:`tencentcloud.cvm.v20170312.models.CreateLaunchTemplateRequest`
|
|
@@ -464,7 +464,7 @@ INVALIDPARAMETERVALUE_INVALIDINSTANCESOURCE = 'InvalidParameterValue.InvalidInst
|
|
|
464
464
|
# Invalid IP address.
|
|
465
465
|
INVALIDPARAMETERVALUE_INVALIDIPFORMAT = 'InvalidParameterValue.InvalidIpFormat'
|
|
466
466
|
|
|
467
|
-
#
|
|
467
|
+
# Instance boot template description format is incorrect.
|
|
468
468
|
INVALIDPARAMETERVALUE_INVALIDLAUNCHTEMPLATEDESCRIPTION = 'InvalidParameterValue.InvalidLaunchTemplateDescription'
|
|
469
469
|
|
|
470
470
|
# Incorrect format of instance launch template name.
|