tencentcloud-sdk-python-intl-en 3.0.1146__py2.py3-none-any.whl → 3.0.1147__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 +1 -1
- tencentcloud/cvm/v20170312/models.py +35 -0
- {tencentcloud_sdk_python_intl_en-3.0.1146.dist-info → tencentcloud_sdk_python_intl_en-3.0.1147.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1146.dist-info → tencentcloud_sdk_python_intl_en-3.0.1147.dist-info}/RECORD +7 -7
- {tencentcloud_sdk_python_intl_en-3.0.1146.dist-info → tencentcloud_sdk_python_intl_en-3.0.1147.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1146.dist-info → tencentcloud_sdk_python_intl_en-3.0.1147.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -249,7 +249,7 @@ class CvmClient(AbstractClient):
|
|
|
249
249
|
|
|
250
250
|
An instance launch template contains the configuration information required to create an instance, including instance type, data/system disk type and size, and security group, etc.
|
|
251
251
|
|
|
252
|
-
When a template is created, it defaults to Version 1. You can use `CreateLaunchTemplateVersion` to create new versions of this template, with the version number increasing. When you run `RunInstances` to create instances, you can specify the instance launch template version. If it
|
|
252
|
+
When a template is created, it defaults to Version 1. You can use `CreateLaunchTemplateVersion` to create new versions of this template, with the version number increasing. When you run `RunInstances` to create instances, you can specify the instance launch template version. If it's not specified, the default template version is used.
|
|
253
253
|
|
|
254
254
|
:param request: Request instance for CreateLaunchTemplate.
|
|
255
255
|
:type request: :class:`tencentcloud.cvm.v20170312.models.CreateLaunchTemplateRequest`
|
|
@@ -2054,6 +2054,10 @@ false (default value): send a normal request and create instance(s) if all the r
|
|
|
2054
2054
|
:type InstanceChargeType: str
|
|
2055
2055
|
:param _InstanceChargePrepaid: Details of the monthly subscription, including the purchase period, auto-renewal. It is required if the `InstanceChargeType` is `PREPAID`.
|
|
2056
2056
|
:type InstanceChargePrepaid: :class:`tencentcloud.cvm.v20170312.models.InstanceChargePrepaid`
|
|
2057
|
+
:param _DisableApiTermination:
|
|
2058
|
+
:type DisableApiTermination: bool
|
|
2059
|
+
:param _LaunchTemplateTagSpecification: Instance launch template tag description list. By specifying the TemplateTag parameter, you can bind tags to the instance launch template.
|
|
2060
|
+
:type LaunchTemplateTagSpecification: list of TagSpecification
|
|
2057
2061
|
"""
|
|
2058
2062
|
self._LaunchTemplateName = None
|
|
2059
2063
|
self._Placement = None
|
|
@@ -2081,6 +2085,8 @@ false (default value): send a normal request and create instance(s) if all the r
|
|
|
2081
2085
|
self._HpcClusterId = None
|
|
2082
2086
|
self._InstanceChargeType = None
|
|
2083
2087
|
self._InstanceChargePrepaid = None
|
|
2088
|
+
self._DisableApiTermination = None
|
|
2089
|
+
self._LaunchTemplateTagSpecification = None
|
|
2084
2090
|
|
|
2085
2091
|
@property
|
|
2086
2092
|
def LaunchTemplateName(self):
|
|
@@ -2373,6 +2379,28 @@ false (default value): send a normal request and create instance(s) if all the r
|
|
|
2373
2379
|
def InstanceChargePrepaid(self, InstanceChargePrepaid):
|
|
2374
2380
|
self._InstanceChargePrepaid = InstanceChargePrepaid
|
|
2375
2381
|
|
|
2382
|
+
@property
|
|
2383
|
+
def DisableApiTermination(self):
|
|
2384
|
+
"""
|
|
2385
|
+
:rtype: bool
|
|
2386
|
+
"""
|
|
2387
|
+
return self._DisableApiTermination
|
|
2388
|
+
|
|
2389
|
+
@DisableApiTermination.setter
|
|
2390
|
+
def DisableApiTermination(self, DisableApiTermination):
|
|
2391
|
+
self._DisableApiTermination = DisableApiTermination
|
|
2392
|
+
|
|
2393
|
+
@property
|
|
2394
|
+
def LaunchTemplateTagSpecification(self):
|
|
2395
|
+
"""Instance launch template tag description list. By specifying the TemplateTag parameter, you can bind tags to the instance launch template.
|
|
2396
|
+
:rtype: list of TagSpecification
|
|
2397
|
+
"""
|
|
2398
|
+
return self._LaunchTemplateTagSpecification
|
|
2399
|
+
|
|
2400
|
+
@LaunchTemplateTagSpecification.setter
|
|
2401
|
+
def LaunchTemplateTagSpecification(self, LaunchTemplateTagSpecification):
|
|
2402
|
+
self._LaunchTemplateTagSpecification = LaunchTemplateTagSpecification
|
|
2403
|
+
|
|
2376
2404
|
|
|
2377
2405
|
def _deserialize(self, params):
|
|
2378
2406
|
self._LaunchTemplateName = params.get("LaunchTemplateName")
|
|
@@ -2429,6 +2457,13 @@ false (default value): send a normal request and create instance(s) if all the r
|
|
|
2429
2457
|
if params.get("InstanceChargePrepaid") is not None:
|
|
2430
2458
|
self._InstanceChargePrepaid = InstanceChargePrepaid()
|
|
2431
2459
|
self._InstanceChargePrepaid._deserialize(params.get("InstanceChargePrepaid"))
|
|
2460
|
+
self._DisableApiTermination = params.get("DisableApiTermination")
|
|
2461
|
+
if params.get("LaunchTemplateTagSpecification") is not None:
|
|
2462
|
+
self._LaunchTemplateTagSpecification = []
|
|
2463
|
+
for item in params.get("LaunchTemplateTagSpecification"):
|
|
2464
|
+
obj = TagSpecification()
|
|
2465
|
+
obj._deserialize(item)
|
|
2466
|
+
self._LaunchTemplateTagSpecification.append(obj)
|
|
2432
2467
|
memeber_set = set(params.keys())
|
|
2433
2468
|
for name, value in vars(self).items():
|
|
2434
2469
|
property_name = name[1:]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=ftEvSm2PLuqd9xay3tp8dXk8ehJgR7xH-JGhObmnOms,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
|
|
@@ -179,9 +179,9 @@ tencentcloud/csip/v20221121/errorcodes.py,sha256=BtrJ2Ezz21uWHzoEJED1bUeiBgp3zuf
|
|
|
179
179
|
tencentcloud/csip/v20221121/models.py,sha256=hAdedmdDrD4HWsZQb7SdqtymGVFHoXVZYqkjYeZV5Ms,480806
|
|
180
180
|
tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
181
|
tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
-
tencentcloud/cvm/v20170312/cvm_client.py,sha256=
|
|
182
|
+
tencentcloud/cvm/v20170312/cvm_client.py,sha256=1aD4XgaKlrdYmENkZ_1DIJ8-P4UrF86_11imTWnQJQ0,92578
|
|
183
183
|
tencentcloud/cvm/v20170312/errorcodes.py,sha256=A-ckhQyCbsJtJ1And4c5-INIb6OBekV99rpARLv_jGo,52495
|
|
184
|
-
tencentcloud/cvm/v20170312/models.py,sha256=
|
|
184
|
+
tencentcloud/cvm/v20170312/models.py,sha256=7Hg7xHC0e6cXrNCrGTCywH4OJjqXBHfooulCiS7Cdmo,748030
|
|
185
185
|
tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
186
|
tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
187
|
tencentcloud/cwp/v20180228/cwp_client.py,sha256=XlAOIbfCE2PH5kdpATOrUkuE7eZd74lqbvhm2UDECi0,444132
|
|
@@ -629,7 +629,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
629
629
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
630
630
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
631
631
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
632
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
633
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
634
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
635
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
632
|
+
tencentcloud_sdk_python_intl_en-3.0.1147.dist-info/METADATA,sha256=ZjxYgqFb-VZR5Zm56Nc8LYoqSgR-htFoh20Rl9cZedo,1628
|
|
633
|
+
tencentcloud_sdk_python_intl_en-3.0.1147.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
634
|
+
tencentcloud_sdk_python_intl_en-3.0.1147.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
635
|
+
tencentcloud_sdk_python_intl_en-3.0.1147.dist-info/RECORD,,
|
|
File without changes
|