DATASOURCE::PVTZ::Zones類型用於查詢使用者的Zone列表。
文法
{
"Type": "DATASOURCE::PVTZ::Zones",
"Properties": {
"ResourceGroupId": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
ResourceGroupId | String | 否 | 是 | 資源群組ID。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
傳回值
Fn::GetAtt
ZoneIds:Zone ID列表。
Zones:Zone詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
ZoneIds | List | Zone ID列表。 | 無 |
Zones | List | Zone詳情列表。 | 無 |
CreateTimestamp | Integer | 建立時間(時間戳記)。 | 無 |
UpdateTime | String | 更新時間。 | 無 |
ZoneTag | String | 雲產品類型。 | 取值:
|
RecordCount | Integer | 解析記錄數。 | 無 |
Tags | List | 資源標籤列表。 | 樣本:
|
Remark | String | Zone備忘資訊。 | 無 |
ZoneId | String | Zone ID。 | 無 |
ZoneType | String | Zone類型。 | 取值:
|
ResourceGroupId | String | 資源群組ID。 | 無 |
ProxyPattern | String | 代理模式。 | 取值:
|
IsPtr | Boolean | 是否是反解。 | 取值:
|
UpdateTimestamp | Integer | 更新時間(時間戳記)。 | 無 |
CreateTime | String | 建立時間。 | 無 |
ZoneName | String | Zone名稱。 | 無 |
樣本
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
ResourceGroupId:
Description: ResourceGroupId
Type: String
Resources:
ExtensionDataSource:
Properties:
ResourceGroupId:
Ref: ResourceGroupId
Type: DATASOURCE::PVTZ::Zones
Outputs:
ZoneIds:
Description: The list of zone IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- ZoneIds
Zones:
Description: The list of zones.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Zones
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"ResourceGroupId": {
"Type": "String",
"Description": "ResourceGroupId"
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::PVTZ::Zones",
"Properties": {
"ResourceGroupId": {
"Ref": "ResourceGroupId"
}
}
}
},
"Outputs": {
"ZoneIds": {
"Description": "The list of zone IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"ZoneIds"
]
}
},
"Zones": {
"Description": "The list of zones.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Zones"
]
}
}
}
}