1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. ProfileGroup
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    ProfileGroup resource

    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,
                     data_filterings: 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",
        },
        DataFilterings = 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"),
    	},
    	DataFilterings: 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")
        .dataFilterings("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"],
        data_filterings=["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"],
        dataFilterings: ["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
        dataFilterings:
            - 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>
    Ai security
    DataFilterings List<string>
    Data filtering
    Device string
    The device in which the resource is defined
    DnsSecurities List<string>
    Dns security
    FileBlockings List<string>
    File blocking
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the profile group
    SaasSecurities List<string>
    Saas security
    Snippet string
    The snippet in which the resource is defined
    Spywares List<string>
    Spyware
    UrlFilterings List<string>
    Url filtering
    VirusAndWildfireAnalyses List<string>
    Virus and wildfire analysis
    Vulnerabilities List<string>
    Vulnerability
    AiSecurities []string
    Ai security
    DataFilterings []string
    Data filtering
    Device string
    The device in which the resource is defined
    DnsSecurities []string
    Dns security
    FileBlockings []string
    File blocking
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the profile group
    SaasSecurities []string
    Saas security
    Snippet string
    The snippet in which the resource is defined
    Spywares []string
    Spyware
    UrlFilterings []string
    Url filtering
    VirusAndWildfireAnalyses []string
    Virus and wildfire analysis
    Vulnerabilities []string
    Vulnerability
    aiSecurities List<String>
    Ai security
    dataFilterings List<String>
    Data filtering
    device String
    The device in which the resource is defined
    dnsSecurities List<String>
    Dns security
    fileBlockings List<String>
    File blocking
    folder String
    The folder in which the resource is defined
    name String
    The name of the profile group
    saasSecurities List<String>
    Saas security
    snippet String
    The snippet in which the resource is defined
    spywares List<String>
    Spyware
    urlFilterings List<String>
    Url filtering
    virusAndWildfireAnalyses List<String>
    Virus and wildfire analysis
    vulnerabilities List<String>
    Vulnerability
    aiSecurities string[]
    Ai security
    dataFilterings string[]
    Data filtering
    device string
    The device in which the resource is defined
    dnsSecurities string[]
    Dns security
    fileBlockings string[]
    File blocking
    folder string
    The folder in which the resource is defined
    name string
    The name of the profile group
    saasSecurities string[]
    Saas security
    snippet string
    The snippet in which the resource is defined
    spywares string[]
    Spyware
    urlFilterings string[]
    Url filtering
    virusAndWildfireAnalyses string[]
    Virus and wildfire analysis
    vulnerabilities string[]
    Vulnerability
    ai_securities Sequence[str]
    Ai security
    data_filterings Sequence[str]
    Data filtering
    device str
    The device in which the resource is defined
    dns_securities Sequence[str]
    Dns security
    file_blockings Sequence[str]
    File blocking
    folder str
    The folder in which the resource is defined
    name str
    The name of the profile group
    saas_securities Sequence[str]
    Saas security
    snippet str
    The snippet in which the resource is defined
    spywares Sequence[str]
    Spyware
    url_filterings Sequence[str]
    Url filtering
    virus_and_wildfire_analyses Sequence[str]
    Virus and wildfire analysis
    vulnerabilities Sequence[str]
    Vulnerability
    aiSecurities List<String>
    Ai security
    dataFilterings List<String>
    Data filtering
    device String
    The device in which the resource is defined
    dnsSecurities List<String>
    Dns security
    fileBlockings List<String>
    File blocking
    folder String
    The folder in which the resource is defined
    name String
    The name of the profile group
    saasSecurities List<String>
    Saas security
    snippet String
    The snippet in which the resource is defined
    spywares List<String>
    Spyware
    urlFilterings List<String>
    Url filtering
    virusAndWildfireAnalyses List<String>
    Virus and wildfire analysis
    vulnerabilities List<String>
    Vulnerability

    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,
            data_filterings: 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>
    Ai security
    DataFilterings List<string>
    Data filtering
    Device string
    The device in which the resource is defined
    DnsSecurities List<string>
    Dns security
    FileBlockings List<string>
    File blocking
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the profile group
    SaasSecurities List<string>
    Saas security
    Snippet string
    The snippet in which the resource is defined
    Spywares List<string>
    Spyware
    Tfid string
    UrlFilterings List<string>
    Url filtering
    VirusAndWildfireAnalyses List<string>
    Virus and wildfire analysis
    Vulnerabilities List<string>
    Vulnerability
    AiSecurities []string
    Ai security
    DataFilterings []string
    Data filtering
    Device string
    The device in which the resource is defined
    DnsSecurities []string
    Dns security
    FileBlockings []string
    File blocking
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the profile group
    SaasSecurities []string
    Saas security
    Snippet string
    The snippet in which the resource is defined
    Spywares []string
    Spyware
    Tfid string
    UrlFilterings []string
    Url filtering
    VirusAndWildfireAnalyses []string
    Virus and wildfire analysis
    Vulnerabilities []string
    Vulnerability
    aiSecurities List<String>
    Ai security
    dataFilterings List<String>
    Data filtering
    device String
    The device in which the resource is defined
    dnsSecurities List<String>
    Dns security
    fileBlockings List<String>
    File blocking
    folder String
    The folder in which the resource is defined
    name String
    The name of the profile group
    saasSecurities List<String>
    Saas security
    snippet String
    The snippet in which the resource is defined
    spywares List<String>
    Spyware
    tfid String
    urlFilterings List<String>
    Url filtering
    virusAndWildfireAnalyses List<String>
    Virus and wildfire analysis
    vulnerabilities List<String>
    Vulnerability
    aiSecurities string[]
    Ai security
    dataFilterings string[]
    Data filtering
    device string
    The device in which the resource is defined
    dnsSecurities string[]
    Dns security
    fileBlockings string[]
    File blocking
    folder string
    The folder in which the resource is defined
    name string
    The name of the profile group
    saasSecurities string[]
    Saas security
    snippet string
    The snippet in which the resource is defined
    spywares string[]
    Spyware
    tfid string
    urlFilterings string[]
    Url filtering
    virusAndWildfireAnalyses string[]
    Virus and wildfire analysis
    vulnerabilities string[]
    Vulnerability
    ai_securities Sequence[str]
    Ai security
    data_filterings Sequence[str]
    Data filtering
    device str
    The device in which the resource is defined
    dns_securities Sequence[str]
    Dns security
    file_blockings Sequence[str]
    File blocking
    folder str
    The folder in which the resource is defined
    name str
    The name of the profile group
    saas_securities Sequence[str]
    Saas security
    snippet str
    The snippet in which the resource is defined
    spywares Sequence[str]
    Spyware
    tfid str
    url_filterings Sequence[str]
    Url filtering
    virus_and_wildfire_analyses Sequence[str]
    Virus and wildfire analysis
    vulnerabilities Sequence[str]
    Vulnerability
    aiSecurities List<String>
    Ai security
    dataFilterings List<String>
    Data filtering
    device String
    The device in which the resource is defined
    dnsSecurities List<String>
    Dns security
    fileBlockings List<String>
    File blocking
    folder String
    The folder in which the resource is defined
    name String
    The name of the profile group
    saasSecurities List<String>
    Saas security
    snippet String
    The snippet in which the resource is defined
    spywares List<String>
    Spyware
    tfid String
    urlFilterings List<String>
    Url filtering
    virusAndWildfireAnalyses List<String>
    Virus and wildfire analysis
    vulnerabilities List<String>
    Vulnerability

    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.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate