全部产品
Search
文档中心

资源编排:DATASOURCE::ROS::StackGroups

更新时间:Nov 27, 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"
        ]
      }
    }
  }
}