DATASOURCE::VPC::VSwitches类型用于查询已创建的交换机。
语法
{
"Type": "DATASOURCE::VPC::VSwitches",
"Properties": {
"IsDefault": Boolean,
"DhcpOptionsSetId": String,
"RouteTableId": String,
"VpcId": String,
"ResourceGroupId": String,
"VSwitchIds": List,
"VSwitchOwnerId": String,
"VSwitchName": String,
"RefreshOptions": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
IsDefault | Boolean | 否 | 是 | 是否查询资源栈所在地域下的默认交换机。 | 取值:
|
DhcpOptionsSetId | String | 否 | 是 | DHCP选项集ID。 | 无 |
RouteTableId | String | 否 | 是 | 路由表ID。 | 无 |
VpcId | String | 否 | 是 | 交换机所属的VPC ID。 | 无 |
ResourceGroupId | String | 否 | 是 | 交换机所属的资源组ID。 | 无 |
| List | 否 | 是 | 交换机ID列表。 | 最多支持指定20个交换机。 |
| String | 否 | 是 | 交换机所属的账号ID。 | 无 |
| String | 否 | 是 | 交换机名称。 | 无 |
RefreshOptions | String | 否 | 是 | 当资源栈更新时,数据源资源的刷新策略。 | 有效值:
|
返回数据(Fn::GetAtt)
VSwitchIds
:交换机ID列表。VSwitches
:交换机的详细信息列表。
属性名称 | 类型 | 描述 | 约束 |
| List | 交换机ID列表。 | 示例: |
| List | 交换机的详细信息列表。 | 无 |
VpcId | String | 交换机所属的VPC ID。 | 示例: |
Status | String | 交换机状态。 | 取值:
|
IsDefault | Boolean | 是否是默认交换机。 | 取值:
|
AvailableIpAddressCount | String | 交换机中可用的IP地址数量。 | 无 |
NetworkAclId | String | 网络ACL ID。 | 示例: |
| String | 交换机ID。 | 示例: |
CidrBlock | String | 交换机的IPv4网段。 | 无 |
Description | String | 交换机的描述信息。 | 无 |
ResourceGroupId | String | 交换机所属的资源组ID。 | 示例: |
ZoneId | String | 交换机所属的可用区。 | 无 |
Ipv6CidrBlock | String | 交换机的IPv6网段。 | 无 |
| String | 交换机的名称。 | 无 |
Tags | List | 交换机标签信息。 | 示例:
|
RouteTable | List | 路由表信息。 | 示例:
|
示例
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
VpcId:
AssociationProperty: ALIYUN::ECS::VPC::VPCId
Type: String
Description: Please search the ID starts with (vpc-xxx)from console-Virtual Private Cloud
Label: Existing VPC Instance ID
Resources:
ExtensionDataSource:
Type: DATASOURCE::VPC::VSwitches
Properties:
VpcId:
Ref: VpcId
Outputs:
VSwitchIds:
Description: The list of The vSwitch Ids.
Value:
Fn::GetAtt:
- ExtensionDataSource
- VSwitchIds
VSwitches:
Description: The detailed information about the vSwitches.
Value:
Fn::GetAtt:
- ExtensionDataSource
- VSwitches
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"VpcId": {
"AssociationProperty": "ALIYUN::ECS::VPC::VPCId",
"Type": "String",
"Description": "Please search the ID starts with (vpc-xxx)from console-Virtual Private Cloud",
"Label": "Existing VPC Instance ID"
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::VPC::VSwitches",
"Properties": {
"VpcId": {
"Ref": "VpcId"
}
}
}
},
"Outputs": {
"VSwitchIds": {
"Description": "The list of The vSwitch Ids.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"VSwitchIds"
]
}
},
"VSwitches": {
"Description": "The detailed information about the vSwitches.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"VSwitches"
]
}
}
}
}