tencentcloud-sdk-python-intl-en 3.0.1285__py2.py3-none-any.whl → 3.0.1287__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/errorcodes.py +1 -1
- tencentcloud/cvm/v20170312/models.py +141 -120
- tencentcloud/dlc/v20210125/dlc_client.py +46 -0
- tencentcloud/dlc/v20210125/models.py +424 -14
- tencentcloud/mdl/v20200326/models.py +72 -2
- tencentcloud/mdp/v20200527/models.py +100 -2
- tencentcloud/message/__init__.py +0 -0
- tencentcloud/message/v20181225/__init__.py +0 -0
- tencentcloud/message/v20181225/errorcodes.py +27 -0
- tencentcloud/message/v20181225/message_client.py +49 -0
- tencentcloud/message/v20181225/models.py +138 -0
- tencentcloud/mps/v20190612/errorcodes.py +42 -0
- tencentcloud/mps/v20190612/models.py +810 -43
- tencentcloud/mps/v20190612/mps_client.py +92 -0
- tencentcloud/teo/v20220901/teo_client.py +3 -3
- {tencentcloud_sdk_python_intl_en-3.0.1285.dist-info → tencentcloud_sdk_python_intl_en-3.0.1287.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1285.dist-info → tencentcloud_sdk_python_intl_en-3.0.1287.dist-info}/RECORD +20 -15
- {tencentcloud_sdk_python_intl_en-3.0.1285.dist-info → tencentcloud_sdk_python_intl_en-3.0.1287.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1285.dist-info → tencentcloud_sdk_python_intl_en-3.0.1287.dist-info}/top_level.txt +0 -0
|
@@ -3281,7 +3281,7 @@ class DataDisk(AbstractModel):
|
|
|
3281
3281
|
r"""
|
|
3282
3282
|
:param _DiskSize: Data disk size, unit: GiB. the minimum adjustment step size is 10 GiB. the value ranges of different data disk types vary. for specific limitations, see the storage overview (https://intl.cloud.tencent.com/document/product/213/4952?from_cn_redirect=1). the default value is 0, which means no data disk purchase. for more restrictions, see the product document.
|
|
3283
3283
|
:type DiskSize: int
|
|
3284
|
-
:param _DiskType:
|
|
3284
|
+
:param _DiskType: Specifies the data disk type. for restrictions on data disk types, refer to [storage overview](https://www.tencentcloud.comom/document/product/213/4952?from_cn_redirect=1). valid values: <br /><li>LOCAL_BASIC: LOCAL disk</li> <li>LOCAL_SSD: LOCAL SSD</li><li>LOCAL_NVME: LOCAL NVME disk, which is closely related to InstanceType and cannot be specified</li><li>LOCAL_PRO: LOCAL HDD, which is closely related to InstanceType and cannot be specified</li><li>cloud_BASIC: BASIC cloud disk</li><li>cloud_PREMIUM: high-performance cloud block storage</li><li>cloud_SSD: SSD cloud disk</li><li>cloud_HSSD: enhanced SSD cloud disk</li> <li>cloud_TSSD: ultra-fast SSD cbs</li><li>cloud_BSSD: universal SSD cloud disk</li><br />default: LOCAL_BASIC.<br/><br />this parameter is invalid for the `ResizeInstanceDisk` api.
|
|
3285
3285
|
:type DiskType: str
|
|
3286
3286
|
:param _DiskId: Specifies the data disk ID.
|
|
3287
3287
|
This parameter currently only serves as a response parameter for query apis such as `DescribeInstances`, and cannot be used as an input parameter for write apis such as `RunInstances`.
|
|
@@ -3292,18 +3292,21 @@ This parameter currently only serves as a response parameter for query apis such
|
|
|
3292
3292
|
:type SnapshotId: str
|
|
3293
3293
|
:param _Encrypt: Specifies whether the data disk is encrypted. value range: <li>true: encrypted</li> <li>false: unencrypted</li><br/> default value: false<br/> this parameter is currently only used for the `RunInstances` api.
|
|
3294
3294
|
:type Encrypt: bool
|
|
3295
|
-
:param _KmsKeyId: Custom CMK
|
|
3295
|
+
:param _KmsKeyId: Custom CMK ID, value is UUID or similar to kms-abcd1234. used for encrypted cloud disk.
|
|
3296
3296
|
|
|
3297
3297
|
This parameter is currently only used for the `RunInstances` api.
|
|
3298
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
3298
3299
|
:type KmsKeyId: str
|
|
3299
|
-
:param _ThroughputPerformance:
|
|
3300
|
-
Currently only supports
|
|
3300
|
+
:param _ThroughputPerformance: Cloud disk performance (unit: MiB/s). specifies additional performance for cloud disks.
|
|
3301
|
+
Currently only supports extreme cbs (CLOUD_TSSD) and enhanced SSD CLOUD disk (CLOUD_HSSD).
|
|
3302
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
3301
3303
|
:type ThroughputPerformance: int
|
|
3302
|
-
:param _CdcId: Specifies the
|
|
3304
|
+
:param _CdcId: Specifies the dedicated cluster ID belonging to.
|
|
3305
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
3303
3306
|
:type CdcId: str
|
|
3304
|
-
:param _BurstPerformance:
|
|
3307
|
+
:param _BurstPerformance: Burstable performance.
|
|
3305
3308
|
|
|
3306
|
-
<B>Note: this
|
|
3309
|
+
<B>Note: this field is in beta test.</b>.
|
|
3307
3310
|
:type BurstPerformance: bool
|
|
3308
3311
|
:param _DiskName: Disk name, with a length not exceeding 128 characters.
|
|
3309
3312
|
:type DiskName: str
|
|
@@ -3333,7 +3336,7 @@ Currently only supports ultra-fast CLOUD disk (CLOUD_TSSD) and enhanced SSD CLOU
|
|
|
3333
3336
|
|
|
3334
3337
|
@property
|
|
3335
3338
|
def DiskType(self):
|
|
3336
|
-
r"""
|
|
3339
|
+
r"""Specifies the data disk type. for restrictions on data disk types, refer to [storage overview](https://www.tencentcloud.comom/document/product/213/4952?from_cn_redirect=1). valid values: <br /><li>LOCAL_BASIC: LOCAL disk</li> <li>LOCAL_SSD: LOCAL SSD</li><li>LOCAL_NVME: LOCAL NVME disk, which is closely related to InstanceType and cannot be specified</li><li>LOCAL_PRO: LOCAL HDD, which is closely related to InstanceType and cannot be specified</li><li>cloud_BASIC: BASIC cloud disk</li><li>cloud_PREMIUM: high-performance cloud block storage</li><li>cloud_SSD: SSD cloud disk</li><li>cloud_HSSD: enhanced SSD cloud disk</li> <li>cloud_TSSD: ultra-fast SSD cbs</li><li>cloud_BSSD: universal SSD cloud disk</li><br />default: LOCAL_BASIC.<br/><br />this parameter is invalid for the `ResizeInstanceDisk` api.
|
|
3337
3340
|
:rtype: str
|
|
3338
3341
|
"""
|
|
3339
3342
|
return self._DiskType
|
|
@@ -3389,9 +3392,10 @@ This parameter currently only serves as a response parameter for query apis such
|
|
|
3389
3392
|
|
|
3390
3393
|
@property
|
|
3391
3394
|
def KmsKeyId(self):
|
|
3392
|
-
r"""Custom CMK
|
|
3395
|
+
r"""Custom CMK ID, value is UUID or similar to kms-abcd1234. used for encrypted cloud disk.
|
|
3393
3396
|
|
|
3394
3397
|
This parameter is currently only used for the `RunInstances` api.
|
|
3398
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
3395
3399
|
:rtype: str
|
|
3396
3400
|
"""
|
|
3397
3401
|
return self._KmsKeyId
|
|
@@ -3402,8 +3406,9 @@ This parameter is currently only used for the `RunInstances` api.
|
|
|
3402
3406
|
|
|
3403
3407
|
@property
|
|
3404
3408
|
def ThroughputPerformance(self):
|
|
3405
|
-
r"""
|
|
3406
|
-
Currently only supports
|
|
3409
|
+
r"""Cloud disk performance (unit: MiB/s). specifies additional performance for cloud disks.
|
|
3410
|
+
Currently only supports extreme cbs (CLOUD_TSSD) and enhanced SSD CLOUD disk (CLOUD_HSSD).
|
|
3411
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
3407
3412
|
:rtype: int
|
|
3408
3413
|
"""
|
|
3409
3414
|
return self._ThroughputPerformance
|
|
@@ -3414,7 +3419,8 @@ Currently only supports ultra-fast CLOUD disk (CLOUD_TSSD) and enhanced SSD CLOU
|
|
|
3414
3419
|
|
|
3415
3420
|
@property
|
|
3416
3421
|
def CdcId(self):
|
|
3417
|
-
r"""Specifies the
|
|
3422
|
+
r"""Specifies the dedicated cluster ID belonging to.
|
|
3423
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
3418
3424
|
:rtype: str
|
|
3419
3425
|
"""
|
|
3420
3426
|
return self._CdcId
|
|
@@ -3425,9 +3431,9 @@ Currently only supports ultra-fast CLOUD disk (CLOUD_TSSD) and enhanced SSD CLOU
|
|
|
3425
3431
|
|
|
3426
3432
|
@property
|
|
3427
3433
|
def BurstPerformance(self):
|
|
3428
|
-
r"""
|
|
3434
|
+
r"""Burstable performance.
|
|
3429
3435
|
|
|
3430
|
-
<B>Note: this
|
|
3436
|
+
<B>Note: this field is in beta test.</b>.
|
|
3431
3437
|
:rtype: bool
|
|
3432
3438
|
"""
|
|
3433
3439
|
return self._BurstPerformance
|
|
@@ -7755,14 +7761,11 @@ class GPUInfo(AbstractModel):
|
|
|
7755
7761
|
|
|
7756
7762
|
def __init__(self):
|
|
7757
7763
|
r"""
|
|
7758
|
-
:param _GPUCount:
|
|
7759
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
7764
|
+
:param _GPUCount: Specifies the GPU count of the instance. a value less than 1 indicates VGPU type, and a value larger than 1 indicates GPU passthrough type.
|
|
7760
7765
|
:type GPUCount: float
|
|
7761
|
-
:param _GPUId: GPU address
|
|
7762
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
7766
|
+
:param _GPUId: Specifies the GPU address of the instance.
|
|
7763
7767
|
:type GPUId: list of str
|
|
7764
|
-
:param _GPUType: GPU type of the instance.
|
|
7765
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
7768
|
+
:param _GPUType: Specifies the GPU type of the instance.
|
|
7766
7769
|
:type GPUType: str
|
|
7767
7770
|
"""
|
|
7768
7771
|
self._GPUCount = None
|
|
@@ -7771,8 +7774,7 @@ Note: this field may return `null`, indicating that no valid value can be found.
|
|
|
7771
7774
|
|
|
7772
7775
|
@property
|
|
7773
7776
|
def GPUCount(self):
|
|
7774
|
-
r"""
|
|
7775
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
7777
|
+
r"""Specifies the GPU count of the instance. a value less than 1 indicates VGPU type, and a value larger than 1 indicates GPU passthrough type.
|
|
7776
7778
|
:rtype: float
|
|
7777
7779
|
"""
|
|
7778
7780
|
return self._GPUCount
|
|
@@ -7783,8 +7785,7 @@ Note: this field may return `null`, indicating that no valid value can be found.
|
|
|
7783
7785
|
|
|
7784
7786
|
@property
|
|
7785
7787
|
def GPUId(self):
|
|
7786
|
-
r"""GPU address
|
|
7787
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
7788
|
+
r"""Specifies the GPU address of the instance.
|
|
7788
7789
|
:rtype: list of str
|
|
7789
7790
|
"""
|
|
7790
7791
|
return self._GPUId
|
|
@@ -7795,8 +7796,7 @@ Note: this field may return `null`, indicating that no valid value can be found.
|
|
|
7795
7796
|
|
|
7796
7797
|
@property
|
|
7797
7798
|
def GPUType(self):
|
|
7798
|
-
r"""GPU type of the instance.
|
|
7799
|
-
Note: this field may return `null`, indicating that no valid value can be found.
|
|
7799
|
+
r"""Specifies the GPU type of the instance.
|
|
7800
7800
|
:rtype: str
|
|
7801
7801
|
"""
|
|
7802
7802
|
return self._GPUType
|
|
@@ -10274,9 +10274,9 @@ class Instance(AbstractModel):
|
|
|
10274
10274
|
:type InstanceType: str
|
|
10275
10275
|
:param _CPU: Number of CPU cores of the instance; unit: core
|
|
10276
10276
|
:type CPU: int
|
|
10277
|
-
:param _Memory:
|
|
10277
|
+
:param _Memory: Instance memory capacity. unit: GiB.
|
|
10278
10278
|
:type Memory: int
|
|
10279
|
-
:param _RestrictState: Instance status.
|
|
10279
|
+
:param _RestrictState: Instance business status. valid values:<br><li>NORMAL: indicates an instance in the NORMAL state</li><li>EXPIRED: indicates an EXPIRED instance</li><li>PROTECTIVELY_ISOLATED: PROTECTIVELY ISOLATED instance</li>.
|
|
10280
10280
|
:type RestrictState: str
|
|
10281
10281
|
:param _InstanceName: Instance name
|
|
10282
10282
|
:type InstanceName: str
|
|
@@ -10297,8 +10297,8 @@ Note: This field may return null, indicating that no valid value is found.
|
|
|
10297
10297
|
:type VirtualPrivateCloud: :class:`tencentcloud.cvm.v20170312.models.VirtualPrivateCloud`
|
|
10298
10298
|
:param _ImageId: `ID` of the image used to create the instance.
|
|
10299
10299
|
:type ImageId: str
|
|
10300
|
-
:param _RenewFlag:
|
|
10301
|
-
|
|
10300
|
+
:param _RenewFlag: AUTO-Renewal flag. valid values:<br><li>`NOTIFY_AND_MANUAL_RENEW`: indicates that a notification of impending expiration is made but AUTO-renewal is not performed</li><li>`NOTIFY_AND_AUTO_RENEW`: indicates that a notification of impending expiration is made AND AUTO-renewal is performed</li><li>`DISABLE_NOTIFY_AND_MANUAL_RENEW`: indicates that notification that it is about to expire is not made AND AUTO-renewal is not performed.
|
|
10301
|
+
Note: this field is null in postpaid mode.
|
|
10302
10302
|
:type RenewFlag: str
|
|
10303
10303
|
:param _CreatedTime: Creation time following the `ISO8601` standard and using `UTC` time in the format of `YYYY-MM-DDThh:mm:ssZ`.
|
|
10304
10304
|
:type CreatedTime: str
|
|
@@ -10310,23 +10310,24 @@ Note: This field may return null, indicating that no valid value is found.
|
|
|
10310
10310
|
:type SecurityGroupIds: list of str
|
|
10311
10311
|
:param _LoginSettings: Login settings of the instance. Currently only the key associated with the instance is returned.
|
|
10312
10312
|
:type LoginSettings: :class:`tencentcloud.cvm.v20170312.models.LoginSettings`
|
|
10313
|
-
:param _InstanceState: Instance
|
|
10313
|
+
:param _InstanceState: Instance status. for specific status types, see the instance status table (https://www.tencentcloud.comom/document/api/213/15753?from_cn_redirect=1#InstanceStatus).
|
|
10314
10314
|
:type InstanceState: str
|
|
10315
10315
|
:param _Tags: List of tags associated with the instance.
|
|
10316
10316
|
:type Tags: list of Tag
|
|
10317
|
-
:param _StopChargingMode:
|
|
10318
|
-
|
|
10317
|
+
:param _StopChargingMode: Shutdown billing mode of an instance.
|
|
10318
|
+
|
|
10319
|
+
Valid values: <br><li>KEEP_CHARGING: billing continues after shutdown</li><li>STOP_CHARGING: billing stops after shutdown</li><li>NOT_APPLICABLE: the instance is NOT shut down or stopping billing after shutdown is NOT APPLICABLE to the instance</li>.
|
|
10319
10320
|
:type StopChargingMode: str
|
|
10320
10321
|
:param _Uuid: Globally unique ID of the instance.
|
|
10321
10322
|
:type Uuid: str
|
|
10322
10323
|
:param _LatestOperation: Last operation of the instance, such as StopInstances or ResetInstance.
|
|
10323
10324
|
:type LatestOperation: str
|
|
10324
|
-
:param _LatestOperationState: The latest operation status of the instance.
|
|
10325
|
+
:param _LatestOperationState: The latest operation status of the instance. valid values:<br><li>SUCCESS: indicates that the operation succeeded</li><li>OPERATING: indicates that the operation is in progress</li><li>FAILED: indicates that the operation FAILED</li>.
|
|
10326
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
10325
10327
|
:type LatestOperationState: str
|
|
10326
10328
|
:param _LatestOperationRequestId: Unique request ID for the last operation of the instance.
|
|
10327
10329
|
:type LatestOperationRequestId: str
|
|
10328
|
-
:param _DisasterRecoverGroupId:
|
|
10329
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
|
10330
|
+
:param _DisasterRecoverGroupId: Spread placement group ID.
|
|
10330
10331
|
:type DisasterRecoverGroupId: str
|
|
10331
10332
|
:param _IPv6Addresses: IPv6 address of the instance.
|
|
10332
10333
|
Note: this field may return null, indicating that no valid value is obtained.
|
|
@@ -10334,23 +10335,20 @@ Note: this field may return null, indicating that no valid value is obtained.
|
|
|
10334
10335
|
:param _CamRoleName: CAM role name.
|
|
10335
10336
|
Note: this field may return null, indicating that no valid value is obtained.
|
|
10336
10337
|
:type CamRoleName: str
|
|
10337
|
-
:param _HpcClusterId:
|
|
10338
|
-
Note: this field may return null, indicating that no valid value was found.
|
|
10338
|
+
:param _HpcClusterId: High-performance computing cluster ID.
|
|
10339
10339
|
:type HpcClusterId: str
|
|
10340
10340
|
:param _RdmaIpAddresses: IP list of HPC cluster.
|
|
10341
10341
|
Note: this field may return null, indicating that no valid value was found.
|
|
10342
10342
|
:type RdmaIpAddresses: list of str
|
|
10343
|
-
:param _DedicatedClusterId:
|
|
10343
|
+
:param _DedicatedClusterId: Dedicated cluster ID where the instance is located.
|
|
10344
10344
|
:type DedicatedClusterId: str
|
|
10345
|
-
:param _IsolatedSource:
|
|
10346
|
-
Note: this field may return null, indicating that no valid value was found.
|
|
10345
|
+
:param _IsolatedSource: Instance isolation type. valid values:<br><li>ARREAR: indicates arrears isolation<br></li><li>EXPIRE: indicates isolation upon expiration<br></li><li>MANMADE: indicates voluntarily refunded isolation<br></li><li>NOTISOLATED: indicates unisolated<br></li>.
|
|
10347
10346
|
:type IsolatedSource: str
|
|
10348
|
-
:param _GPUInfo: GPU information.
|
|
10349
|
-
Note: this field may return null, indicating that no valid value was found.
|
|
10347
|
+
:param _GPUInfo: GPU information. if it is a gpu type instance, this value will be returned. for other type instances, it does not return.
|
|
10350
10348
|
:type GPUInfo: :class:`tencentcloud.cvm.v20170312.models.GPUInfo`
|
|
10351
10349
|
:param _LicenseType: Instance OS license type. Default value: `TencentCloud`
|
|
10352
10350
|
:type LicenseType: str
|
|
10353
|
-
:param _DisableApiTermination:
|
|
10351
|
+
:param _DisableApiTermination: Instance destruction protection flag indicates whether an instance is allowed to be deleted through an api. value ranges from:<br><li>true: indicates that instance protection is enabled, deletion through apis is not allowed</li><li>false: indicates that instance protection is disabled, allow passage</li><br>default value: false.
|
|
10354
10352
|
:type DisableApiTermination: bool
|
|
10355
10353
|
:param _DefaultLoginUser: Default login user
|
|
10356
10354
|
:type DefaultLoginUser: str
|
|
@@ -10359,8 +10357,9 @@ Note: this field may return null, indicating that no valid value was found.
|
|
|
10359
10357
|
:param _LatestOperationErrorMsg: Latest operation errors of the instance.
|
|
10360
10358
|
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
10361
10359
|
:type LatestOperationErrorMsg: str
|
|
10362
|
-
:param
|
|
10363
|
-
|
|
10360
|
+
:param _Metadata: Custom metadata. this parameter corresponds to the metadata information specified when creating a CVM. **note: in beta test**.
|
|
10361
|
+
:type Metadata: :class:`tencentcloud.cvm.v20170312.models.Metadata`
|
|
10362
|
+
:param _PublicIPv6Addresses: Specifies the public IPv6 address bound to the instance.
|
|
10364
10363
|
:type PublicIPv6Addresses: list of str
|
|
10365
10364
|
"""
|
|
10366
10365
|
self._Placement = None
|
|
@@ -10404,6 +10403,7 @@ Note: this field may return null, indicating that no valid value was found.
|
|
|
10404
10403
|
self._DefaultLoginUser = None
|
|
10405
10404
|
self._DefaultLoginPort = None
|
|
10406
10405
|
self._LatestOperationErrorMsg = None
|
|
10406
|
+
self._Metadata = None
|
|
10407
10407
|
self._PublicIPv6Addresses = None
|
|
10408
10408
|
|
|
10409
10409
|
@property
|
|
@@ -10452,7 +10452,7 @@ Note: this field may return null, indicating that no valid value was found.
|
|
|
10452
10452
|
|
|
10453
10453
|
@property
|
|
10454
10454
|
def Memory(self):
|
|
10455
|
-
r"""
|
|
10455
|
+
r"""Instance memory capacity. unit: GiB.
|
|
10456
10456
|
:rtype: int
|
|
10457
10457
|
"""
|
|
10458
10458
|
return self._Memory
|
|
@@ -10463,7 +10463,7 @@ Note: this field may return null, indicating that no valid value was found.
|
|
|
10463
10463
|
|
|
10464
10464
|
@property
|
|
10465
10465
|
def RestrictState(self):
|
|
10466
|
-
r"""Instance status.
|
|
10466
|
+
r"""Instance business status. valid values:<br><li>NORMAL: indicates an instance in the NORMAL state</li><li>EXPIRED: indicates an EXPIRED instance</li><li>PROTECTIVELY_ISOLATED: PROTECTIVELY ISOLATED instance</li>.
|
|
10467
10467
|
:rtype: str
|
|
10468
10468
|
"""
|
|
10469
10469
|
return self._RestrictState
|
|
@@ -10574,8 +10574,8 @@ Note: This field may return null, indicating that no valid value is found.
|
|
|
10574
10574
|
|
|
10575
10575
|
@property
|
|
10576
10576
|
def RenewFlag(self):
|
|
10577
|
-
r"""
|
|
10578
|
-
|
|
10577
|
+
r"""AUTO-Renewal flag. valid values:<br><li>`NOTIFY_AND_MANUAL_RENEW`: indicates that a notification of impending expiration is made but AUTO-renewal is not performed</li><li>`NOTIFY_AND_AUTO_RENEW`: indicates that a notification of impending expiration is made AND AUTO-renewal is performed</li><li>`DISABLE_NOTIFY_AND_MANUAL_RENEW`: indicates that notification that it is about to expire is not made AND AUTO-renewal is not performed.
|
|
10578
|
+
Note: this field is null in postpaid mode.
|
|
10579
10579
|
:rtype: str
|
|
10580
10580
|
"""
|
|
10581
10581
|
return self._RenewFlag
|
|
@@ -10641,7 +10641,7 @@ Note: This field may return null, indicating that no valid value is found.
|
|
|
10641
10641
|
|
|
10642
10642
|
@property
|
|
10643
10643
|
def InstanceState(self):
|
|
10644
|
-
r"""Instance
|
|
10644
|
+
r"""Instance status. for specific status types, see the instance status table (https://www.tencentcloud.comom/document/api/213/15753?from_cn_redirect=1#InstanceStatus).
|
|
10645
10645
|
:rtype: str
|
|
10646
10646
|
"""
|
|
10647
10647
|
return self._InstanceState
|
|
@@ -10663,8 +10663,9 @@ Note: This field may return null, indicating that no valid value is found.
|
|
|
10663
10663
|
|
|
10664
10664
|
@property
|
|
10665
10665
|
def StopChargingMode(self):
|
|
10666
|
-
r"""
|
|
10667
|
-
|
|
10666
|
+
r"""Shutdown billing mode of an instance.
|
|
10667
|
+
|
|
10668
|
+
Valid values: <br><li>KEEP_CHARGING: billing continues after shutdown</li><li>STOP_CHARGING: billing stops after shutdown</li><li>NOT_APPLICABLE: the instance is NOT shut down or stopping billing after shutdown is NOT APPLICABLE to the instance</li>.
|
|
10668
10669
|
:rtype: str
|
|
10669
10670
|
"""
|
|
10670
10671
|
return self._StopChargingMode
|
|
@@ -10697,7 +10698,8 @@ Valid values: <br><li>KEEP_CHARGING: billing continues after shutdown <br><li>ST
|
|
|
10697
10698
|
|
|
10698
10699
|
@property
|
|
10699
10700
|
def LatestOperationState(self):
|
|
10700
|
-
r"""The latest operation status of the instance.
|
|
10701
|
+
r"""The latest operation status of the instance. valid values:<br><li>SUCCESS: indicates that the operation succeeded</li><li>OPERATING: indicates that the operation is in progress</li><li>FAILED: indicates that the operation FAILED</li>.
|
|
10702
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
10701
10703
|
:rtype: str
|
|
10702
10704
|
"""
|
|
10703
10705
|
return self._LatestOperationState
|
|
@@ -10719,8 +10721,7 @@ Valid values: <br><li>KEEP_CHARGING: billing continues after shutdown <br><li>ST
|
|
|
10719
10721
|
|
|
10720
10722
|
@property
|
|
10721
10723
|
def DisasterRecoverGroupId(self):
|
|
10722
|
-
r"""
|
|
10723
|
-
Note: this field may return null, indicating that no valid value is obtained.
|
|
10724
|
+
r"""Spread placement group ID.
|
|
10724
10725
|
:rtype: str
|
|
10725
10726
|
"""
|
|
10726
10727
|
return self._DisasterRecoverGroupId
|
|
@@ -10755,8 +10756,7 @@ Note: this field may return null, indicating that no valid value is obtained.
|
|
|
10755
10756
|
|
|
10756
10757
|
@property
|
|
10757
10758
|
def HpcClusterId(self):
|
|
10758
|
-
r"""
|
|
10759
|
-
Note: this field may return null, indicating that no valid value was found.
|
|
10759
|
+
r"""High-performance computing cluster ID.
|
|
10760
10760
|
:rtype: str
|
|
10761
10761
|
"""
|
|
10762
10762
|
return self._HpcClusterId
|
|
@@ -10779,7 +10779,7 @@ Note: this field may return null, indicating that no valid value was found.
|
|
|
10779
10779
|
|
|
10780
10780
|
@property
|
|
10781
10781
|
def DedicatedClusterId(self):
|
|
10782
|
-
r"""
|
|
10782
|
+
r"""Dedicated cluster ID where the instance is located.
|
|
10783
10783
|
:rtype: str
|
|
10784
10784
|
"""
|
|
10785
10785
|
return self._DedicatedClusterId
|
|
@@ -10790,8 +10790,7 @@ Note: this field may return null, indicating that no valid value was found.
|
|
|
10790
10790
|
|
|
10791
10791
|
@property
|
|
10792
10792
|
def IsolatedSource(self):
|
|
10793
|
-
r"""
|
|
10794
|
-
Note: this field may return null, indicating that no valid value was found.
|
|
10793
|
+
r"""Instance isolation type. valid values:<br><li>ARREAR: indicates arrears isolation<br></li><li>EXPIRE: indicates isolation upon expiration<br></li><li>MANMADE: indicates voluntarily refunded isolation<br></li><li>NOTISOLATED: indicates unisolated<br></li>.
|
|
10795
10794
|
:rtype: str
|
|
10796
10795
|
"""
|
|
10797
10796
|
return self._IsolatedSource
|
|
@@ -10802,8 +10801,7 @@ Note: this field may return null, indicating that no valid value was found.
|
|
|
10802
10801
|
|
|
10803
10802
|
@property
|
|
10804
10803
|
def GPUInfo(self):
|
|
10805
|
-
r"""GPU information.
|
|
10806
|
-
Note: this field may return null, indicating that no valid value was found.
|
|
10804
|
+
r"""GPU information. if it is a gpu type instance, this value will be returned. for other type instances, it does not return.
|
|
10807
10805
|
:rtype: :class:`tencentcloud.cvm.v20170312.models.GPUInfo`
|
|
10808
10806
|
"""
|
|
10809
10807
|
return self._GPUInfo
|
|
@@ -10825,7 +10823,7 @@ Note: this field may return null, indicating that no valid value was found.
|
|
|
10825
10823
|
|
|
10826
10824
|
@property
|
|
10827
10825
|
def DisableApiTermination(self):
|
|
10828
|
-
r"""
|
|
10826
|
+
r"""Instance destruction protection flag indicates whether an instance is allowed to be deleted through an api. value ranges from:<br><li>true: indicates that instance protection is enabled, deletion through apis is not allowed</li><li>false: indicates that instance protection is disabled, allow passage</li><br>default value: false.
|
|
10829
10827
|
:rtype: bool
|
|
10830
10828
|
"""
|
|
10831
10829
|
return self._DisableApiTermination
|
|
@@ -10868,10 +10866,20 @@ Note: This field may return `null`, indicating that no valid values can be obtai
|
|
|
10868
10866
|
def LatestOperationErrorMsg(self, LatestOperationErrorMsg):
|
|
10869
10867
|
self._LatestOperationErrorMsg = LatestOperationErrorMsg
|
|
10870
10868
|
|
|
10869
|
+
@property
|
|
10870
|
+
def Metadata(self):
|
|
10871
|
+
r"""Custom metadata. this parameter corresponds to the metadata information specified when creating a CVM. **note: in beta test**.
|
|
10872
|
+
:rtype: :class:`tencentcloud.cvm.v20170312.models.Metadata`
|
|
10873
|
+
"""
|
|
10874
|
+
return self._Metadata
|
|
10875
|
+
|
|
10876
|
+
@Metadata.setter
|
|
10877
|
+
def Metadata(self, Metadata):
|
|
10878
|
+
self._Metadata = Metadata
|
|
10879
|
+
|
|
10871
10880
|
@property
|
|
10872
10881
|
def PublicIPv6Addresses(self):
|
|
10873
|
-
r"""
|
|
10874
|
-
Note: this field may return null, indicating that no valid value was found.
|
|
10882
|
+
r"""Specifies the public IPv6 address bound to the instance.
|
|
10875
10883
|
:rtype: list of str
|
|
10876
10884
|
"""
|
|
10877
10885
|
return self._PublicIPv6Addresses
|
|
@@ -10945,6 +10953,9 @@ Note: this field may return null, indicating that no valid value was found.
|
|
|
10945
10953
|
self._DefaultLoginUser = params.get("DefaultLoginUser")
|
|
10946
10954
|
self._DefaultLoginPort = params.get("DefaultLoginPort")
|
|
10947
10955
|
self._LatestOperationErrorMsg = params.get("LatestOperationErrorMsg")
|
|
10956
|
+
if params.get("Metadata") is not None:
|
|
10957
|
+
self._Metadata = Metadata()
|
|
10958
|
+
self._Metadata._deserialize(params.get("Metadata"))
|
|
10948
10959
|
self._PublicIPv6Addresses = params.get("PublicIPv6Addresses")
|
|
10949
10960
|
memeber_set = set(params.keys())
|
|
10950
10961
|
for name, value in vars(self).items():
|
|
@@ -11623,29 +11634,34 @@ class InternetAccessible(AbstractModel):
|
|
|
11623
11634
|
:type PublicIpAssigned: bool
|
|
11624
11635
|
:param _BandwidthPackageId: Bandwidth package ID. it can be obtained through the `BandwidthPackageId` in the return value from the DescribeBandwidthPackages api. this parameter is used as an input parameter only in the RunInstances api.
|
|
11625
11636
|
:type BandwidthPackageId: str
|
|
11626
|
-
:param _InternetServiceProvider:
|
|
11627
|
-
|
|
11628
|
-
For a user
|
|
11629
|
-
|
|
11630
|
-
|
|
11631
|
-
|
|
11632
|
-
|
|
11637
|
+
:param _InternetServiceProvider: Line type. for details on various types of lines and supported regions, refer to [EIP IP address types](https://www.tencentcloud.comom/document/product/1199/41646?from_cn_redirect=1). default value: BGP.
|
|
11638
|
+
<Li>BGP: specifies the general bgp line.</li>.
|
|
11639
|
+
For a user with static single-line IP allowlist enabled, valid values include:.
|
|
11640
|
+
<Li>CMCC: china mobile.</li>.
|
|
11641
|
+
<Li>CTCC: china telecom</li>.
|
|
11642
|
+
<Li>CUCC: china unicom</li>.
|
|
11643
|
+
Note: The static single-line IP is only supported in some regions.
|
|
11633
11644
|
|
|
11634
|
-
<li> WanIP: Ordinary public IP address. </li> <li> HighQualityEIP: High Quality EIP is supported only in Singapore and Hong Kong. </li> <li> AntiDDoSEIP: Anti-DDoS IP is supported only in specific regions. For details, see [EIP Product Overview](https://www.tencentcloud.com/zh/document/product/213/5733). </li>
|
|
11635
|
-
Specify the type of public IPv4 address to assign a public IPv4 address to the resource. HighQualityEIP and AntiDDoSEIP features are gradually released in select regions.
|
|
11636
|
-
This feature is currently in gradually released phase. To access it, please [contact us](https://console.tencentcloud.com/workorder).
|
|
11637
|
-
:type IPv4AddressType: str
|
|
11638
|
-
:param _IPv6AddressType: Indicates the type of EIPv6. Valid values:
|
|
11639
11645
|
|
|
11640
|
-
|
|
11641
|
-
|
|
11642
|
-
Note: Contact the product team to enable the dedicated IPv6 allowlist. The dedicated IPv6 is only supported in some regions.
|
|
11646
|
+
:type InternetServiceProvider: str
|
|
11647
|
+
:param _IPv4AddressType: Specifies the public IP type.
|
|
11643
11648
|
|
|
11644
|
-
|
|
11649
|
+
<Li>WanIP: specifies the public ip address.</li>.
|
|
11650
|
+
<Li>HighQualityEIP: specifies a high quality ip. high quality ip is only supported in Singapore and hong kong (china).</li>.
|
|
11651
|
+
<li> AntiDDoSEIP: specifies the anti-ddos eip. only partial regions support anti-ddos eip. details visible in the [elastic IP product overview](https://www.tencentcloud.comom/document/product/1199/41646?from_cn_redirect=1).</li>.
|
|
11652
|
+
If needed, assign a public IPv4 address to the resource by specifying the IPv4 address type.
|
|
11645
11653
|
|
|
11646
|
-
This feature is
|
|
11654
|
+
This feature is in beta test in selected regions. submit a ticket for consultation (https://console.cloud.tencent.com/workorder/category) if needed.
|
|
11655
|
+
:type IPv4AddressType: str
|
|
11656
|
+
:param _IPv6AddressType: Indicates the type of elastic public IPv6.
|
|
11657
|
+
<Li>EIPv6: elastic ip version 6.</li>.
|
|
11658
|
+
<Li>HighQualityEIPv6: specifies the high quality ipv6. highqualityeipv6 is only supported in hong kong (china).</li>.
|
|
11659
|
+
If needed, assign an elastic IPv6 address for resource allocation.
|
|
11660
|
+
|
|
11661
|
+
This feature is in beta test in selected regions. submit a ticket for consultation (https://console.cloud.tencent.com/workorder/category) if needed.
|
|
11647
11662
|
:type IPv6AddressType: str
|
|
11648
|
-
:param _AntiDDoSPackageId:
|
|
11663
|
+
:param _AntiDDoSPackageId: DDoS protection package unique ID. this field is required when applying for a ddos protection IP.
|
|
11664
|
+
|
|
11649
11665
|
:type AntiDDoSPackageId: str
|
|
11650
11666
|
"""
|
|
11651
11667
|
self._InternetChargeType = None
|
|
@@ -11706,11 +11722,15 @@ This feature is currently in gradually released phase. To access it, please [con
|
|
|
11706
11722
|
|
|
11707
11723
|
@property
|
|
11708
11724
|
def InternetServiceProvider(self):
|
|
11709
|
-
r"""
|
|
11710
|
-
|
|
11711
|
-
For a user
|
|
11712
|
-
|
|
11713
|
-
|
|
11725
|
+
r"""Line type. for details on various types of lines and supported regions, refer to [EIP IP address types](https://www.tencentcloud.comom/document/product/1199/41646?from_cn_redirect=1). default value: BGP.
|
|
11726
|
+
<Li>BGP: specifies the general bgp line.</li>.
|
|
11727
|
+
For a user with static single-line IP allowlist enabled, valid values include:.
|
|
11728
|
+
<Li>CMCC: china mobile.</li>.
|
|
11729
|
+
<Li>CTCC: china telecom</li>.
|
|
11730
|
+
<Li>CUCC: china unicom</li>.
|
|
11731
|
+
Note: The static single-line IP is only supported in some regions.
|
|
11732
|
+
|
|
11733
|
+
|
|
11714
11734
|
:rtype: str
|
|
11715
11735
|
"""
|
|
11716
11736
|
return self._InternetServiceProvider
|
|
@@ -11721,11 +11741,14 @@ Note: Only certain regions support static single-line IP addresses.
|
|
|
11721
11741
|
|
|
11722
11742
|
@property
|
|
11723
11743
|
def IPv4AddressType(self):
|
|
11724
|
-
r"""
|
|
11744
|
+
r"""Specifies the public IP type.
|
|
11725
11745
|
|
|
11726
|
-
<
|
|
11727
|
-
|
|
11728
|
-
|
|
11746
|
+
<Li>WanIP: specifies the public ip address.</li>.
|
|
11747
|
+
<Li>HighQualityEIP: specifies a high quality ip. high quality ip is only supported in Singapore and hong kong (china).</li>.
|
|
11748
|
+
<li> AntiDDoSEIP: specifies the anti-ddos eip. only partial regions support anti-ddos eip. details visible in the [elastic IP product overview](https://www.tencentcloud.comom/document/product/1199/41646?from_cn_redirect=1).</li>.
|
|
11749
|
+
If needed, assign a public IPv4 address to the resource by specifying the IPv4 address type.
|
|
11750
|
+
|
|
11751
|
+
This feature is in beta test in selected regions. submit a ticket for consultation (https://console.cloud.tencent.com/workorder/category) if needed.
|
|
11729
11752
|
:rtype: str
|
|
11730
11753
|
"""
|
|
11731
11754
|
return self._IPv4AddressType
|
|
@@ -11736,15 +11759,12 @@ This feature is currently in gradually released phase. To access it, please [con
|
|
|
11736
11759
|
|
|
11737
11760
|
@property
|
|
11738
11761
|
def IPv6AddressType(self):
|
|
11739
|
-
r"""Indicates the type of
|
|
11740
|
-
|
|
11741
|
-
<
|
|
11742
|
-
|
|
11743
|
-
Note: Contact the product team to enable the dedicated IPv6 allowlist. The dedicated IPv6 is only supported in some regions.
|
|
11744
|
-
|
|
11745
|
-
Default: `EIPv6`
|
|
11762
|
+
r"""Indicates the type of elastic public IPv6.
|
|
11763
|
+
<Li>EIPv6: elastic ip version 6.</li>.
|
|
11764
|
+
<Li>HighQualityEIPv6: specifies the high quality ipv6. highqualityeipv6 is only supported in hong kong (china).</li>.
|
|
11765
|
+
If needed, assign an elastic IPv6 address for resource allocation.
|
|
11746
11766
|
|
|
11747
|
-
This feature is
|
|
11767
|
+
This feature is in beta test in selected regions. submit a ticket for consultation (https://console.cloud.tencent.com/workorder/category) if needed.
|
|
11748
11768
|
:rtype: str
|
|
11749
11769
|
"""
|
|
11750
11770
|
return self._IPv6AddressType
|
|
@@ -11755,7 +11775,8 @@ This feature is currently in gradually released phase. To access it, please [con
|
|
|
11755
11775
|
|
|
11756
11776
|
@property
|
|
11757
11777
|
def AntiDDoSPackageId(self):
|
|
11758
|
-
r"""
|
|
11778
|
+
r"""DDoS protection package unique ID. this field is required when applying for a ddos protection IP.
|
|
11779
|
+
|
|
11759
11780
|
:rtype: str
|
|
11760
11781
|
"""
|
|
11761
11782
|
return self._AntiDDoSPackageId
|
|
@@ -13324,10 +13345,9 @@ class MetadataItem(AbstractModel):
|
|
|
13324
13345
|
|
|
13325
13346
|
def __init__(self):
|
|
13326
13347
|
r"""
|
|
13327
|
-
:param _Key: Custom metadata key
|
|
13328
|
-
|
|
13348
|
+
:param _Key: Custom metadata key, consisting of uppercase letters (A-Z), lowercase letters (A-Z), digits (0-9), underscores (_), or hyphens (-), with a size limit of 128 bytes.
|
|
13329
13349
|
:type Key: str
|
|
13330
|
-
:param _Value:
|
|
13350
|
+
:param _Value: Custom metadata value. The upper limit of message size is 256 KB.
|
|
13331
13351
|
:type Value: str
|
|
13332
13352
|
"""
|
|
13333
13353
|
self._Key = None
|
|
@@ -13335,8 +13355,7 @@ class MetadataItem(AbstractModel):
|
|
|
13335
13355
|
|
|
13336
13356
|
@property
|
|
13337
13357
|
def Key(self):
|
|
13338
|
-
r"""Custom metadata key
|
|
13339
|
-
|
|
13358
|
+
r"""Custom metadata key, consisting of uppercase letters (A-Z), lowercase letters (A-Z), digits (0-9), underscores (_), or hyphens (-), with a size limit of 128 bytes.
|
|
13340
13359
|
:rtype: str
|
|
13341
13360
|
"""
|
|
13342
13361
|
return self._Key
|
|
@@ -13347,7 +13366,7 @@ class MetadataItem(AbstractModel):
|
|
|
13347
13366
|
|
|
13348
13367
|
@property
|
|
13349
13368
|
def Value(self):
|
|
13350
|
-
r"""
|
|
13369
|
+
r"""Custom metadata value. The upper limit of message size is 256 KB.
|
|
13351
13370
|
:rtype: str
|
|
13352
13371
|
"""
|
|
13353
13372
|
return self._Value
|
|
@@ -14920,9 +14939,9 @@ class Placement(AbstractModel):
|
|
|
14920
14939
|
r"""
|
|
14921
14940
|
:param _Zone: ID of the availability zone where the instance resides. You can call the [DescribeZones](https://intl.cloud.tencent.com/document/product/213/35071) API and obtain the ID in the returned `Zone` field.
|
|
14922
14941
|
:type Zone: str
|
|
14923
|
-
:param _ProjectId:
|
|
14942
|
+
:param _ProjectId: Instance'S project ID. obtain this parameter by calling the `ProjectId` field in the return value of [DescribeProject](https://www.tencentcloud.comom/document/api/651/78725?from_cn_redirect=1). default value 0 means default project.
|
|
14924
14943
|
:type ProjectId: int
|
|
14925
|
-
:param _HostIds: ID list
|
|
14944
|
+
:param _HostIds: Specifies the dedicated host ID list for instance ownership, only used for input parameters. if you purchase a dedicated host and specify this parameter, instances you purchase will be randomly deployed on these dedicated hosts. obtain this parameter by calling the `HostId` field in the return value of [DescribeHosts](https://www.tencentcloud.comom/document/api/213/16474?from_cn_redirect=1).
|
|
14926
14945
|
:type HostIds: list of str
|
|
14927
14946
|
:param _HostId: The ID of the CDH to which the instance belongs, only used as an output parameter.
|
|
14928
14947
|
:type HostId: str
|
|
@@ -14945,7 +14964,7 @@ class Placement(AbstractModel):
|
|
|
14945
14964
|
|
|
14946
14965
|
@property
|
|
14947
14966
|
def ProjectId(self):
|
|
14948
|
-
r"""
|
|
14967
|
+
r"""Instance'S project ID. obtain this parameter by calling the `ProjectId` field in the return value of [DescribeProject](https://www.tencentcloud.comom/document/api/651/78725?from_cn_redirect=1). default value 0 means default project.
|
|
14949
14968
|
:rtype: int
|
|
14950
14969
|
"""
|
|
14951
14970
|
return self._ProjectId
|
|
@@ -14956,7 +14975,7 @@ class Placement(AbstractModel):
|
|
|
14956
14975
|
|
|
14957
14976
|
@property
|
|
14958
14977
|
def HostIds(self):
|
|
14959
|
-
r"""ID list
|
|
14978
|
+
r"""Specifies the dedicated host ID list for instance ownership, only used for input parameters. if you purchase a dedicated host and specify this parameter, instances you purchase will be randomly deployed on these dedicated hosts. obtain this parameter by calling the `HostId` field in the return value of [DescribeHosts](https://www.tencentcloud.comom/document/api/213/16474?from_cn_redirect=1).
|
|
14960
14979
|
:rtype: list of str
|
|
14961
14980
|
"""
|
|
14962
14981
|
return self._HostIds
|
|
@@ -18643,12 +18662,13 @@ class SystemDisk(AbstractModel):
|
|
|
18643
18662
|
<li>CLOUD_TSSD: Tremendous SSD</li>
|
|
18644
18663
|
Default value: Current disk types with inventory available.
|
|
18645
18664
|
:type DiskType: str
|
|
18646
|
-
:param _DiskId:
|
|
18647
|
-
|
|
18665
|
+
:param _DiskId: System disk ID.
|
|
18666
|
+
Currently, this parameter is only used for response parameters in query apis such as [DescribeInstances](https://www.tencentcloud.comom/document/product/213/15728?from_cn_redirect=1) and is not applicable to request parameters in write apis such as [RunInstances](https://www.tencentcloud.comom/document/product/213/15730?from_cn_redirect=1).
|
|
18648
18667
|
:type DiskId: str
|
|
18649
18668
|
:param _DiskSize: System disk size; unit: GiB; default value: 50 GiB.
|
|
18650
18669
|
:type DiskSize: int
|
|
18651
|
-
:param _CdcId: Specifies the
|
|
18670
|
+
:param _CdcId: Specifies the dedicated cluster ID belonging to.
|
|
18671
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
18652
18672
|
:type CdcId: str
|
|
18653
18673
|
:param _DiskName: Disk name, which specifies a length not exceeding 128 characters.
|
|
18654
18674
|
:type DiskName: str
|
|
@@ -18681,8 +18701,8 @@ Default value: Current disk types with inventory available.
|
|
|
18681
18701
|
|
|
18682
18702
|
@property
|
|
18683
18703
|
def DiskId(self):
|
|
18684
|
-
r"""
|
|
18685
|
-
|
|
18704
|
+
r"""System disk ID.
|
|
18705
|
+
Currently, this parameter is only used for response parameters in query apis such as [DescribeInstances](https://www.tencentcloud.comom/document/product/213/15728?from_cn_redirect=1) and is not applicable to request parameters in write apis such as [RunInstances](https://www.tencentcloud.comom/document/product/213/15730?from_cn_redirect=1).
|
|
18686
18706
|
:rtype: str
|
|
18687
18707
|
"""
|
|
18688
18708
|
return self._DiskId
|
|
@@ -18704,7 +18724,8 @@ This parameter currently only serves as a response parameter for query apis such
|
|
|
18704
18724
|
|
|
18705
18725
|
@property
|
|
18706
18726
|
def CdcId(self):
|
|
18707
|
-
r"""Specifies the
|
|
18727
|
+
r"""Specifies the dedicated cluster ID belonging to.
|
|
18728
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
18708
18729
|
:rtype: str
|
|
18709
18730
|
"""
|
|
18710
18731
|
return self._CdcId
|
|
@@ -19008,7 +19029,7 @@ class VirtualPrivateCloud(AbstractModel):
|
|
|
19008
19029
|
|
|
19009
19030
|
def __init__(self):
|
|
19010
19031
|
r"""
|
|
19011
|
-
:param _VpcId:
|
|
19032
|
+
:param _VpcId: vpc ID, such as `vpc-xxx`. valid vpc ids can be queried by logging in to the console (https://console.cloud.tencent.com/vpc/vpc?rid=1) or by calling the API [DescribeVpcs](https://www.tencentcloud.comom/document/product/215/15778?from_cn_redirect=1) and obtaining the `VpcId` field from the API response. if both VpcId and SubnetId are input as `DEFAULT` when creating an instance, the DEFAULT vpc network will be forcibly used.
|
|
19012
19033
|
:type VpcId: str
|
|
19013
19034
|
:param _SubnetId: vpc subnet ID, in the form of `subnet-xxx`. valid vpc subnet ids can be queried by logging in to the console (https://console.cloud.tencent.com/vpc/subnet?rid=1); or they can be obtained from the `SubnetId` field in the API response by calling the DescribeSubnets API (https://intl.cloud.tencent.com/document/product/215/15784?from_cn_redirect=1). if SubnetId and VpcId are both input as `DEFAULT` when creating an instance, the DEFAULT vpc network will be forcibly used.
|
|
19014
19035
|
:type SubnetId: str
|
|
@@ -19028,7 +19049,7 @@ If IPv6AddressType is specified under InternetAccessible, this parameter must no
|
|
|
19028
19049
|
|
|
19029
19050
|
@property
|
|
19030
19051
|
def VpcId(self):
|
|
19031
|
-
r"""
|
|
19052
|
+
r"""vpc ID, such as `vpc-xxx`. valid vpc ids can be queried by logging in to the console (https://console.cloud.tencent.com/vpc/vpc?rid=1) or by calling the API [DescribeVpcs](https://www.tencentcloud.comom/document/product/215/15778?from_cn_redirect=1) and obtaining the `VpcId` field from the API response. if both VpcId and SubnetId are input as `DEFAULT` when creating an instance, the DEFAULT vpc network will be forcibly used.
|
|
19032
19053
|
:rtype: str
|
|
19033
19054
|
"""
|
|
19034
19055
|
return self._VpcId
|