1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. ProfileGroup
Strata Cloud Manager v0.4.0 published on Thursday, May 15, 2025 by Pulumi

scm.ProfileGroup

Explore with Pulumi AI

scm logo
Strata Cloud Manager v0.4.0 published on Thursday, May 15, 2025 by Pulumi

    Retrieves a config item.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const example = new scm.ProfileGroup("example", {});
    
    import pulumi
    import pulumi_scm as scm
    
    example = scm.ProfileGroup("example")
    
    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 {
    		_, err := scm.NewProfileGroup(ctx, "example", nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Scm.ProfileGroup("example");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ProfileGroup;
    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 ProfileGroup("example");
    
        }
    }
    
    resources:
      example:
        type: scm:ProfileGroup
    

    Create ProfileGroup Resource

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

    Constructor syntax

    new ProfileGroup(name: string, args?: ProfileGroupArgs, opts?: CustomResourceOptions);
    @overload
    def ProfileGroup(resource_name: str,
                     args: Optional[ProfileGroupArgs] = None,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProfileGroup(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     ai_securities: Optional[Sequence[str]] = None,
                     device: Optional[str] = None,
                     dns_securities: Optional[Sequence[str]] = None,
                     file_blockings: Optional[Sequence[str]] = None,
                     folder: Optional[str] = None,
                     name: Optional[str] = None,
                     saas_securities: Optional[Sequence[str]] = None,
                     snippet: Optional[str] = None,
                     spywares: Optional[Sequence[str]] = None,
                     url_filterings: Optional[Sequence[str]] = None,
                     virus_and_wildfire_analyses: Optional[Sequence[str]] = None,
                     vulnerabilities: Optional[Sequence[str]] = None)
    func NewProfileGroup(ctx *Context, name string, args *ProfileGroupArgs, opts ...ResourceOption) (*ProfileGroup, error)
    public ProfileGroup(string name, ProfileGroupArgs? args = null, CustomResourceOptions? opts = null)
    public ProfileGroup(String name, ProfileGroupArgs args)
    public ProfileGroup(String name, ProfileGroupArgs args, CustomResourceOptions options)
    
    type: scm:ProfileGroup
    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 ProfileGroupArgs
    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 ProfileGroupArgs
    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 ProfileGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProfileGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProfileGroupArgs
    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 profileGroupResource = new Scm.ProfileGroup("profileGroupResource", new()
    {
        AiSecurities = new[]
        {
            "string",
        },
        Device = "string",
        DnsSecurities = new[]
        {
            "string",
        },
        FileBlockings = new[]
        {
            "string",
        },
        Folder = "string",
        Name = "string",
        SaasSecurities = new[]
        {
            "string",
        },
        Snippet = "string",
        Spywares = new[]
        {
            "string",
        },
        UrlFilterings = new[]
        {
            "string",
        },
        VirusAndWildfireAnalyses = new[]
        {
            "string",
        },
        Vulnerabilities = new[]
        {
            "string",
        },
    });
    
    example, err := scm.NewProfileGroup(ctx, "profileGroupResource", &scm.ProfileGroupArgs{
    	AiSecurities: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Device: pulumi.String("string"),
    	DnsSecurities: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	FileBlockings: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Folder: pulumi.String("string"),
    	Name:   pulumi.String("string"),
    	SaasSecurities: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Snippet: pulumi.String("string"),
    	Spywares: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	UrlFilterings: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	VirusAndWildfireAnalyses: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Vulnerabilities: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var profileGroupResource = new ProfileGroup("profileGroupResource", ProfileGroupArgs.builder()
        .aiSecurities("string")
        .device("string")
        .dnsSecurities("string")
        .fileBlockings("string")
        .folder("string")
        .name("string")
        .saasSecurities("string")
        .snippet("string")
        .spywares("string")
        .urlFilterings("string")
        .virusAndWildfireAnalyses("string")
        .vulnerabilities("string")
        .build());
    
    profile_group_resource = scm.ProfileGroup("profileGroupResource",
        ai_securities=["string"],
        device="string",
        dns_securities=["string"],
        file_blockings=["string"],
        folder="string",
        name="string",
        saas_securities=["string"],
        snippet="string",
        spywares=["string"],
        url_filterings=["string"],
        virus_and_wildfire_analyses=["string"],
        vulnerabilities=["string"])
    
    const profileGroupResource = new scm.ProfileGroup("profileGroupResource", {
        aiSecurities: ["string"],
        device: "string",
        dnsSecurities: ["string"],
        fileBlockings: ["string"],
        folder: "string",
        name: "string",
        saasSecurities: ["string"],
        snippet: "string",
        spywares: ["string"],
        urlFilterings: ["string"],
        virusAndWildfireAnalyses: ["string"],
        vulnerabilities: ["string"],
    });
    
    type: scm:ProfileGroup
    properties:
        aiSecurities:
            - string
        device: string
        dnsSecurities:
            - string
        fileBlockings:
            - string
        folder: string
        name: string
        saasSecurities:
            - string
        snippet: string
        spywares:
            - string
        urlFilterings:
            - string
        virusAndWildfireAnalyses:
            - string
        vulnerabilities:
            - string
    

    ProfileGroup 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 ProfileGroup resource accepts the following input properties:

    AiSecurities List<string>
    List of AI security profiles.
    Device string
    The Device param.
    DnsSecurities List<string>
    List of DNS security profiles.
    FileBlockings List<string>
    List of file blocking profiles.
    Folder string
    The Folder param.
    Name string
    The name of the profile group.
    SaasSecurities List<string>
    List of HTTP header insertion profiles.
    Snippet string
    The Snippet param.
    Spywares List<string>
    List of anti-spyware profiles.
    UrlFilterings List<string>
    List of URL filtering profiles.
    VirusAndWildfireAnalyses List<string>
    List of anti-virus and Wildfire analysis profiles.
    Vulnerabilities List<string>
    List of vulnerability protection profiles.
    AiSecurities []string
    List of AI security profiles.
    Device string
    The Device param.
    DnsSecurities []string
    List of DNS security profiles.
    FileBlockings []string
    List of file blocking profiles.
    Folder string
    The Folder param.
    Name string
    The name of the profile group.
    SaasSecurities []string
    List of HTTP header insertion profiles.
    Snippet string
    The Snippet param.
    Spywares []string
    List of anti-spyware profiles.
    UrlFilterings []string
    List of URL filtering profiles.
    VirusAndWildfireAnalyses []string
    List of anti-virus and Wildfire analysis profiles.
    Vulnerabilities []string
    List of vulnerability protection profiles.
    aiSecurities List<String>
    List of AI security profiles.
    device String
    The Device param.
    dnsSecurities List<String>
    List of DNS security profiles.
    fileBlockings List<String>
    List of file blocking profiles.
    folder String
    The Folder param.
    name String
    The name of the profile group.
    saasSecurities List<String>
    List of HTTP header insertion profiles.
    snippet String
    The Snippet param.
    spywares List<String>
    List of anti-spyware profiles.
    urlFilterings List<String>
    List of URL filtering profiles.
    virusAndWildfireAnalyses List<String>
    List of anti-virus and Wildfire analysis profiles.
    vulnerabilities List<String>
    List of vulnerability protection profiles.
    aiSecurities string[]
    List of AI security profiles.
    device string
    The Device param.
    dnsSecurities string[]
    List of DNS security profiles.
    fileBlockings string[]
    List of file blocking profiles.
    folder string
    The Folder param.
    name string
    The name of the profile group.
    saasSecurities string[]
    List of HTTP header insertion profiles.
    snippet string
    The Snippet param.
    spywares string[]
    List of anti-spyware profiles.
    urlFilterings string[]
    List of URL filtering profiles.
    virusAndWildfireAnalyses string[]
    List of anti-virus and Wildfire analysis profiles.
    vulnerabilities string[]
    List of vulnerability protection profiles.
    ai_securities Sequence[str]
    List of AI security profiles.
    device str
    The Device param.
    dns_securities Sequence[str]
    List of DNS security profiles.
    file_blockings Sequence[str]
    List of file blocking profiles.
    folder str
    The Folder param.
    name str
    The name of the profile group.
    saas_securities Sequence[str]
    List of HTTP header insertion profiles.
    snippet str
    The Snippet param.
    spywares Sequence[str]
    List of anti-spyware profiles.
    url_filterings Sequence[str]
    List of URL filtering profiles.
    virus_and_wildfire_analyses Sequence[str]
    List of anti-virus and Wildfire analysis profiles.
    vulnerabilities Sequence[str]
    List of vulnerability protection profiles.
    aiSecurities List<String>
    List of AI security profiles.
    device String
    The Device param.
    dnsSecurities List<String>
    List of DNS security profiles.
    fileBlockings List<String>
    List of file blocking profiles.
    folder String
    The Folder param.
    name String
    The name of the profile group.
    saasSecurities List<String>
    List of HTTP header insertion profiles.
    snippet String
    The Snippet param.
    spywares List<String>
    List of anti-spyware profiles.
    urlFilterings List<String>
    List of URL filtering profiles.
    virusAndWildfireAnalyses List<String>
    List of anti-virus and Wildfire analysis profiles.
    vulnerabilities List<String>
    List of vulnerability protection profiles.

    Outputs

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

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

    Look up Existing ProfileGroup Resource

    Get an existing ProfileGroup 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?: ProfileGroupState, opts?: CustomResourceOptions): ProfileGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ai_securities: Optional[Sequence[str]] = None,
            device: Optional[str] = None,
            dns_securities: Optional[Sequence[str]] = None,
            file_blockings: Optional[Sequence[str]] = None,
            folder: Optional[str] = None,
            name: Optional[str] = None,
            saas_securities: Optional[Sequence[str]] = None,
            snippet: Optional[str] = None,
            spywares: Optional[Sequence[str]] = None,
            tfid: Optional[str] = None,
            url_filterings: Optional[Sequence[str]] = None,
            virus_and_wildfire_analyses: Optional[Sequence[str]] = None,
            vulnerabilities: Optional[Sequence[str]] = None) -> ProfileGroup
    func GetProfileGroup(ctx *Context, name string, id IDInput, state *ProfileGroupState, opts ...ResourceOption) (*ProfileGroup, error)
    public static ProfileGroup Get(string name, Input<string> id, ProfileGroupState? state, CustomResourceOptions? opts = null)
    public static ProfileGroup get(String name, Output<String> id, ProfileGroupState state, CustomResourceOptions options)
    resources:  _:    type: scm:ProfileGroup    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:
    AiSecurities List<string>
    List of AI security profiles.
    Device string
    The Device param.
    DnsSecurities List<string>
    List of DNS security profiles.
    FileBlockings List<string>
    List of file blocking profiles.
    Folder string
    The Folder param.
    Name string
    The name of the profile group.
    SaasSecurities List<string>
    List of HTTP header insertion profiles.
    Snippet string
    The Snippet param.
    Spywares List<string>
    List of anti-spyware profiles.
    Tfid string
    UrlFilterings List<string>
    List of URL filtering profiles.
    VirusAndWildfireAnalyses List<string>
    List of anti-virus and Wildfire analysis profiles.
    Vulnerabilities List<string>
    List of vulnerability protection profiles.
    AiSecurities []string
    List of AI security profiles.
    Device string
    The Device param.
    DnsSecurities []string
    List of DNS security profiles.
    FileBlockings []string
    List of file blocking profiles.
    Folder string
    The Folder param.
    Name string
    The name of the profile group.
    SaasSecurities []string
    List of HTTP header insertion profiles.
    Snippet string
    The Snippet param.
    Spywares []string
    List of anti-spyware profiles.
    Tfid string
    UrlFilterings []string
    List of URL filtering profiles.
    VirusAndWildfireAnalyses []string
    List of anti-virus and Wildfire analysis profiles.
    Vulnerabilities []string
    List of vulnerability protection profiles.
    aiSecurities List<String>
    List of AI security profiles.
    device String
    The Device param.
    dnsSecurities List<String>
    List of DNS security profiles.
    fileBlockings List<String>
    List of file blocking profiles.
    folder String
    The Folder param.
    name String
    The name of the profile group.
    saasSecurities List<String>
    List of HTTP header insertion profiles.
    snippet String
    The Snippet param.
    spywares List<String>
    List of anti-spyware profiles.
    tfid String
    urlFilterings List<String>
    List of URL filtering profiles.
    virusAndWildfireAnalyses List<String>
    List of anti-virus and Wildfire analysis profiles.
    vulnerabilities List<String>
    List of vulnerability protection profiles.
    aiSecurities string[]
    List of AI security profiles.
    device string
    The Device param.
    dnsSecurities string[]
    List of DNS security profiles.
    fileBlockings string[]
    List of file blocking profiles.
    folder string
    The Folder param.
    name string
    The name of the profile group.
    saasSecurities string[]
    List of HTTP header insertion profiles.
    snippet string
    The Snippet param.
    spywares string[]
    List of anti-spyware profiles.
    tfid string
    urlFilterings string[]
    List of URL filtering profiles.
    virusAndWildfireAnalyses string[]
    List of anti-virus and Wildfire analysis profiles.
    vulnerabilities string[]
    List of vulnerability protection profiles.
    ai_securities Sequence[str]
    List of AI security profiles.
    device str
    The Device param.
    dns_securities Sequence[str]
    List of DNS security profiles.
    file_blockings Sequence[str]
    List of file blocking profiles.
    folder str
    The Folder param.
    name str
    The name of the profile group.
    saas_securities Sequence[str]
    List of HTTP header insertion profiles.
    snippet str
    The Snippet param.
    spywares Sequence[str]
    List of anti-spyware profiles.
    tfid str
    url_filterings Sequence[str]
    List of URL filtering profiles.
    virus_and_wildfire_analyses Sequence[str]
    List of anti-virus and Wildfire analysis profiles.
    vulnerabilities Sequence[str]
    List of vulnerability protection profiles.
    aiSecurities List<String>
    List of AI security profiles.
    device String
    The Device param.
    dnsSecurities List<String>
    List of DNS security profiles.
    fileBlockings List<String>
    List of file blocking profiles.
    folder String
    The Folder param.
    name String
    The name of the profile group.
    saasSecurities List<String>
    List of HTTP header insertion profiles.
    snippet String
    The Snippet param.
    spywares List<String>
    List of anti-spyware profiles.
    tfid String
    urlFilterings List<String>
    List of URL filtering profiles.
    virusAndWildfireAnalyses List<String>
    List of anti-virus and Wildfire analysis profiles.
    vulnerabilities List<String>
    List of vulnerability protection profiles.

    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 v0.4.0 published on Thursday, May 15, 2025 by Pulumi