1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectApplicationGroup
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectApplicationGroup

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Configure firewall application groups.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectApplicationGroup("trname", {
        comment: "terraform-tefv-comment",
        type: "application",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectApplicationGroup("trname",
        comment="terraform-tefv-comment",
        type="application")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewObjectApplicationGroup(ctx, "trname", &fortimanager.ObjectApplicationGroupArgs{
    			Comment: pulumi.String("terraform-tefv-comment"),
    			Type:    pulumi.String("application"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortimanager.ObjectApplicationGroup("trname", new()
        {
            Comment = "terraform-tefv-comment",
            Type = "application",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectApplicationGroup;
    import com.pulumi.fortimanager.ObjectApplicationGroupArgs;
    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 trname = new ObjectApplicationGroup("trname", ObjectApplicationGroupArgs.builder()
                .comment("terraform-tefv-comment")
                .type("application")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectApplicationGroup
        properties:
          comment: terraform-tefv-comment
          type: application
    

    Create ObjectApplicationGroup Resource

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

    Constructor syntax

    new ObjectApplicationGroup(name: string, args?: ObjectApplicationGroupArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectApplicationGroup(resource_name: str,
                               args: Optional[ObjectApplicationGroupArgs] = None,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectApplicationGroup(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               adom: Optional[str] = None,
                               applications: Optional[Sequence[float]] = None,
                               behavior: Optional[str] = None,
                               categories: Optional[Sequence[float]] = None,
                               comment: Optional[str] = None,
                               name: Optional[str] = None,
                               object_application_group_id: Optional[str] = None,
                               popularities: Optional[Sequence[str]] = None,
                               protocols: Optional[str] = None,
                               risks: Optional[Sequence[float]] = None,
                               scopetype: Optional[str] = None,
                               technology: Optional[str] = None,
                               type: Optional[str] = None,
                               vendor: Optional[str] = None)
    func NewObjectApplicationGroup(ctx *Context, name string, args *ObjectApplicationGroupArgs, opts ...ResourceOption) (*ObjectApplicationGroup, error)
    public ObjectApplicationGroup(string name, ObjectApplicationGroupArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectApplicationGroup(String name, ObjectApplicationGroupArgs args)
    public ObjectApplicationGroup(String name, ObjectApplicationGroupArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectApplicationGroup
    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 ObjectApplicationGroupArgs
    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 ObjectApplicationGroupArgs
    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 ObjectApplicationGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectApplicationGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectApplicationGroupArgs
    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 objectApplicationGroupResource = new Fortimanager.ObjectApplicationGroup("objectApplicationGroupResource", new()
    {
        Adom = "string",
        Applications = new[]
        {
            0,
        },
        Behavior = "string",
        Categories = new[]
        {
            0,
        },
        Comment = "string",
        Name = "string",
        ObjectApplicationGroupId = "string",
        Popularities = new[]
        {
            "string",
        },
        Protocols = "string",
        Risks = new[]
        {
            0,
        },
        Scopetype = "string",
        Technology = "string",
        Type = "string",
        Vendor = "string",
    });
    
    example, err := fortimanager.NewObjectApplicationGroup(ctx, "objectApplicationGroupResource", &fortimanager.ObjectApplicationGroupArgs{
    Adom: pulumi.String("string"),
    Applications: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    Behavior: pulumi.String("string"),
    Categories: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    Comment: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectApplicationGroupId: pulumi.String("string"),
    Popularities: pulumi.StringArray{
    pulumi.String("string"),
    },
    Protocols: pulumi.String("string"),
    Risks: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    Scopetype: pulumi.String("string"),
    Technology: pulumi.String("string"),
    Type: pulumi.String("string"),
    Vendor: pulumi.String("string"),
    })
    
    var objectApplicationGroupResource = new ObjectApplicationGroup("objectApplicationGroupResource", ObjectApplicationGroupArgs.builder()
        .adom("string")
        .applications(0)
        .behavior("string")
        .categories(0)
        .comment("string")
        .name("string")
        .objectApplicationGroupId("string")
        .popularities("string")
        .protocols("string")
        .risks(0)
        .scopetype("string")
        .technology("string")
        .type("string")
        .vendor("string")
        .build());
    
    object_application_group_resource = fortimanager.ObjectApplicationGroup("objectApplicationGroupResource",
        adom="string",
        applications=[0],
        behavior="string",
        categories=[0],
        comment="string",
        name="string",
        object_application_group_id="string",
        popularities=["string"],
        protocols="string",
        risks=[0],
        scopetype="string",
        technology="string",
        type="string",
        vendor="string")
    
    const objectApplicationGroupResource = new fortimanager.ObjectApplicationGroup("objectApplicationGroupResource", {
        adom: "string",
        applications: [0],
        behavior: "string",
        categories: [0],
        comment: "string",
        name: "string",
        objectApplicationGroupId: "string",
        popularities: ["string"],
        protocols: "string",
        risks: [0],
        scopetype: "string",
        technology: "string",
        type: "string",
        vendor: "string",
    });
    
    type: fortimanager:ObjectApplicationGroup
    properties:
        adom: string
        applications:
            - 0
        behavior: string
        categories:
            - 0
        comment: string
        name: string
        objectApplicationGroupId: string
        popularities:
            - string
        protocols: string
        risks:
            - 0
        scopetype: string
        technology: string
        type: string
        vendor: string
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Applications List<double>
    Application ID list.
    Behavior string
    Application behavior filter.
    Categories List<double>
    Application category ID list.
    Comment string
    Comment
    Name string
    Application group name.
    ObjectApplicationGroupId string
    an identifier for the resource with format {{name}}.
    Popularities List<string>
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    Protocols string
    Application protocol filter.
    Risks List<double>
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Technology string
    Application technology filter.
    Type string
    Application group type. Valid values: application, category.
    Vendor string
    Application vendor filter.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Applications []float64
    Application ID list.
    Behavior string
    Application behavior filter.
    Categories []float64
    Application category ID list.
    Comment string
    Comment
    Name string
    Application group name.
    ObjectApplicationGroupId string
    an identifier for the resource with format {{name}}.
    Popularities []string
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    Protocols string
    Application protocol filter.
    Risks []float64
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Technology string
    Application technology filter.
    Type string
    Application group type. Valid values: application, category.
    Vendor string
    Application vendor filter.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applications List<Double>
    Application ID list.
    behavior String
    Application behavior filter.
    categories List<Double>
    Application category ID list.
    comment String
    Comment
    name String
    Application group name.
    objectApplicationGroupId String
    an identifier for the resource with format {{name}}.
    popularities List<String>
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    protocols String
    Application protocol filter.
    risks List<Double>
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    technology String
    Application technology filter.
    type String
    Application group type. Valid values: application, category.
    vendor String
    Application vendor filter.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applications number[]
    Application ID list.
    behavior string
    Application behavior filter.
    categories number[]
    Application category ID list.
    comment string
    Comment
    name string
    Application group name.
    objectApplicationGroupId string
    an identifier for the resource with format {{name}}.
    popularities string[]
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    protocols string
    Application protocol filter.
    risks number[]
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    technology string
    Application technology filter.
    type string
    Application group type. Valid values: application, category.
    vendor string
    Application vendor filter.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applications Sequence[float]
    Application ID list.
    behavior str
    Application behavior filter.
    categories Sequence[float]
    Application category ID list.
    comment str
    Comment
    name str
    Application group name.
    object_application_group_id str
    an identifier for the resource with format {{name}}.
    popularities Sequence[str]
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    protocols str
    Application protocol filter.
    risks Sequence[float]
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    technology str
    Application technology filter.
    type str
    Application group type. Valid values: application, category.
    vendor str
    Application vendor filter.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applications List<Number>
    Application ID list.
    behavior String
    Application behavior filter.
    categories List<Number>
    Application category ID list.
    comment String
    Comment
    name String
    Application group name.
    objectApplicationGroupId String
    an identifier for the resource with format {{name}}.
    popularities List<String>
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    protocols String
    Application protocol filter.
    risks List<Number>
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    technology String
    Application technology filter.
    type String
    Application group type. Valid values: application, category.
    vendor String
    Application vendor filter.

    Outputs

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

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

    Look up Existing ObjectApplicationGroup Resource

    Get an existing ObjectApplicationGroup 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?: ObjectApplicationGroupState, opts?: CustomResourceOptions): ObjectApplicationGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            applications: Optional[Sequence[float]] = None,
            behavior: Optional[str] = None,
            categories: Optional[Sequence[float]] = None,
            comment: Optional[str] = None,
            name: Optional[str] = None,
            object_application_group_id: Optional[str] = None,
            popularities: Optional[Sequence[str]] = None,
            protocols: Optional[str] = None,
            risks: Optional[Sequence[float]] = None,
            scopetype: Optional[str] = None,
            technology: Optional[str] = None,
            type: Optional[str] = None,
            vendor: Optional[str] = None) -> ObjectApplicationGroup
    func GetObjectApplicationGroup(ctx *Context, name string, id IDInput, state *ObjectApplicationGroupState, opts ...ResourceOption) (*ObjectApplicationGroup, error)
    public static ObjectApplicationGroup Get(string name, Input<string> id, ObjectApplicationGroupState? state, CustomResourceOptions? opts = null)
    public static ObjectApplicationGroup get(String name, Output<String> id, ObjectApplicationGroupState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectApplicationGroup    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Applications List<double>
    Application ID list.
    Behavior string
    Application behavior filter.
    Categories List<double>
    Application category ID list.
    Comment string
    Comment
    Name string
    Application group name.
    ObjectApplicationGroupId string
    an identifier for the resource with format {{name}}.
    Popularities List<string>
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    Protocols string
    Application protocol filter.
    Risks List<double>
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Technology string
    Application technology filter.
    Type string
    Application group type. Valid values: application, category.
    Vendor string
    Application vendor filter.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Applications []float64
    Application ID list.
    Behavior string
    Application behavior filter.
    Categories []float64
    Application category ID list.
    Comment string
    Comment
    Name string
    Application group name.
    ObjectApplicationGroupId string
    an identifier for the resource with format {{name}}.
    Popularities []string
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    Protocols string
    Application protocol filter.
    Risks []float64
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Technology string
    Application technology filter.
    Type string
    Application group type. Valid values: application, category.
    Vendor string
    Application vendor filter.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applications List<Double>
    Application ID list.
    behavior String
    Application behavior filter.
    categories List<Double>
    Application category ID list.
    comment String
    Comment
    name String
    Application group name.
    objectApplicationGroupId String
    an identifier for the resource with format {{name}}.
    popularities List<String>
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    protocols String
    Application protocol filter.
    risks List<Double>
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    technology String
    Application technology filter.
    type String
    Application group type. Valid values: application, category.
    vendor String
    Application vendor filter.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applications number[]
    Application ID list.
    behavior string
    Application behavior filter.
    categories number[]
    Application category ID list.
    comment string
    Comment
    name string
    Application group name.
    objectApplicationGroupId string
    an identifier for the resource with format {{name}}.
    popularities string[]
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    protocols string
    Application protocol filter.
    risks number[]
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    technology string
    Application technology filter.
    type string
    Application group type. Valid values: application, category.
    vendor string
    Application vendor filter.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applications Sequence[float]
    Application ID list.
    behavior str
    Application behavior filter.
    categories Sequence[float]
    Application category ID list.
    comment str
    Comment
    name str
    Application group name.
    object_application_group_id str
    an identifier for the resource with format {{name}}.
    popularities Sequence[str]
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    protocols str
    Application protocol filter.
    risks Sequence[float]
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    technology str
    Application technology filter.
    type str
    Application group type. Valid values: application, category.
    vendor str
    Application vendor filter.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applications List<Number>
    Application ID list.
    behavior String
    Application behavior filter.
    categories List<Number>
    Application category ID list.
    comment String
    Comment
    name String
    Application group name.
    objectApplicationGroupId String
    an identifier for the resource with format {{name}}.
    popularities List<String>
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    protocols String
    Application protocol filter.
    risks List<Number>
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    technology String
    Application technology filter.
    type String
    Application group type. Valid values: application, category.
    vendor String
    Application vendor filter.

    Import

    ObjectApplication Group can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectApplicationGroup:ObjectApplicationGroup labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

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

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev