全部產品
Search
文件中心

:DATASOURCE::ROS::StackGroups

更新時間:Nov 28, 2024

DATASOURCE::ROS::StackGroups類型用於查詢資源棧組列表詳情。

文法

{
  "Type": "DATASOURCE::ROS::StackGroups",
  "Properties": {
    "ResourceGroupId": String,
    "RefreshOptions": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

ResourceGroupId

String

資源群組ID。

RefreshOptions

String

當資源棧更新時,資料來源資源的重新整理策略。

有效值:

  • Never(預設值):更新堆棧時,從不重新整理資料來源資源。

  • Always:更新堆棧時,始終重新整理資料來源資源。

傳回值

Fn::GetAtt

  • StackGroups:資源棧組列表。

  • StackGroupNames:資源棧組名稱列表。

屬性名稱

類型

描述

約束

StackGroupNames

List

資源棧組名稱列表。

StackGroups

List

資源棧組列表。

Status

String

資源棧組狀態。

取值:

  • ACTIVE:已啟用。

  • DELETED:已刪除。

PermissionModel

String

授權模式。

取值:

  • SELF_MANAGED:自助系統管理權限模式。

  • SERVICE_MANAGED:服務系統管理權限模式。

Description

String

資源棧組描述。

Tags

List

資源棧組的標籤。

例如:

[
        {
          "Key": "usage1",
          "Value": "test1"
        }
      ]

StackGroupId

String

資源棧組ID。

ResourceGroupId

String

資源群組ID。

AutoDeployment

Map

自動部署設定資訊。

例如:

{
        "Enabled": true,
        "RetainStacksOnAccountRemoval": true
      }

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