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"
]
}
}
}
}