DATASOURCE::ECS::Zones is used to query zones.
Syntax
{
"Type": "DATASOURCE::ECS::Zones",
"Properties": {
"IoOptimized": String,
"InstanceChargeType": String,
"ResourceType": String,
"DataDiskCategory": String,
"InstanceType": String,
"SystemDiskCategory": String
}
}
Properties
Property | Type | Required | Editable | Description | Constraint |
IoOptimized | String | No | Yes | Specifies whether the instance is an I/O optimized instance. | Default value: optimized. Valid values:
|
InstanceChargeType | String | No | Yes | The billing method of the resource that is deployed in the zone. | Default value: PostPaid. Valid values:
|
ResourceType | String | No | Yes | The type of the resource. | Valid values:
|
DataDiskCategory | String | No | Yes | The category of the data disk. | Valid values:
|
InstanceType | String | No | Yes | The type of the ECS instance. | None. |
SystemDiskCategory | String | No | Yes | The category of the system disk. | Valid values:
|
Return values (Fn::GetAtt)
- ZoneIds: the IDs of the zones.
- Zones: details of the zones.
Property | Type | Description | Constraint |
ZoneIds | List | The IDs of the zones. | Example: ['cn-hangzhou-k','cn-hangzhou-i'] . |
Zones | List | Details of the zones. | None. |
ZoneId | String | The ID of the zone. | None. |
Status | String | The state of the resource. | Valid values:
|
StatusCategory | String | The inventory state of the resource. | Valid values:
|
RegionId | String | The ID of the region to which the zone belongs. | None. |
Examples
JSON
format
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"InstanceChargeType": {
"Type": "String",
"Description": "The billing method of the resource. For more information, see Billing overview. Valid values:\nPrePaid: subscription\nPostPaid: pay-as-you-go\nDefault value: PostPaid.",
"Default": "PostPaid"
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::ECS::Zones",
"Properties": {
"InstanceChargeType": {
"Ref": "InstanceChargeType"
}
}
}
},
"Outputs": {
"ZoneIds": {
"Description": "The list of zone IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"ZoneIds"
]
}
},
"Zones": {
"Description": "The list of zones.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Zones"
]
}
}
}
}