DATASOURCE::ROS::StackGroups類型用於查詢資源棧組列表詳情。
文法
{
"Type": "DATASOURCE::ROS::StackGroups",
"Properties": {
"ResourceGroupId": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
ResourceGroupId | String | 否 | 是 | 資源群組ID。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
傳回值
Fn::GetAtt
StackGroups:資源棧組列表。
StackGroupNames:資源棧組名稱列表。
屬性名稱 | 類型 | 描述 | 約束 |
StackGroupNames | List | 資源棧組名稱列表。 | 無 |
StackGroups | List | 資源棧組列表。 | 無 |
Status | String | 資源棧組狀態。 | 取值:
|
PermissionModel | String | 授權模式。 | 取值:
|
Description | String | 資源棧組描述。 | 無 |
Tags | List | 資源棧組的標籤。 | 例如:
|
StackGroupId | String | 資源棧組ID。 | 無 |
ResourceGroupId | String | 資源群組ID。 | 無 |
AutoDeployment | Map | 自動部署設定資訊。 | 例如:
|
StackGroupName | String | 資源棧組名稱。 | 無 |
樣本
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
ResourceGroupId:
Description: The ID of the resource group.
Type: String
Resources:
ExtensionDataSource:
Properties:
ResourceGroupId:
Ref: ResourceGroupId
Type: DATASOURCE::ROS::StackGroups
Outputs:
StackGroupNames:
Description: The list of stack group names.
Value:
Fn::GetAtt:
- ExtensionDataSource
- StackGroupNames
StackGroups:
Description: The list of stack groups.
Value:
Fn::GetAtt:
- ExtensionDataSource
- StackGroups
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"ResourceGroupId": {
"Type": "String",
"Description": "The ID of the resource group."
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::ROS::StackGroups",
"Properties": {
"ResourceGroupId": {
"Ref": "ResourceGroupId"
}
}
}
},
"Outputs": {
"StackGroups": {
"Description": "The list of stack groups.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"StackGroups"
]
}
},
"StackGroupNames": {
"Description": "The list of stack group names.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"StackGroupNames"
]
}
}
}
}