alicloud.ros.StackGroup
Explore with Pulumi AI
Provides a ROS Stack Group resource.
For information about ROS Stack Group and how to use it, see What is Stack Group.
NOTE: Available in v1.107.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const example = new alicloud.ros.StackGroup("example", {
stackGroupName: "example_value",
templateBody: ` {
\x09"ROSTemplateFormatVersion": "2015-09-01"
}
`,
});
import pulumi
import pulumi_alicloud as alicloud
example = alicloud.ros.StackGroup("example",
stack_group_name="example_value",
template_body=""" {
\x09"ROSTemplateFormatVersion": "2015-09-01"
}
""")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ros"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ros.NewStackGroup(ctx, "example", &ros.StackGroupArgs{
StackGroupName: pulumi.String("example_value"),
TemplateBody: pulumi.String(" {\n \"ROSTemplateFormatVersion\": \"2015-09-01\"\n }\n"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var example = new AliCloud.Ros.StackGroup("example", new()
{
StackGroupName = "example_value",
TemplateBody = @" {
""ROSTemplateFormatVersion"": ""2015-09-01""
}
",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.ros.StackGroup;
import com.pulumi.alicloud.ros.StackGroupArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new StackGroup("example", StackGroupArgs.builder()
.stackGroupName("example_value")
.templateBody("""
{
"ROSTemplateFormatVersion": "2015-09-01"
}
""")
.build());
}
}
resources:
example:
type: alicloud:ros:StackGroup
properties:
stackGroupName: example_value
templateBody: |2
{
"ROSTemplateFormatVersion": "2015-09-01"
}
Create StackGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StackGroup(name: string, args: StackGroupArgs, opts?: CustomResourceOptions);
@overload
def StackGroup(resource_name: str,
args: StackGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def StackGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
stack_group_name: Optional[str] = None,
account_ids: Optional[str] = None,
administration_role_name: Optional[str] = None,
description: Optional[str] = None,
execution_role_name: Optional[str] = None,
operation_description: Optional[str] = None,
operation_preferences: Optional[str] = None,
parameters: Optional[Sequence[StackGroupParameterArgs]] = None,
region_ids: Optional[str] = None,
template_body: Optional[str] = None,
template_url: Optional[str] = None,
template_version: Optional[str] = None)
func NewStackGroup(ctx *Context, name string, args StackGroupArgs, opts ...ResourceOption) (*StackGroup, error)
public StackGroup(string name, StackGroupArgs args, CustomResourceOptions? opts = null)
public StackGroup(String name, StackGroupArgs args)
public StackGroup(String name, StackGroupArgs args, CustomResourceOptions options)
type: alicloud:ros:StackGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args StackGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args StackGroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args StackGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StackGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StackGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var stackGroupResource = new AliCloud.Ros.StackGroup("stackGroupResource", new()
{
StackGroupName = "string",
AccountIds = "string",
AdministrationRoleName = "string",
Description = "string",
ExecutionRoleName = "string",
OperationDescription = "string",
OperationPreferences = "string",
Parameters = new[]
{
new AliCloud.Ros.Inputs.StackGroupParameterArgs
{
ParameterKey = "string",
ParameterValue = "string",
},
},
RegionIds = "string",
TemplateBody = "string",
TemplateUrl = "string",
TemplateVersion = "string",
});
example, err := ros.NewStackGroup(ctx, "stackGroupResource", &ros.StackGroupArgs{
StackGroupName: pulumi.String("string"),
AccountIds: pulumi.String("string"),
AdministrationRoleName: pulumi.String("string"),
Description: pulumi.String("string"),
ExecutionRoleName: pulumi.String("string"),
OperationDescription: pulumi.String("string"),
OperationPreferences: pulumi.String("string"),
Parameters: ros.StackGroupParameterArray{
&ros.StackGroupParameterArgs{
ParameterKey: pulumi.String("string"),
ParameterValue: pulumi.String("string"),
},
},
RegionIds: pulumi.String("string"),
TemplateBody: pulumi.String("string"),
TemplateUrl: pulumi.String("string"),
TemplateVersion: pulumi.String("string"),
})
var stackGroupResource = new StackGroup("stackGroupResource", StackGroupArgs.builder()
.stackGroupName("string")
.accountIds("string")
.administrationRoleName("string")
.description("string")
.executionRoleName("string")
.operationDescription("string")
.operationPreferences("string")
.parameters(StackGroupParameterArgs.builder()
.parameterKey("string")
.parameterValue("string")
.build())
.regionIds("string")
.templateBody("string")
.templateUrl("string")
.templateVersion("string")
.build());
stack_group_resource = alicloud.ros.StackGroup("stackGroupResource",
stack_group_name="string",
account_ids="string",
administration_role_name="string",
description="string",
execution_role_name="string",
operation_description="string",
operation_preferences="string",
parameters=[alicloud.ros.StackGroupParameterArgs(
parameter_key="string",
parameter_value="string",
)],
region_ids="string",
template_body="string",
template_url="string",
template_version="string")
const stackGroupResource = new alicloud.ros.StackGroup("stackGroupResource", {
stackGroupName: "string",
accountIds: "string",
administrationRoleName: "string",
description: "string",
executionRoleName: "string",
operationDescription: "string",
operationPreferences: "string",
parameters: [{
parameterKey: "string",
parameterValue: "string",
}],
regionIds: "string",
templateBody: "string",
templateUrl: "string",
templateVersion: "string",
});
type: alicloud:ros:StackGroup
properties:
accountIds: string
administrationRoleName: string
description: string
executionRoleName: string
operationDescription: string
operationPreferences: string
parameters:
- parameterKey: string
parameterValue: string
regionIds: string
stackGroupName: string
templateBody: string
templateUrl: string
templateVersion: string
StackGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The StackGroup resource accepts the following input properties:
- Stack
Group stringName - The name of the stack group. The name must be unique in a region.
- Account
Ids string - The list of target account IDs, in JSON format. A maximum of 20 accounts can be specified.
- Administration
Role stringName - The name of the RAM administrator role assumed by ROS. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- Description string
- The description of the stack group.
- Execution
Role stringName - The name of the RAM execution role assumed by the administrator role. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- Operation
Description string - The description of the operation.
- Operation
Preferences string - The operation settings, in JSON format.
- Parameters
List<Pulumi.
Ali Cloud. Ros. Inputs. Stack Group Parameter> - The parameters. If the parameter name and value are not specified, ROS will use the default value specified in the template.
- Region
Ids string - The list of target regions, in JSON format. A maximum of 20 accounts can be specified.
- Template
Body string - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs.
- Template
Url string - The URL of the file that contains the template body. The URL must point to a template located in an HTTP or HTTPS web server or an Alibaba Cloud OSS bucket. Examples: oss://ros/template/demo and oss://ros/template/demo?RegionId=cn-hangzhou. The template must be 1 to 524,288 bytes in length. If the region of the OSS bucket is not specified, the RegionId value is used by default.
- Template
Version string - The version of the template.
- Stack
Group stringName - The name of the stack group. The name must be unique in a region.
- Account
Ids string - The list of target account IDs, in JSON format. A maximum of 20 accounts can be specified.
- Administration
Role stringName - The name of the RAM administrator role assumed by ROS. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- Description string
- The description of the stack group.
- Execution
Role stringName - The name of the RAM execution role assumed by the administrator role. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- Operation
Description string - The description of the operation.
- Operation
Preferences string - The operation settings, in JSON format.
- Parameters
[]Stack
Group Parameter Args - The parameters. If the parameter name and value are not specified, ROS will use the default value specified in the template.
- Region
Ids string - The list of target regions, in JSON format. A maximum of 20 accounts can be specified.
- Template
Body string - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs.
- Template
Url string - The URL of the file that contains the template body. The URL must point to a template located in an HTTP or HTTPS web server or an Alibaba Cloud OSS bucket. Examples: oss://ros/template/demo and oss://ros/template/demo?RegionId=cn-hangzhou. The template must be 1 to 524,288 bytes in length. If the region of the OSS bucket is not specified, the RegionId value is used by default.
- Template
Version string - The version of the template.
- stack
Group StringName - The name of the stack group. The name must be unique in a region.
- account
Ids String - The list of target account IDs, in JSON format. A maximum of 20 accounts can be specified.
- administration
Role StringName - The name of the RAM administrator role assumed by ROS. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- description String
- The description of the stack group.
- execution
Role StringName - The name of the RAM execution role assumed by the administrator role. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- operation
Description String - The description of the operation.
- operation
Preferences String - The operation settings, in JSON format.
- parameters
List<Stack
Group Parameter> - The parameters. If the parameter name and value are not specified, ROS will use the default value specified in the template.
- region
Ids String - The list of target regions, in JSON format. A maximum of 20 accounts can be specified.
- template
Body String - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs.
- template
Url String - The URL of the file that contains the template body. The URL must point to a template located in an HTTP or HTTPS web server or an Alibaba Cloud OSS bucket. Examples: oss://ros/template/demo and oss://ros/template/demo?RegionId=cn-hangzhou. The template must be 1 to 524,288 bytes in length. If the region of the OSS bucket is not specified, the RegionId value is used by default.
- template
Version String - The version of the template.
- stack
Group stringName - The name of the stack group. The name must be unique in a region.
- account
Ids string - The list of target account IDs, in JSON format. A maximum of 20 accounts can be specified.
- administration
Role stringName - The name of the RAM administrator role assumed by ROS. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- description string
- The description of the stack group.
- execution
Role stringName - The name of the RAM execution role assumed by the administrator role. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- operation
Description string - The description of the operation.
- operation
Preferences string - The operation settings, in JSON format.
- parameters
Stack
Group Parameter[] - The parameters. If the parameter name and value are not specified, ROS will use the default value specified in the template.
- region
Ids string - The list of target regions, in JSON format. A maximum of 20 accounts can be specified.
- template
Body string - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs.
- template
Url string - The URL of the file that contains the template body. The URL must point to a template located in an HTTP or HTTPS web server or an Alibaba Cloud OSS bucket. Examples: oss://ros/template/demo and oss://ros/template/demo?RegionId=cn-hangzhou. The template must be 1 to 524,288 bytes in length. If the region of the OSS bucket is not specified, the RegionId value is used by default.
- template
Version string - The version of the template.
- stack_
group_ strname - The name of the stack group. The name must be unique in a region.
- account_
ids str - The list of target account IDs, in JSON format. A maximum of 20 accounts can be specified.
- administration_
role_ strname - The name of the RAM administrator role assumed by ROS. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- description str
- The description of the stack group.
- execution_
role_ strname - The name of the RAM execution role assumed by the administrator role. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- operation_
description str - The description of the operation.
- operation_
preferences str - The operation settings, in JSON format.
- parameters
Sequence[Stack
Group Parameter Args] - The parameters. If the parameter name and value are not specified, ROS will use the default value specified in the template.
- region_
ids str - The list of target regions, in JSON format. A maximum of 20 accounts can be specified.
- template_
body str - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs.
- template_
url str - The URL of the file that contains the template body. The URL must point to a template located in an HTTP or HTTPS web server or an Alibaba Cloud OSS bucket. Examples: oss://ros/template/demo and oss://ros/template/demo?RegionId=cn-hangzhou. The template must be 1 to 524,288 bytes in length. If the region of the OSS bucket is not specified, the RegionId value is used by default.
- template_
version str - The version of the template.
- stack
Group StringName - The name of the stack group. The name must be unique in a region.
- account
Ids String - The list of target account IDs, in JSON format. A maximum of 20 accounts can be specified.
- administration
Role StringName - The name of the RAM administrator role assumed by ROS. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- description String
- The description of the stack group.
- execution
Role StringName - The name of the RAM execution role assumed by the administrator role. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- operation
Description String - The description of the operation.
- operation
Preferences String - The operation settings, in JSON format.
- parameters List<Property Map>
- The parameters. If the parameter name and value are not specified, ROS will use the default value specified in the template.
- region
Ids String - The list of target regions, in JSON format. A maximum of 20 accounts can be specified.
- template
Body String - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs.
- template
Url String - The URL of the file that contains the template body. The URL must point to a template located in an HTTP or HTTPS web server or an Alibaba Cloud OSS bucket. Examples: oss://ros/template/demo and oss://ros/template/demo?RegionId=cn-hangzhou. The template must be 1 to 524,288 bytes in length. If the region of the OSS bucket is not specified, the RegionId value is used by default.
- template
Version String - The version of the template.
Outputs
All input properties are implicitly available as output properties. Additionally, the StackGroup resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Stack
Group stringId - The id of Stack Group.
- Status string
- The status of Stack Group.
- Id string
- The provider-assigned unique ID for this managed resource.
- Stack
Group stringId - The id of Stack Group.
- Status string
- The status of Stack Group.
- id String
- The provider-assigned unique ID for this managed resource.
- stack
Group StringId - The id of Stack Group.
- status String
- The status of Stack Group.
- id string
- The provider-assigned unique ID for this managed resource.
- stack
Group stringId - The id of Stack Group.
- status string
- The status of Stack Group.
- id str
- The provider-assigned unique ID for this managed resource.
- stack_
group_ strid - The id of Stack Group.
- status str
- The status of Stack Group.
- id String
- The provider-assigned unique ID for this managed resource.
- stack
Group StringId - The id of Stack Group.
- status String
- The status of Stack Group.
Look up Existing StackGroup Resource
Get an existing StackGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: StackGroupState, opts?: CustomResourceOptions): StackGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_ids: Optional[str] = None,
administration_role_name: Optional[str] = None,
description: Optional[str] = None,
execution_role_name: Optional[str] = None,
operation_description: Optional[str] = None,
operation_preferences: Optional[str] = None,
parameters: Optional[Sequence[StackGroupParameterArgs]] = None,
region_ids: Optional[str] = None,
stack_group_id: Optional[str] = None,
stack_group_name: Optional[str] = None,
status: Optional[str] = None,
template_body: Optional[str] = None,
template_url: Optional[str] = None,
template_version: Optional[str] = None) -> StackGroup
func GetStackGroup(ctx *Context, name string, id IDInput, state *StackGroupState, opts ...ResourceOption) (*StackGroup, error)
public static StackGroup Get(string name, Input<string> id, StackGroupState? state, CustomResourceOptions? opts = null)
public static StackGroup get(String name, Output<String> id, StackGroupState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Ids string - The list of target account IDs, in JSON format. A maximum of 20 accounts can be specified.
- Administration
Role stringName - The name of the RAM administrator role assumed by ROS. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- Description string
- The description of the stack group.
- Execution
Role stringName - The name of the RAM execution role assumed by the administrator role. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- Operation
Description string - The description of the operation.
- Operation
Preferences string - The operation settings, in JSON format.
- Parameters
List<Pulumi.
Ali Cloud. Ros. Inputs. Stack Group Parameter> - The parameters. If the parameter name and value are not specified, ROS will use the default value specified in the template.
- Region
Ids string - The list of target regions, in JSON format. A maximum of 20 accounts can be specified.
- Stack
Group stringId - The id of Stack Group.
- Stack
Group stringName - The name of the stack group. The name must be unique in a region.
- Status string
- The status of Stack Group.
- Template
Body string - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs.
- Template
Url string - The URL of the file that contains the template body. The URL must point to a template located in an HTTP or HTTPS web server or an Alibaba Cloud OSS bucket. Examples: oss://ros/template/demo and oss://ros/template/demo?RegionId=cn-hangzhou. The template must be 1 to 524,288 bytes in length. If the region of the OSS bucket is not specified, the RegionId value is used by default.
- Template
Version string - The version of the template.
- Account
Ids string - The list of target account IDs, in JSON format. A maximum of 20 accounts can be specified.
- Administration
Role stringName - The name of the RAM administrator role assumed by ROS. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- Description string
- The description of the stack group.
- Execution
Role stringName - The name of the RAM execution role assumed by the administrator role. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- Operation
Description string - The description of the operation.
- Operation
Preferences string - The operation settings, in JSON format.
- Parameters
[]Stack
Group Parameter Args - The parameters. If the parameter name and value are not specified, ROS will use the default value specified in the template.
- Region
Ids string - The list of target regions, in JSON format. A maximum of 20 accounts can be specified.
- Stack
Group stringId - The id of Stack Group.
- Stack
Group stringName - The name of the stack group. The name must be unique in a region.
- Status string
- The status of Stack Group.
- Template
Body string - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs.
- Template
Url string - The URL of the file that contains the template body. The URL must point to a template located in an HTTP or HTTPS web server or an Alibaba Cloud OSS bucket. Examples: oss://ros/template/demo and oss://ros/template/demo?RegionId=cn-hangzhou. The template must be 1 to 524,288 bytes in length. If the region of the OSS bucket is not specified, the RegionId value is used by default.
- Template
Version string - The version of the template.
- account
Ids String - The list of target account IDs, in JSON format. A maximum of 20 accounts can be specified.
- administration
Role StringName - The name of the RAM administrator role assumed by ROS. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- description String
- The description of the stack group.
- execution
Role StringName - The name of the RAM execution role assumed by the administrator role. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- operation
Description String - The description of the operation.
- operation
Preferences String - The operation settings, in JSON format.
- parameters
List<Stack
Group Parameter> - The parameters. If the parameter name and value are not specified, ROS will use the default value specified in the template.
- region
Ids String - The list of target regions, in JSON format. A maximum of 20 accounts can be specified.
- stack
Group StringId - The id of Stack Group.
- stack
Group StringName - The name of the stack group. The name must be unique in a region.
- status String
- The status of Stack Group.
- template
Body String - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs.
- template
Url String - The URL of the file that contains the template body. The URL must point to a template located in an HTTP or HTTPS web server or an Alibaba Cloud OSS bucket. Examples: oss://ros/template/demo and oss://ros/template/demo?RegionId=cn-hangzhou. The template must be 1 to 524,288 bytes in length. If the region of the OSS bucket is not specified, the RegionId value is used by default.
- template
Version String - The version of the template.
- account
Ids string - The list of target account IDs, in JSON format. A maximum of 20 accounts can be specified.
- administration
Role stringName - The name of the RAM administrator role assumed by ROS. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- description string
- The description of the stack group.
- execution
Role stringName - The name of the RAM execution role assumed by the administrator role. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- operation
Description string - The description of the operation.
- operation
Preferences string - The operation settings, in JSON format.
- parameters
Stack
Group Parameter[] - The parameters. If the parameter name and value are not specified, ROS will use the default value specified in the template.
- region
Ids string - The list of target regions, in JSON format. A maximum of 20 accounts can be specified.
- stack
Group stringId - The id of Stack Group.
- stack
Group stringName - The name of the stack group. The name must be unique in a region.
- status string
- The status of Stack Group.
- template
Body string - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs.
- template
Url string - The URL of the file that contains the template body. The URL must point to a template located in an HTTP or HTTPS web server or an Alibaba Cloud OSS bucket. Examples: oss://ros/template/demo and oss://ros/template/demo?RegionId=cn-hangzhou. The template must be 1 to 524,288 bytes in length. If the region of the OSS bucket is not specified, the RegionId value is used by default.
- template
Version string - The version of the template.
- account_
ids str - The list of target account IDs, in JSON format. A maximum of 20 accounts can be specified.
- administration_
role_ strname - The name of the RAM administrator role assumed by ROS. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- description str
- The description of the stack group.
- execution_
role_ strname - The name of the RAM execution role assumed by the administrator role. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- operation_
description str - The description of the operation.
- operation_
preferences str - The operation settings, in JSON format.
- parameters
Sequence[Stack
Group Parameter Args] - The parameters. If the parameter name and value are not specified, ROS will use the default value specified in the template.
- region_
ids str - The list of target regions, in JSON format. A maximum of 20 accounts can be specified.
- stack_
group_ strid - The id of Stack Group.
- stack_
group_ strname - The name of the stack group. The name must be unique in a region.
- status str
- The status of Stack Group.
- template_
body str - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs.
- template_
url str - The URL of the file that contains the template body. The URL must point to a template located in an HTTP or HTTPS web server or an Alibaba Cloud OSS bucket. Examples: oss://ros/template/demo and oss://ros/template/demo?RegionId=cn-hangzhou. The template must be 1 to 524,288 bytes in length. If the region of the OSS bucket is not specified, the RegionId value is used by default.
- template_
version str - The version of the template.
- account
Ids String - The list of target account IDs, in JSON format. A maximum of 20 accounts can be specified.
- administration
Role StringName - The name of the RAM administrator role assumed by ROS. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- description String
- The description of the stack group.
- execution
Role StringName - The name of the RAM execution role assumed by the administrator role. ROS assumes this role to perform operations on the stack corresponding to the stack instance in the stack group.
- operation
Description String - The description of the operation.
- operation
Preferences String - The operation settings, in JSON format.
- parameters List<Property Map>
- The parameters. If the parameter name and value are not specified, ROS will use the default value specified in the template.
- region
Ids String - The list of target regions, in JSON format. A maximum of 20 accounts can be specified.
- stack
Group StringId - The id of Stack Group.
- stack
Group StringName - The name of the stack group. The name must be unique in a region.
- status String
- The status of Stack Group.
- template
Body String - The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs.
- template
Url String - The URL of the file that contains the template body. The URL must point to a template located in an HTTP or HTTPS web server or an Alibaba Cloud OSS bucket. Examples: oss://ros/template/demo and oss://ros/template/demo?RegionId=cn-hangzhou. The template must be 1 to 524,288 bytes in length. If the region of the OSS bucket is not specified, the RegionId value is used by default.
- template
Version String - The version of the template.
Supporting Types
StackGroupParameter, StackGroupParameterArgs
- Parameter
Key string - Parameter
Value string
- Parameter
Key string - Parameter
Value string
- parameter
Key String - parameter
Value String
- parameter
Key string - parameter
Value string
- parameter_
key str - parameter_
value str
- parameter
Key String - parameter
Value String
Import
ROS Stack Group can be imported using the id, e.g.
$ pulumi import alicloud:ros/stackGroup:StackGroup example <stack_group_name>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.