DATASOURCE::VPC::RouteTables類型用於查詢路由表列表。
文法
{
"Type": "DATASOURCE::VPC::RouteTables",
"Properties": {
"RouteTableId": String,
"VpcId": String,
"ResourceGroupId": String,
"RouterType": String,
"RouterId": String,
"RouteTableName": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
RouteTableId | String | 否 | 是 | 路由表ID。 | 無 |
VpcId | String | 否 | 是 | 路由表所屬的VPC ID。 | 指定該參數後,RouterType參數的值將自動化佈建為VRouter。 |
ResourceGroupId | String | 否 | 是 | 路由表所屬的資源群組ID。 | 無 |
RouterType | String | 否 | 是 | 路由表所屬的路由器類型。 | 取值:
|
RouterId | String | 否 | 是 | 路由表所屬的路由器ID。 | 無 |
RouteTableName | String | 否 | 是 | 路由表的名稱。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
返回資料(Fn::GetAtt)
RouteTableIds:路由表ID列表。
RouteTables:路由表詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
RouteTableIds | List | 路由表ID列表。 | 取值樣本: |
RouteTables | List | 路由表詳情列表。 | 無 |
CreationTime | String | 路由表的建立時間。 | 無 |
RouterType | String | 路由表所屬路由器的類型。 | 取值:
|
Description | String | 路由表的描述。 | 無 |
VSwitchIds | List | VPC下的交換器列表。 | 取值樣本: |
RouterId | String | 路由表所屬的路由器ID。 | 無 |
RouteTableId | String | 路由表ID。 | 無 |
RouteTableName | String | 路由表的名稱。 | 無 |
VpcId | String | 路由表所屬的VPC ID。 | 無 |
RouteTableType | String | 路由表類型。 | 取值:
|
Status | String | 路由表狀態。 | 取值:
|
AssociateType | String | 路由表綁定的雲資源類型。 | 取值:
|
OwnerId | String | 路由表歸屬的阿里雲帳號ID。 | 無 |
樣本
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"RouteTableName": {
"Type": "String",
"Default": "test123",
"Description": "The name of the route table."
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::VPC::RouteTables",
"Properties": {
"RouteTableName": {
"Ref": "RouteTableName"
}
}
}
},
"Outputs": {
"RouteTableIds": {
"Description": "the list of the route table ids.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"RouteTableIds"
]
}
},
"RouteTables": {
"Description": "The list of The route tables.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"RouteTables"
]
}
}
}
}