1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. ApplicationGroup
Strata Cloud Manager v1.0.4 published on Saturday, Feb 14, 2026 by Pulumi
scm logo
Strata Cloud Manager v1.0.4 published on Saturday, Feb 14, 2026 by Pulumi

    ApplicationGroup resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // First, create some applications that will be used in the application group.
    const scmAgApp1 = new scm.Application("scm_ag_app_1", {
        folder: "Prisma Access",
        name: "scm_ag_app_1",
        description: "First test application",
        category: "business-systems",
        subcategory: "database",
        technology: "client-server",
        risk: "3",
    });
    const scmAgApp2 = new scm.Application("scm_ag_app_2", {
        folder: "Prisma Access",
        name: "scm_ag_app_2",
        description: "Second test application",
        category: "business-systems",
        subcategory: "database",
        technology: "client-server",
        risk: "4",
    });
    // Create the application group that references the applications above.
    const scmAppGroup1 = new scm.ApplicationGroup("scm_app_group_1", {
        folder: "Prisma Access",
        name: "scm_app_group_1",
        members: [
            scmAgApp1.name,
            scmAgApp2.name,
        ],
    });
    
    import pulumi
    import pulumi_scm as scm
    
    # First, create some applications that will be used in the application group.
    scm_ag_app1 = scm.Application("scm_ag_app_1",
        folder="Prisma Access",
        name="scm_ag_app_1",
        description="First test application",
        category="business-systems",
        subcategory="database",
        technology="client-server",
        risk="3")
    scm_ag_app2 = scm.Application("scm_ag_app_2",
        folder="Prisma Access",
        name="scm_ag_app_2",
        description="Second test application",
        category="business-systems",
        subcategory="database",
        technology="client-server",
        risk="4")
    # Create the application group that references the applications above.
    scm_app_group1 = scm.ApplicationGroup("scm_app_group_1",
        folder="Prisma Access",
        name="scm_app_group_1",
        members=[
            scm_ag_app1.name,
            scm_ag_app2.name,
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// First, create some applications that will be used in the application group.
    		scmAgApp1, err := scm.NewApplication(ctx, "scm_ag_app_1", &scm.ApplicationArgs{
    			Folder:      pulumi.String("Prisma Access"),
    			Name:        pulumi.String("scm_ag_app_1"),
    			Description: pulumi.String("First test application"),
    			Category:    pulumi.String("business-systems"),
    			Subcategory: pulumi.String("database"),
    			Technology:  pulumi.String("client-server"),
    			Risk:        pulumi.String("3"),
    		})
    		if err != nil {
    			return err
    		}
    		scmAgApp2, err := scm.NewApplication(ctx, "scm_ag_app_2", &scm.ApplicationArgs{
    			Folder:      pulumi.String("Prisma Access"),
    			Name:        pulumi.String("scm_ag_app_2"),
    			Description: pulumi.String("Second test application"),
    			Category:    pulumi.String("business-systems"),
    			Subcategory: pulumi.String("database"),
    			Technology:  pulumi.String("client-server"),
    			Risk:        pulumi.String("4"),
    		})
    		if err != nil {
    			return err
    		}
    		// Create the application group that references the applications above.
    		_, err = scm.NewApplicationGroup(ctx, "scm_app_group_1", &scm.ApplicationGroupArgs{
    			Folder: pulumi.String("Prisma Access"),
    			Name:   pulumi.String("scm_app_group_1"),
    			Members: pulumi.StringArray{
    				scmAgApp1.Name,
    				scmAgApp2.Name,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // First, create some applications that will be used in the application group.
        var scmAgApp1 = new Scm.Application("scm_ag_app_1", new()
        {
            Folder = "Prisma Access",
            Name = "scm_ag_app_1",
            Description = "First test application",
            Category = "business-systems",
            Subcategory = "database",
            Technology = "client-server",
            Risk = "3",
        });
    
        var scmAgApp2 = new Scm.Application("scm_ag_app_2", new()
        {
            Folder = "Prisma Access",
            Name = "scm_ag_app_2",
            Description = "Second test application",
            Category = "business-systems",
            Subcategory = "database",
            Technology = "client-server",
            Risk = "4",
        });
    
        // Create the application group that references the applications above.
        var scmAppGroup1 = new Scm.ApplicationGroup("scm_app_group_1", new()
        {
            Folder = "Prisma Access",
            Name = "scm_app_group_1",
            Members = new[]
            {
                scmAgApp1.Name,
                scmAgApp2.Name,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.Application;
    import com.pulumi.scm.ApplicationArgs;
    import com.pulumi.scm.ApplicationGroup;
    import com.pulumi.scm.ApplicationGroupArgs;
    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) {
            // First, create some applications that will be used in the application group.
            var scmAgApp1 = new Application("scmAgApp1", ApplicationArgs.builder()
                .folder("Prisma Access")
                .name("scm_ag_app_1")
                .description("First test application")
                .category("business-systems")
                .subcategory("database")
                .technology("client-server")
                .risk("3")
                .build());
    
            var scmAgApp2 = new Application("scmAgApp2", ApplicationArgs.builder()
                .folder("Prisma Access")
                .name("scm_ag_app_2")
                .description("Second test application")
                .category("business-systems")
                .subcategory("database")
                .technology("client-server")
                .risk("4")
                .build());
    
            // Create the application group that references the applications above.
            var scmAppGroup1 = new ApplicationGroup("scmAppGroup1", ApplicationGroupArgs.builder()
                .folder("Prisma Access")
                .name("scm_app_group_1")
                .members(            
                    scmAgApp1.name(),
                    scmAgApp2.name())
                .build());
    
        }
    }
    
    resources:
      # First, create some applications that will be used in the application group.
      scmAgApp1:
        type: scm:Application
        name: scm_ag_app_1
        properties:
          folder: Prisma Access
          name: scm_ag_app_1
          description: First test application
          category: business-systems
          subcategory: database
          technology: client-server
          risk: 3
      scmAgApp2:
        type: scm:Application
        name: scm_ag_app_2
        properties:
          folder: Prisma Access
          name: scm_ag_app_2
          description: Second test application
          category: business-systems
          subcategory: database
          technology: client-server
          risk: 4
      # Create the application group that references the applications above.
      scmAppGroup1:
        type: scm:ApplicationGroup
        name: scm_app_group_1
        properties:
          folder: Prisma Access
          name: scm_app_group_1
          members:
            - ${scmAgApp1.name}
            - ${scmAgApp2.name}
    

    Create ApplicationGroup Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ApplicationGroup(name: string, args: ApplicationGroupArgs, opts?: CustomResourceOptions);
    @overload
    def ApplicationGroup(resource_name: str,
                         args: ApplicationGroupArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ApplicationGroup(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         members: Optional[Sequence[str]] = None,
                         device: Optional[str] = None,
                         folder: Optional[str] = None,
                         name: Optional[str] = None,
                         snippet: Optional[str] = None)
    func NewApplicationGroup(ctx *Context, name string, args ApplicationGroupArgs, opts ...ResourceOption) (*ApplicationGroup, error)
    public ApplicationGroup(string name, ApplicationGroupArgs args, CustomResourceOptions? opts = null)
    public ApplicationGroup(String name, ApplicationGroupArgs args)
    public ApplicationGroup(String name, ApplicationGroupArgs args, CustomResourceOptions options)
    
    type: scm:ApplicationGroup
    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 ApplicationGroupArgs
    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 ApplicationGroupArgs
    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 ApplicationGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApplicationGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApplicationGroupArgs
    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 applicationGroupResource = new Scm.ApplicationGroup("applicationGroupResource", new()
    {
        Members = new[]
        {
            "string",
        },
        Device = "string",
        Folder = "string",
        Name = "string",
        Snippet = "string",
    });
    
    example, err := scm.NewApplicationGroup(ctx, "applicationGroupResource", &scm.ApplicationGroupArgs{
    	Members: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Device:  pulumi.String("string"),
    	Folder:  pulumi.String("string"),
    	Name:    pulumi.String("string"),
    	Snippet: pulumi.String("string"),
    })
    
    var applicationGroupResource = new ApplicationGroup("applicationGroupResource", ApplicationGroupArgs.builder()
        .members("string")
        .device("string")
        .folder("string")
        .name("string")
        .snippet("string")
        .build());
    
    application_group_resource = scm.ApplicationGroup("applicationGroupResource",
        members=["string"],
        device="string",
        folder="string",
        name="string",
        snippet="string")
    
    const applicationGroupResource = new scm.ApplicationGroup("applicationGroupResource", {
        members: ["string"],
        device: "string",
        folder: "string",
        name: "string",
        snippet: "string",
    });
    
    type: scm:ApplicationGroup
    properties:
        device: string
        folder: string
        members:
            - string
        name: string
        snippet: string
    

    ApplicationGroup Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ApplicationGroup resource accepts the following input properties:

    Members List<string>
    Members
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Members []string
    Members
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    members List<String>
    Members
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    members string[]
    Members
    device string
    The device in which the resource is defined
    folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    members Sequence[str]
    Members
    device str
    The device in which the resource is defined
    folder str

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name str
    Alphanumeric string [ 0-9a-zA-Z._-]
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    members List<String>
    Members
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ApplicationGroup resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    The Terraform ID.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    The Terraform ID.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.

    Look up Existing ApplicationGroup Resource

    Get an existing ApplicationGroup 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?: ApplicationGroupState, opts?: CustomResourceOptions): ApplicationGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            members: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> ApplicationGroup
    func GetApplicationGroup(ctx *Context, name string, id IDInput, state *ApplicationGroupState, opts ...ResourceOption) (*ApplicationGroup, error)
    public static ApplicationGroup Get(string name, Input<string> id, ApplicationGroupState? state, CustomResourceOptions? opts = null)
    public static ApplicationGroup get(String name, Output<String> id, ApplicationGroupState state, CustomResourceOptions options)
    resources:  _:    type: scm:ApplicationGroup    get:      id: ${id}
    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.
    The following state arguments are supported:
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Members List<string>
    Members
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    The Terraform ID.
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Members []string
    Members
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    The Terraform ID.
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    members List<String>
    Members
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    The Terraform ID.
    device string
    The device in which the resource is defined
    folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    members string[]
    Members
    name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid string
    The Terraform ID.
    device str
    The device in which the resource is defined
    folder str

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    members Sequence[str]
    Members
    name str
    Alphanumeric string [ 0-9a-zA-Z._-]
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid str
    The Terraform ID.
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    members List<String>
    Members
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    The Terraform ID.

    Import

    The following command can be used to import a resource not managed by Terraform:

    terraform import scm_application_group.example folder:::id
    

    or

    terraform import scm_application_group.example :snippet::id
    

    or

    terraform import scm_application_group.example ::device:id
    

    Note: Please provide just one of folder, snippet, or device for the import command.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v1.0.4 published on Saturday, Feb 14, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate