Stack Group Args
data class StackGroupArgs(val accountIds: Output<String>? = null, val administrationRoleName: Output<String>? = null, val description: Output<String>? = null, val executionRoleName: Output<String>? = null, val operationDescription: Output<String>? = null, val operationPreferences: Output<String>? = null, val parameters: Output<List<StackGroupParameterArgs>>? = null, val regionIds: Output<String>? = null, val stackGroupName: Output<String>? = null, val templateBody: Output<String>? = null, val templateUrl: Output<String>? = null, val templateVersion: Output<String>? = null) : ConvertibleToJava<StackGroupArgs>
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
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());
}
}
Content copied to clipboard
Import
ROS Stack Group can be imported using the id, e.g.
$ pulumi import alicloud:ros/stackGroup:StackGroup example <stack_group_name>
Content copied to clipboard
Constructors
Link copied to clipboard
fun StackGroupArgs(accountIds: Output<String>? = null, administrationRoleName: Output<String>? = null, description: Output<String>? = null, executionRoleName: Output<String>? = null, operationDescription: Output<String>? = null, operationPreferences: Output<String>? = null, parameters: Output<List<StackGroupParameterArgs>>? = null, regionIds: Output<String>? = null, stackGroupName: Output<String>? = null, templateBody: Output<String>? = null, templateUrl: Output<String>? = null, templateVersion: Output<String>? = null)
Functions
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
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.
Link copied to clipboard