DATASOURCE::SLB::Zones类型用于查询负载均衡实例的可用区信息。
语法
{
"Type": "DATASOURCE::SLB::Zones",
"Properties": {
"AddressIPVersion": String,
"AddressType": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
AddressIPVersion | String | 否 | 是 | IP地址类型。 | 取值:
|
AddressType | String | 否 | 是 | 网络类型。 | 取值:
|
返回数据(Fn::GetAtt)
- ZoneIds:可用区ID列表。
- Zones:可用区详情列表。
属性名称 | 类型 | 描述 | 约束 |
ZoneIds | List | 可用区ID列表。 | 无 |
Zones | List | 可用区详情列表。 | 无 |
ZoneId | String | 可用区ID。 | 取值示例:cn-hangzhou-b 。 |
SlaveZoneId | String | 备可用区ID。 | 取值示例:cn-hangzhou-g 。 |
SupportResources | List | 支持的资源。 | 取值示例:[ { "AddressIPVersion": "ipv4", "AddressType": "classic_internet" }, {"AddressIPVersion": "ipv4", "AddressType": "classic_intranet"}, {"AddressIPVersion": "ipv4", "AddressType": "vpc" }] 。 |
示例
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"AddressIPVersion": {
"Type": "String",
"Description": "The type of IP address.\nValid values: ipv4 and ipv6.",
"Default": "ipv4"
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::SLB::Zones",
"Properties": {
"AddressIPVersion": {
"Ref": "AddressIPVersion"
}
}
}
},
"Outputs": {
"ZoneIds": {
"Description": "The list of The primary zone Ids.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"ZoneIds"
]
}
},
"Zones": {
"Description": "The list of The Zones.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Zones"
]
}
}
}
}