ALIYUN::ENS::Disk类型用于创建一块按量付费或包年包月数据盘。
语法
{
"Type": "ALIYUN::ENS::Disk",
"Properties": {
"SnapshotId": String,
"Category": String,
"KMSKeyId": String,
"Encrypted": Boolean,
"InstanceChargeType": String,
"Size": String,
"DiskName": String,
"EnsRegionId": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
SnapshotId | String | 否 | 否 | 创建云盘使用的快照。 | SnapshotId参数和Size参数存在以下限制:
|
Category | String | 是 | 否 | 磁盘种类。 | 取值:
|
KMSKeyId | String | 否 | 否 | 云盘使用的KMS密钥ID。 | 如果Encrypted置为true,KMSKeyId为空时则使用服务默认密钥。 |
Encrypted | Boolean | 否 | 否 | 是否加密云盘。 | 取值:
|
InstanceChargeType | String | 是 | 否 | 实例付费方式。 | 当前仅支持PostPaid(按量付费)。 |
Size | String | 是 | 是 | 磁盘大小。 | 单位:GiB。 |
DiskName | String | 否 | 否 | 磁盘名称。 | 无 |
EnsRegionId | String | 是 | 否 | 节点ID。 | 无 |
返回值
Fn::GetAtt
DiskId:实例ID。
示例
YAML
格式ROSTemplateFormatVersion: '2015-09-01' Parameters: Category: Description: en: 'The category of the disk. Valid values: cloud_efficiency: ultra disk. cloud_ssd: all-flash disk.' Required: true Type: String DiskName: Description: en: The name of the disk. Required: false Type: String Encrypted: Description: en: 'Specifies whether to encrypt the new system disk. Valid values: true false (default): no' Required: false Type: Boolean EnsRegionId: Description: en: The ID of the edge node. Required: true Type: String InstanceChargeType: AssociationPropertyMetadata: LocaleKey: InstanceChargeType Default: PostPaid Description: en: The billing method of the instance. Set the value to PostPaid. Required: true Type: String KMSKeyId: Description: en: 'The ID of the Key Management Service (KMS) key that is used by the cloud disk. Note If you set the Encrypted parameter to true, the default service key is used when the KMSKeyId parameter is empty.' Required: false Type: String Size: Description: en: 'The size of the disk. Unit: GiB.' Required: true Type: String SnapshotId: Description: en: 'The ID of the snapshot that you want to use to create the disk. The following limits apply to the SnapshotId and Size parameters: If the size of the snapshot specified by SnapshotId is greater than the specified Size value, the size of the created disk is equal to the specified snapshot size. If the size of the snapshot specified by SnapshotId is smaller than the specified Size value, the size of the created disk is equal to the specified Size value.' Required: false Type: String Resources: Disk: Properties: Category: Ref: Category DiskName: Ref: DiskName Encrypted: Ref: Encrypted EnsRegionId: Ref: EnsRegionId InstanceChargeType: Ref: InstanceChargeType KMSKeyId: Ref: KMSKeyId Size: Ref: Size SnapshotId: Ref: SnapshotId Type: ALIYUN::ENS::Disk Outputs: DiskId: Description: The ID of the instance. Value: Fn::GetAtt: - Disk - DiskId
JSON
格式{ "ROSTemplateFormatVersion": "2015-09-01", "Parameters": { "SnapshotId": { "Type": "String", "Description": { "en": "The ID of the snapshot that you want to use to create the disk.\nThe following limits apply to the SnapshotId and Size parameters:\nIf the size of the snapshot specified by SnapshotId is greater than the specified Size value, the size of the created disk is equal to the specified snapshot size.\nIf the size of the snapshot specified by SnapshotId is smaller than the specified Size value, the size of the created disk is equal to the specified Size value." }, "Required": false }, "Category": { "Type": "String", "Description": { "en": "The category of the disk. Valid values:\ncloud_efficiency: ultra disk.\ncloud_ssd: all-flash disk." }, "Required": true }, "KMSKeyId": { "Type": "String", "Description": { "en": "The ID of the Key Management Service (KMS) key that is used by the cloud disk.\nNote If you set the Encrypted parameter to true, the default service key is used when the KMSKeyId parameter is empty." }, "Required": false }, "Encrypted": { "Type": "Boolean", "Description": { "en": "Specifies whether to encrypt the new system disk. Valid values:\ntrue\nfalse (default): no" }, "Required": false }, "InstanceChargeType": { "AssociationPropertyMetadata": { "LocaleKey": "InstanceChargeType" }, "Type": "String", "Description": { "en": "The billing method of the instance. Set the value to PostPaid." }, "Required": true, "Default": "PostPaid" }, "Size": { "Type": "String", "Description": { "en": "The size of the disk. Unit: GiB." }, "Required": true }, "DiskName": { "Type": "String", "Description": { "en": "The name of the disk." }, "Required": false }, "EnsRegionId": { "Type": "String", "Description": { "en": "The ID of the edge node." }, "Required": true } }, "Resources": { "Disk": { "Type": "ALIYUN::ENS::Disk", "Properties": { "SnapshotId": { "Ref": "SnapshotId" }, "Category": { "Ref": "Category" }, "KMSKeyId": { "Ref": "KMSKeyId" }, "Encrypted": { "Ref": "Encrypted" }, "InstanceChargeType": { "Ref": "InstanceChargeType" }, "Size": { "Ref": "Size" }, "DiskName": { "Ref": "DiskName" }, "EnsRegionId": { "Ref": "EnsRegionId" } } } }, "Outputs": { "DiskId": { "Description": "The ID of the instance.", "Value": { "Fn::GetAtt": [ "Disk", "DiskId" ] } } } }