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

fortimanager.ObjectApplicationList

Explore with Pulumi AI

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

    Configure application control lists.

    The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • default_network_services: fortimanager.ObjectApplicationListDefaultnetworkservices
    • entries: fortimanager.ObjectApplicationListEntries

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectApplicationList("trname", {
        appReplacemsg: "enable",
        comment: "terraform-tefv-comment",
        deepAppInspection: "enable",
        extendedLog: "disable",
        otherApplicationAction: "pass",
        otherApplicationLog: "disable",
        unknownApplicationAction: "pass",
        unknownApplicationLog: "disable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectApplicationList("trname",
        app_replacemsg="enable",
        comment="terraform-tefv-comment",
        deep_app_inspection="enable",
        extended_log="disable",
        other_application_action="pass",
        other_application_log="disable",
        unknown_application_action="pass",
        unknown_application_log="disable")
    
    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.NewObjectApplicationList(ctx, "trname", &fortimanager.ObjectApplicationListArgs{
    			AppReplacemsg:            pulumi.String("enable"),
    			Comment:                  pulumi.String("terraform-tefv-comment"),
    			DeepAppInspection:        pulumi.String("enable"),
    			ExtendedLog:              pulumi.String("disable"),
    			OtherApplicationAction:   pulumi.String("pass"),
    			OtherApplicationLog:      pulumi.String("disable"),
    			UnknownApplicationAction: pulumi.String("pass"),
    			UnknownApplicationLog:    pulumi.String("disable"),
    		})
    		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.ObjectApplicationList("trname", new()
        {
            AppReplacemsg = "enable",
            Comment = "terraform-tefv-comment",
            DeepAppInspection = "enable",
            ExtendedLog = "disable",
            OtherApplicationAction = "pass",
            OtherApplicationLog = "disable",
            UnknownApplicationAction = "pass",
            UnknownApplicationLog = "disable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectApplicationList;
    import com.pulumi.fortimanager.ObjectApplicationListArgs;
    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 ObjectApplicationList("trname", ObjectApplicationListArgs.builder()
                .appReplacemsg("enable")
                .comment("terraform-tefv-comment")
                .deepAppInspection("enable")
                .extendedLog("disable")
                .otherApplicationAction("pass")
                .otherApplicationLog("disable")
                .unknownApplicationAction("pass")
                .unknownApplicationLog("disable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectApplicationList
        properties:
          appReplacemsg: enable
          comment: terraform-tefv-comment
          deepAppInspection: enable
          extendedLog: disable
          otherApplicationAction: pass
          otherApplicationLog: disable
          unknownApplicationAction: pass
          unknownApplicationLog: disable
    

    Create ObjectApplicationList Resource

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

    Constructor syntax

    new ObjectApplicationList(name: string, args?: ObjectApplicationListArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectApplicationList(resource_name: str,
                              args: Optional[ObjectApplicationListArgs] = None,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectApplicationList(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              adom: Optional[str] = None,
                              app_replacemsg: Optional[str] = None,
                              comment: Optional[str] = None,
                              control_default_network_services: Optional[str] = None,
                              deep_app_inspection: Optional[str] = None,
                              default_network_services: Optional[Sequence[ObjectApplicationListDefaultNetworkServiceArgs]] = None,
                              dynamic_sort_subtable: Optional[str] = None,
                              enforce_default_app_port: Optional[str] = None,
                              entries: Optional[Sequence[ObjectApplicationListEntryArgs]] = None,
                              extended_log: Optional[str] = None,
                              force_inclusion_ssl_di_sigs: Optional[str] = None,
                              name: Optional[str] = None,
                              object_application_list_id: Optional[str] = None,
                              options: Optional[Sequence[str]] = None,
                              other_application_action: Optional[str] = None,
                              other_application_log: Optional[str] = None,
                              p2p_black_lists: Optional[Sequence[str]] = None,
                              p2p_block_lists: Optional[Sequence[str]] = None,
                              replacemsg_group: Optional[str] = None,
                              scopetype: Optional[str] = None,
                              unknown_application_action: Optional[str] = None,
                              unknown_application_log: Optional[str] = None)
    func NewObjectApplicationList(ctx *Context, name string, args *ObjectApplicationListArgs, opts ...ResourceOption) (*ObjectApplicationList, error)
    public ObjectApplicationList(string name, ObjectApplicationListArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectApplicationList(String name, ObjectApplicationListArgs args)
    public ObjectApplicationList(String name, ObjectApplicationListArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectApplicationList
    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 ObjectApplicationListArgs
    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 ObjectApplicationListArgs
    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 ObjectApplicationListArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectApplicationListArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectApplicationListArgs
    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 objectApplicationListResource = new Fortimanager.ObjectApplicationList("objectApplicationListResource", new()
    {
        Adom = "string",
        AppReplacemsg = "string",
        Comment = "string",
        ControlDefaultNetworkServices = "string",
        DeepAppInspection = "string",
        DefaultNetworkServices = new[]
        {
            new Fortimanager.Inputs.ObjectApplicationListDefaultNetworkServiceArgs
            {
                Id = 0,
                Port = 0,
                Services = new[]
                {
                    "string",
                },
                ViolationAction = "string",
            },
        },
        DynamicSortSubtable = "string",
        EnforceDefaultAppPort = "string",
        Entries = new[]
        {
            new Fortimanager.Inputs.ObjectApplicationListEntryArgs
            {
                Action = "string",
                Applications = new[]
                {
                    0,
                },
                Behaviors = new[]
                {
                    "string",
                },
                Category = "string",
                Exclusions = new[]
                {
                    0,
                },
                Id = 0,
                Log = "string",
                LogPacket = "string",
                Parameters = new[]
                {
                    new Fortimanager.Inputs.ObjectApplicationListEntryParameterArgs
                    {
                        Id = 0,
                        Members = new[]
                        {
                            new Fortimanager.Inputs.ObjectApplicationListEntryParameterMemberArgs
                            {
                                Id = 0,
                                Name = "string",
                                Value = "string",
                            },
                        },
                        Value = "string",
                    },
                },
                PerIpShaper = "string",
                Popularities = new[]
                {
                    "string",
                },
                Protocols = new[]
                {
                    "string",
                },
                Quarantine = "string",
                QuarantineExpiry = "string",
                QuarantineLog = "string",
                RateCount = 0,
                RateDuration = 0,
                RateMode = "string",
                RateTrack = "string",
                Risks = new[]
                {
                    0,
                },
                SessionTtl = 0,
                Shaper = "string",
                ShaperReverse = "string",
                SubCategories = new[]
                {
                    0,
                },
                Technologies = new[]
                {
                    "string",
                },
                Vendors = new[]
                {
                    "string",
                },
            },
        },
        ExtendedLog = "string",
        ForceInclusionSslDiSigs = "string",
        Name = "string",
        ObjectApplicationListId = "string",
        Options = new[]
        {
            "string",
        },
        OtherApplicationAction = "string",
        OtherApplicationLog = "string",
        P2pBlackLists = new[]
        {
            "string",
        },
        P2pBlockLists = new[]
        {
            "string",
        },
        ReplacemsgGroup = "string",
        Scopetype = "string",
        UnknownApplicationAction = "string",
        UnknownApplicationLog = "string",
    });
    
    example, err := fortimanager.NewObjectApplicationList(ctx, "objectApplicationListResource", &fortimanager.ObjectApplicationListArgs{
    Adom: pulumi.String("string"),
    AppReplacemsg: pulumi.String("string"),
    Comment: pulumi.String("string"),
    ControlDefaultNetworkServices: pulumi.String("string"),
    DeepAppInspection: pulumi.String("string"),
    DefaultNetworkServices: .ObjectApplicationListDefaultNetworkServiceArray{
    &.ObjectApplicationListDefaultNetworkServiceArgs{
    Id: pulumi.Float64(0),
    Port: pulumi.Float64(0),
    Services: pulumi.StringArray{
    pulumi.String("string"),
    },
    ViolationAction: pulumi.String("string"),
    },
    },
    DynamicSortSubtable: pulumi.String("string"),
    EnforceDefaultAppPort: pulumi.String("string"),
    Entries: .ObjectApplicationListEntryArray{
    &.ObjectApplicationListEntryArgs{
    Action: pulumi.String("string"),
    Applications: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    Behaviors: pulumi.StringArray{
    pulumi.String("string"),
    },
    Category: pulumi.String("string"),
    Exclusions: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    Id: pulumi.Float64(0),
    Log: pulumi.String("string"),
    LogPacket: pulumi.String("string"),
    Parameters: .ObjectApplicationListEntryParameterArray{
    &.ObjectApplicationListEntryParameterArgs{
    Id: pulumi.Float64(0),
    Members: .ObjectApplicationListEntryParameterMemberArray{
    &.ObjectApplicationListEntryParameterMemberArgs{
    Id: pulumi.Float64(0),
    Name: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    Value: pulumi.String("string"),
    },
    },
    PerIpShaper: pulumi.String("string"),
    Popularities: pulumi.StringArray{
    pulumi.String("string"),
    },
    Protocols: pulumi.StringArray{
    pulumi.String("string"),
    },
    Quarantine: pulumi.String("string"),
    QuarantineExpiry: pulumi.String("string"),
    QuarantineLog: pulumi.String("string"),
    RateCount: pulumi.Float64(0),
    RateDuration: pulumi.Float64(0),
    RateMode: pulumi.String("string"),
    RateTrack: pulumi.String("string"),
    Risks: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    SessionTtl: pulumi.Float64(0),
    Shaper: pulumi.String("string"),
    ShaperReverse: pulumi.String("string"),
    SubCategories: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    Technologies: pulumi.StringArray{
    pulumi.String("string"),
    },
    Vendors: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    ExtendedLog: pulumi.String("string"),
    ForceInclusionSslDiSigs: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectApplicationListId: pulumi.String("string"),
    Options: pulumi.StringArray{
    pulumi.String("string"),
    },
    OtherApplicationAction: pulumi.String("string"),
    OtherApplicationLog: pulumi.String("string"),
    P2pBlackLists: pulumi.StringArray{
    pulumi.String("string"),
    },
    P2pBlockLists: pulumi.StringArray{
    pulumi.String("string"),
    },
    ReplacemsgGroup: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    UnknownApplicationAction: pulumi.String("string"),
    UnknownApplicationLog: pulumi.String("string"),
    })
    
    var objectApplicationListResource = new ObjectApplicationList("objectApplicationListResource", ObjectApplicationListArgs.builder()
        .adom("string")
        .appReplacemsg("string")
        .comment("string")
        .controlDefaultNetworkServices("string")
        .deepAppInspection("string")
        .defaultNetworkServices(ObjectApplicationListDefaultNetworkServiceArgs.builder()
            .id(0)
            .port(0)
            .services("string")
            .violationAction("string")
            .build())
        .dynamicSortSubtable("string")
        .enforceDefaultAppPort("string")
        .entries(ObjectApplicationListEntryArgs.builder()
            .action("string")
            .applications(0)
            .behaviors("string")
            .category("string")
            .exclusions(0)
            .id(0)
            .log("string")
            .logPacket("string")
            .parameters(ObjectApplicationListEntryParameterArgs.builder()
                .id(0)
                .members(ObjectApplicationListEntryParameterMemberArgs.builder()
                    .id(0)
                    .name("string")
                    .value("string")
                    .build())
                .value("string")
                .build())
            .perIpShaper("string")
            .popularities("string")
            .protocols("string")
            .quarantine("string")
            .quarantineExpiry("string")
            .quarantineLog("string")
            .rateCount(0)
            .rateDuration(0)
            .rateMode("string")
            .rateTrack("string")
            .risks(0)
            .sessionTtl(0)
            .shaper("string")
            .shaperReverse("string")
            .subCategories(0)
            .technologies("string")
            .vendors("string")
            .build())
        .extendedLog("string")
        .forceInclusionSslDiSigs("string")
        .name("string")
        .objectApplicationListId("string")
        .options("string")
        .otherApplicationAction("string")
        .otherApplicationLog("string")
        .p2pBlackLists("string")
        .p2pBlockLists("string")
        .replacemsgGroup("string")
        .scopetype("string")
        .unknownApplicationAction("string")
        .unknownApplicationLog("string")
        .build());
    
    object_application_list_resource = fortimanager.ObjectApplicationList("objectApplicationListResource",
        adom="string",
        app_replacemsg="string",
        comment="string",
        control_default_network_services="string",
        deep_app_inspection="string",
        default_network_services=[{
            "id": 0,
            "port": 0,
            "services": ["string"],
            "violation_action": "string",
        }],
        dynamic_sort_subtable="string",
        enforce_default_app_port="string",
        entries=[{
            "action": "string",
            "applications": [0],
            "behaviors": ["string"],
            "category": "string",
            "exclusions": [0],
            "id": 0,
            "log": "string",
            "log_packet": "string",
            "parameters": [{
                "id": 0,
                "members": [{
                    "id": 0,
                    "name": "string",
                    "value": "string",
                }],
                "value": "string",
            }],
            "per_ip_shaper": "string",
            "popularities": ["string"],
            "protocols": ["string"],
            "quarantine": "string",
            "quarantine_expiry": "string",
            "quarantine_log": "string",
            "rate_count": 0,
            "rate_duration": 0,
            "rate_mode": "string",
            "rate_track": "string",
            "risks": [0],
            "session_ttl": 0,
            "shaper": "string",
            "shaper_reverse": "string",
            "sub_categories": [0],
            "technologies": ["string"],
            "vendors": ["string"],
        }],
        extended_log="string",
        force_inclusion_ssl_di_sigs="string",
        name="string",
        object_application_list_id="string",
        options=["string"],
        other_application_action="string",
        other_application_log="string",
        p2p_black_lists=["string"],
        p2p_block_lists=["string"],
        replacemsg_group="string",
        scopetype="string",
        unknown_application_action="string",
        unknown_application_log="string")
    
    const objectApplicationListResource = new fortimanager.ObjectApplicationList("objectApplicationListResource", {
        adom: "string",
        appReplacemsg: "string",
        comment: "string",
        controlDefaultNetworkServices: "string",
        deepAppInspection: "string",
        defaultNetworkServices: [{
            id: 0,
            port: 0,
            services: ["string"],
            violationAction: "string",
        }],
        dynamicSortSubtable: "string",
        enforceDefaultAppPort: "string",
        entries: [{
            action: "string",
            applications: [0],
            behaviors: ["string"],
            category: "string",
            exclusions: [0],
            id: 0,
            log: "string",
            logPacket: "string",
            parameters: [{
                id: 0,
                members: [{
                    id: 0,
                    name: "string",
                    value: "string",
                }],
                value: "string",
            }],
            perIpShaper: "string",
            popularities: ["string"],
            protocols: ["string"],
            quarantine: "string",
            quarantineExpiry: "string",
            quarantineLog: "string",
            rateCount: 0,
            rateDuration: 0,
            rateMode: "string",
            rateTrack: "string",
            risks: [0],
            sessionTtl: 0,
            shaper: "string",
            shaperReverse: "string",
            subCategories: [0],
            technologies: ["string"],
            vendors: ["string"],
        }],
        extendedLog: "string",
        forceInclusionSslDiSigs: "string",
        name: "string",
        objectApplicationListId: "string",
        options: ["string"],
        otherApplicationAction: "string",
        otherApplicationLog: "string",
        p2pBlackLists: ["string"],
        p2pBlockLists: ["string"],
        replacemsgGroup: "string",
        scopetype: "string",
        unknownApplicationAction: "string",
        unknownApplicationLog: "string",
    });
    
    type: fortimanager:ObjectApplicationList
    properties:
        adom: string
        appReplacemsg: string
        comment: string
        controlDefaultNetworkServices: string
        deepAppInspection: string
        defaultNetworkServices:
            - id: 0
              port: 0
              services:
                - string
              violationAction: string
        dynamicSortSubtable: string
        enforceDefaultAppPort: string
        entries:
            - action: string
              applications:
                - 0
              behaviors:
                - string
              category: string
              exclusions:
                - 0
              id: 0
              log: string
              logPacket: string
              parameters:
                - id: 0
                  members:
                    - id: 0
                      name: string
                      value: string
                  value: string
              perIpShaper: string
              popularities:
                - string
              protocols:
                - string
              quarantine: string
              quarantineExpiry: string
              quarantineLog: string
              rateCount: 0
              rateDuration: 0
              rateMode: string
              rateTrack: string
              risks:
                - 0
              sessionTtl: 0
              shaper: string
              shaperReverse: string
              subCategories:
                - 0
              technologies:
                - string
              vendors:
                - string
        extendedLog: string
        forceInclusionSslDiSigs: string
        name: string
        objectApplicationListId: string
        options:
            - string
        otherApplicationAction: string
        otherApplicationLog: string
        p2pBlackLists:
            - string
        p2pBlockLists:
            - string
        replacemsgGroup: string
        scopetype: string
        unknownApplicationAction: string
        unknownApplicationLog: string
    

    ObjectApplicationList 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 ObjectApplicationList 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.
    AppReplacemsg string
    Enable/disable replacement messages for blocked applications. Valid values: disable, enable.
    Comment string
    comments
    ControlDefaultNetworkServices string
    Enable/disable enforcement of protocols over selected ports. Valid values: disable, enable.
    DeepAppInspection string
    Enable/disable deep application inspection. Valid values: disable, enable.
    DefaultNetworkServices List<ObjectApplicationListDefaultNetworkService>
    Default-Network-Services. The structure of default_network_services block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    EnforceDefaultAppPort string
    Enable/disable default application port enforcement for allowed applications. Valid values: disable, enable.
    Entries List<ObjectApplicationListEntry>
    Entries. The structure of entries block is documented below.
    ExtendedLog string
    Enable/disable extended logging. Valid values: disable, enable.
    ForceInclusionSslDiSigs string
    Enable/disable forced inclusion of SSL deep inspection signatures. Valid values: disable, enable.
    Name string
    List name.
    ObjectApplicationListId string
    an identifier for the resource with format {{name}}.
    Options List<string>
    Basic application protocol signatures allowed by default. Valid values: allow-dns, allow-icmp, allow-http, allow-ssl, allow-quic.
    OtherApplicationAction string
    Action for other applications. Valid values: pass, block.
    OtherApplicationLog string
    Enable/disable logging for other applications. Valid values: disable, enable.
    P2pBlackLists List<string>
    P2P applications to be black listed. Valid values: skype, edonkey, bittorrent.
    P2pBlockLists List<string>
    P2P applications to be blocklisted. Valid values: skype, edonkey, bittorrent.
    ReplacemsgGroup string
    Replacement message group.
    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.
    UnknownApplicationAction string
    Pass or block traffic from unknown applications. Valid values: pass, block.
    UnknownApplicationLog string
    Enable/disable logging for unknown applications. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AppReplacemsg string
    Enable/disable replacement messages for blocked applications. Valid values: disable, enable.
    Comment string
    comments
    ControlDefaultNetworkServices string
    Enable/disable enforcement of protocols over selected ports. Valid values: disable, enable.
    DeepAppInspection string
    Enable/disable deep application inspection. Valid values: disable, enable.
    DefaultNetworkServices []ObjectApplicationListDefaultNetworkServiceArgs
    Default-Network-Services. The structure of default_network_services block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    EnforceDefaultAppPort string
    Enable/disable default application port enforcement for allowed applications. Valid values: disable, enable.
    Entries []ObjectApplicationListEntryArgs
    Entries. The structure of entries block is documented below.
    ExtendedLog string
    Enable/disable extended logging. Valid values: disable, enable.
    ForceInclusionSslDiSigs string
    Enable/disable forced inclusion of SSL deep inspection signatures. Valid values: disable, enable.
    Name string
    List name.
    ObjectApplicationListId string
    an identifier for the resource with format {{name}}.
    Options []string
    Basic application protocol signatures allowed by default. Valid values: allow-dns, allow-icmp, allow-http, allow-ssl, allow-quic.
    OtherApplicationAction string
    Action for other applications. Valid values: pass, block.
    OtherApplicationLog string
    Enable/disable logging for other applications. Valid values: disable, enable.
    P2pBlackLists []string
    P2P applications to be black listed. Valid values: skype, edonkey, bittorrent.
    P2pBlockLists []string
    P2P applications to be blocklisted. Valid values: skype, edonkey, bittorrent.
    ReplacemsgGroup string
    Replacement message group.
    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.
    UnknownApplicationAction string
    Pass or block traffic from unknown applications. Valid values: pass, block.
    UnknownApplicationLog string
    Enable/disable logging for unknown applications. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    appReplacemsg String
    Enable/disable replacement messages for blocked applications. Valid values: disable, enable.
    comment String
    comments
    controlDefaultNetworkServices String
    Enable/disable enforcement of protocols over selected ports. Valid values: disable, enable.
    deepAppInspection String
    Enable/disable deep application inspection. Valid values: disable, enable.
    defaultNetworkServices List<ObjectApplicationListDefaultNetworkService>
    Default-Network-Services. The structure of default_network_services block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    enforceDefaultAppPort String
    Enable/disable default application port enforcement for allowed applications. Valid values: disable, enable.
    entries List<ObjectApplicationListEntry>
    Entries. The structure of entries block is documented below.
    extendedLog String
    Enable/disable extended logging. Valid values: disable, enable.
    forceInclusionSslDiSigs String
    Enable/disable forced inclusion of SSL deep inspection signatures. Valid values: disable, enable.
    name String
    List name.
    objectApplicationListId String
    an identifier for the resource with format {{name}}.
    options List<String>
    Basic application protocol signatures allowed by default. Valid values: allow-dns, allow-icmp, allow-http, allow-ssl, allow-quic.
    otherApplicationAction String
    Action for other applications. Valid values: pass, block.
    otherApplicationLog String
    Enable/disable logging for other applications. Valid values: disable, enable.
    p2pBlackLists List<String>
    P2P applications to be black listed. Valid values: skype, edonkey, bittorrent.
    p2pBlockLists List<String>
    P2P applications to be blocklisted. Valid values: skype, edonkey, bittorrent.
    replacemsgGroup String
    Replacement message group.
    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.
    unknownApplicationAction String
    Pass or block traffic from unknown applications. Valid values: pass, block.
    unknownApplicationLog String
    Enable/disable logging for unknown applications. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    appReplacemsg string
    Enable/disable replacement messages for blocked applications. Valid values: disable, enable.
    comment string
    comments
    controlDefaultNetworkServices string
    Enable/disable enforcement of protocols over selected ports. Valid values: disable, enable.
    deepAppInspection string
    Enable/disable deep application inspection. Valid values: disable, enable.
    defaultNetworkServices ObjectApplicationListDefaultNetworkService[]
    Default-Network-Services. The structure of default_network_services block is documented below.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    enforceDefaultAppPort string
    Enable/disable default application port enforcement for allowed applications. Valid values: disable, enable.
    entries ObjectApplicationListEntry[]
    Entries. The structure of entries block is documented below.
    extendedLog string
    Enable/disable extended logging. Valid values: disable, enable.
    forceInclusionSslDiSigs string
    Enable/disable forced inclusion of SSL deep inspection signatures. Valid values: disable, enable.
    name string
    List name.
    objectApplicationListId string
    an identifier for the resource with format {{name}}.
    options string[]
    Basic application protocol signatures allowed by default. Valid values: allow-dns, allow-icmp, allow-http, allow-ssl, allow-quic.
    otherApplicationAction string
    Action for other applications. Valid values: pass, block.
    otherApplicationLog string
    Enable/disable logging for other applications. Valid values: disable, enable.
    p2pBlackLists string[]
    P2P applications to be black listed. Valid values: skype, edonkey, bittorrent.
    p2pBlockLists string[]
    P2P applications to be blocklisted. Valid values: skype, edonkey, bittorrent.
    replacemsgGroup string
    Replacement message group.
    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.
    unknownApplicationAction string
    Pass or block traffic from unknown applications. Valid values: pass, block.
    unknownApplicationLog string
    Enable/disable logging for unknown applications. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    app_replacemsg str
    Enable/disable replacement messages for blocked applications. Valid values: disable, enable.
    comment str
    comments
    control_default_network_services str
    Enable/disable enforcement of protocols over selected ports. Valid values: disable, enable.
    deep_app_inspection str
    Enable/disable deep application inspection. Valid values: disable, enable.
    default_network_services Sequence[ObjectApplicationListDefaultNetworkServiceArgs]
    Default-Network-Services. The structure of default_network_services block is documented below.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    enforce_default_app_port str
    Enable/disable default application port enforcement for allowed applications. Valid values: disable, enable.
    entries Sequence[ObjectApplicationListEntryArgs]
    Entries. The structure of entries block is documented below.
    extended_log str
    Enable/disable extended logging. Valid values: disable, enable.
    force_inclusion_ssl_di_sigs str
    Enable/disable forced inclusion of SSL deep inspection signatures. Valid values: disable, enable.
    name str
    List name.
    object_application_list_id str
    an identifier for the resource with format {{name}}.
    options Sequence[str]
    Basic application protocol signatures allowed by default. Valid values: allow-dns, allow-icmp, allow-http, allow-ssl, allow-quic.
    other_application_action str
    Action for other applications. Valid values: pass, block.
    other_application_log str
    Enable/disable logging for other applications. Valid values: disable, enable.
    p2p_black_lists Sequence[str]
    P2P applications to be black listed. Valid values: skype, edonkey, bittorrent.
    p2p_block_lists Sequence[str]
    P2P applications to be blocklisted. Valid values: skype, edonkey, bittorrent.
    replacemsg_group str
    Replacement message group.
    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.
    unknown_application_action str
    Pass or block traffic from unknown applications. Valid values: pass, block.
    unknown_application_log str
    Enable/disable logging for unknown applications. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    appReplacemsg String
    Enable/disable replacement messages for blocked applications. Valid values: disable, enable.
    comment String
    comments
    controlDefaultNetworkServices String
    Enable/disable enforcement of protocols over selected ports. Valid values: disable, enable.
    deepAppInspection String
    Enable/disable deep application inspection. Valid values: disable, enable.
    defaultNetworkServices List<Property Map>
    Default-Network-Services. The structure of default_network_services block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    enforceDefaultAppPort String
    Enable/disable default application port enforcement for allowed applications. Valid values: disable, enable.
    entries List<Property Map>
    Entries. The structure of entries block is documented below.
    extendedLog String
    Enable/disable extended logging. Valid values: disable, enable.
    forceInclusionSslDiSigs String
    Enable/disable forced inclusion of SSL deep inspection signatures. Valid values: disable, enable.
    name String
    List name.
    objectApplicationListId String
    an identifier for the resource with format {{name}}.
    options List<String>
    Basic application protocol signatures allowed by default. Valid values: allow-dns, allow-icmp, allow-http, allow-ssl, allow-quic.
    otherApplicationAction String
    Action for other applications. Valid values: pass, block.
    otherApplicationLog String
    Enable/disable logging for other applications. Valid values: disable, enable.
    p2pBlackLists List<String>
    P2P applications to be black listed. Valid values: skype, edonkey, bittorrent.
    p2pBlockLists List<String>
    P2P applications to be blocklisted. Valid values: skype, edonkey, bittorrent.
    replacemsgGroup String
    Replacement message group.
    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.
    unknownApplicationAction String
    Pass or block traffic from unknown applications. Valid values: pass, block.
    unknownApplicationLog String
    Enable/disable logging for unknown applications. Valid values: disable, enable.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectApplicationList 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 ObjectApplicationList Resource

    Get an existing ObjectApplicationList 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?: ObjectApplicationListState, opts?: CustomResourceOptions): ObjectApplicationList
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            app_replacemsg: Optional[str] = None,
            comment: Optional[str] = None,
            control_default_network_services: Optional[str] = None,
            deep_app_inspection: Optional[str] = None,
            default_network_services: Optional[Sequence[ObjectApplicationListDefaultNetworkServiceArgs]] = None,
            dynamic_sort_subtable: Optional[str] = None,
            enforce_default_app_port: Optional[str] = None,
            entries: Optional[Sequence[ObjectApplicationListEntryArgs]] = None,
            extended_log: Optional[str] = None,
            force_inclusion_ssl_di_sigs: Optional[str] = None,
            name: Optional[str] = None,
            object_application_list_id: Optional[str] = None,
            options: Optional[Sequence[str]] = None,
            other_application_action: Optional[str] = None,
            other_application_log: Optional[str] = None,
            p2p_black_lists: Optional[Sequence[str]] = None,
            p2p_block_lists: Optional[Sequence[str]] = None,
            replacemsg_group: Optional[str] = None,
            scopetype: Optional[str] = None,
            unknown_application_action: Optional[str] = None,
            unknown_application_log: Optional[str] = None) -> ObjectApplicationList
    func GetObjectApplicationList(ctx *Context, name string, id IDInput, state *ObjectApplicationListState, opts ...ResourceOption) (*ObjectApplicationList, error)
    public static ObjectApplicationList Get(string name, Input<string> id, ObjectApplicationListState? state, CustomResourceOptions? opts = null)
    public static ObjectApplicationList get(String name, Output<String> id, ObjectApplicationListState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectApplicationList    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.
    AppReplacemsg string
    Enable/disable replacement messages for blocked applications. Valid values: disable, enable.
    Comment string
    comments
    ControlDefaultNetworkServices string
    Enable/disable enforcement of protocols over selected ports. Valid values: disable, enable.
    DeepAppInspection string
    Enable/disable deep application inspection. Valid values: disable, enable.
    DefaultNetworkServices List<ObjectApplicationListDefaultNetworkService>
    Default-Network-Services. The structure of default_network_services block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    EnforceDefaultAppPort string
    Enable/disable default application port enforcement for allowed applications. Valid values: disable, enable.
    Entries List<ObjectApplicationListEntry>
    Entries. The structure of entries block is documented below.
    ExtendedLog string
    Enable/disable extended logging. Valid values: disable, enable.
    ForceInclusionSslDiSigs string
    Enable/disable forced inclusion of SSL deep inspection signatures. Valid values: disable, enable.
    Name string
    List name.
    ObjectApplicationListId string
    an identifier for the resource with format {{name}}.
    Options List<string>
    Basic application protocol signatures allowed by default. Valid values: allow-dns, allow-icmp, allow-http, allow-ssl, allow-quic.
    OtherApplicationAction string
    Action for other applications. Valid values: pass, block.
    OtherApplicationLog string
    Enable/disable logging for other applications. Valid values: disable, enable.
    P2pBlackLists List<string>
    P2P applications to be black listed. Valid values: skype, edonkey, bittorrent.
    P2pBlockLists List<string>
    P2P applications to be blocklisted. Valid values: skype, edonkey, bittorrent.
    ReplacemsgGroup string
    Replacement message group.
    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.
    UnknownApplicationAction string
    Pass or block traffic from unknown applications. Valid values: pass, block.
    UnknownApplicationLog string
    Enable/disable logging for unknown applications. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AppReplacemsg string
    Enable/disable replacement messages for blocked applications. Valid values: disable, enable.
    Comment string
    comments
    ControlDefaultNetworkServices string
    Enable/disable enforcement of protocols over selected ports. Valid values: disable, enable.
    DeepAppInspection string
    Enable/disable deep application inspection. Valid values: disable, enable.
    DefaultNetworkServices []ObjectApplicationListDefaultNetworkServiceArgs
    Default-Network-Services. The structure of default_network_services block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    EnforceDefaultAppPort string
    Enable/disable default application port enforcement for allowed applications. Valid values: disable, enable.
    Entries []ObjectApplicationListEntryArgs
    Entries. The structure of entries block is documented below.
    ExtendedLog string
    Enable/disable extended logging. Valid values: disable, enable.
    ForceInclusionSslDiSigs string
    Enable/disable forced inclusion of SSL deep inspection signatures. Valid values: disable, enable.
    Name string
    List name.
    ObjectApplicationListId string
    an identifier for the resource with format {{name}}.
    Options []string
    Basic application protocol signatures allowed by default. Valid values: allow-dns, allow-icmp, allow-http, allow-ssl, allow-quic.
    OtherApplicationAction string
    Action for other applications. Valid values: pass, block.
    OtherApplicationLog string
    Enable/disable logging for other applications. Valid values: disable, enable.
    P2pBlackLists []string
    P2P applications to be black listed. Valid values: skype, edonkey, bittorrent.
    P2pBlockLists []string
    P2P applications to be blocklisted. Valid values: skype, edonkey, bittorrent.
    ReplacemsgGroup string
    Replacement message group.
    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.
    UnknownApplicationAction string
    Pass or block traffic from unknown applications. Valid values: pass, block.
    UnknownApplicationLog string
    Enable/disable logging for unknown applications. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    appReplacemsg String
    Enable/disable replacement messages for blocked applications. Valid values: disable, enable.
    comment String
    comments
    controlDefaultNetworkServices String
    Enable/disable enforcement of protocols over selected ports. Valid values: disable, enable.
    deepAppInspection String
    Enable/disable deep application inspection. Valid values: disable, enable.
    defaultNetworkServices List<ObjectApplicationListDefaultNetworkService>
    Default-Network-Services. The structure of default_network_services block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    enforceDefaultAppPort String
    Enable/disable default application port enforcement for allowed applications. Valid values: disable, enable.
    entries List<ObjectApplicationListEntry>
    Entries. The structure of entries block is documented below.
    extendedLog String
    Enable/disable extended logging. Valid values: disable, enable.
    forceInclusionSslDiSigs String
    Enable/disable forced inclusion of SSL deep inspection signatures. Valid values: disable, enable.
    name String
    List name.
    objectApplicationListId String
    an identifier for the resource with format {{name}}.
    options List<String>
    Basic application protocol signatures allowed by default. Valid values: allow-dns, allow-icmp, allow-http, allow-ssl, allow-quic.
    otherApplicationAction String
    Action for other applications. Valid values: pass, block.
    otherApplicationLog String
    Enable/disable logging for other applications. Valid values: disable, enable.
    p2pBlackLists List<String>
    P2P applications to be black listed. Valid values: skype, edonkey, bittorrent.
    p2pBlockLists List<String>
    P2P applications to be blocklisted. Valid values: skype, edonkey, bittorrent.
    replacemsgGroup String
    Replacement message group.
    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.
    unknownApplicationAction String
    Pass or block traffic from unknown applications. Valid values: pass, block.
    unknownApplicationLog String
    Enable/disable logging for unknown applications. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    appReplacemsg string
    Enable/disable replacement messages for blocked applications. Valid values: disable, enable.
    comment string
    comments
    controlDefaultNetworkServices string
    Enable/disable enforcement of protocols over selected ports. Valid values: disable, enable.
    deepAppInspection string
    Enable/disable deep application inspection. Valid values: disable, enable.
    defaultNetworkServices ObjectApplicationListDefaultNetworkService[]
    Default-Network-Services. The structure of default_network_services block is documented below.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    enforceDefaultAppPort string
    Enable/disable default application port enforcement for allowed applications. Valid values: disable, enable.
    entries ObjectApplicationListEntry[]
    Entries. The structure of entries block is documented below.
    extendedLog string
    Enable/disable extended logging. Valid values: disable, enable.
    forceInclusionSslDiSigs string
    Enable/disable forced inclusion of SSL deep inspection signatures. Valid values: disable, enable.
    name string
    List name.
    objectApplicationListId string
    an identifier for the resource with format {{name}}.
    options string[]
    Basic application protocol signatures allowed by default. Valid values: allow-dns, allow-icmp, allow-http, allow-ssl, allow-quic.
    otherApplicationAction string
    Action for other applications. Valid values: pass, block.
    otherApplicationLog string
    Enable/disable logging for other applications. Valid values: disable, enable.
    p2pBlackLists string[]
    P2P applications to be black listed. Valid values: skype, edonkey, bittorrent.
    p2pBlockLists string[]
    P2P applications to be blocklisted. Valid values: skype, edonkey, bittorrent.
    replacemsgGroup string
    Replacement message group.
    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.
    unknownApplicationAction string
    Pass or block traffic from unknown applications. Valid values: pass, block.
    unknownApplicationLog string
    Enable/disable logging for unknown applications. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    app_replacemsg str
    Enable/disable replacement messages for blocked applications. Valid values: disable, enable.
    comment str
    comments
    control_default_network_services str
    Enable/disable enforcement of protocols over selected ports. Valid values: disable, enable.
    deep_app_inspection str
    Enable/disable deep application inspection. Valid values: disable, enable.
    default_network_services Sequence[ObjectApplicationListDefaultNetworkServiceArgs]
    Default-Network-Services. The structure of default_network_services block is documented below.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    enforce_default_app_port str
    Enable/disable default application port enforcement for allowed applications. Valid values: disable, enable.
    entries Sequence[ObjectApplicationListEntryArgs]
    Entries. The structure of entries block is documented below.
    extended_log str
    Enable/disable extended logging. Valid values: disable, enable.
    force_inclusion_ssl_di_sigs str
    Enable/disable forced inclusion of SSL deep inspection signatures. Valid values: disable, enable.
    name str
    List name.
    object_application_list_id str
    an identifier for the resource with format {{name}}.
    options Sequence[str]
    Basic application protocol signatures allowed by default. Valid values: allow-dns, allow-icmp, allow-http, allow-ssl, allow-quic.
    other_application_action str
    Action for other applications. Valid values: pass, block.
    other_application_log str
    Enable/disable logging for other applications. Valid values: disable, enable.
    p2p_black_lists Sequence[str]
    P2P applications to be black listed. Valid values: skype, edonkey, bittorrent.
    p2p_block_lists Sequence[str]
    P2P applications to be blocklisted. Valid values: skype, edonkey, bittorrent.
    replacemsg_group str
    Replacement message group.
    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.
    unknown_application_action str
    Pass or block traffic from unknown applications. Valid values: pass, block.
    unknown_application_log str
    Enable/disable logging for unknown applications. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    appReplacemsg String
    Enable/disable replacement messages for blocked applications. Valid values: disable, enable.
    comment String
    comments
    controlDefaultNetworkServices String
    Enable/disable enforcement of protocols over selected ports. Valid values: disable, enable.
    deepAppInspection String
    Enable/disable deep application inspection. Valid values: disable, enable.
    defaultNetworkServices List<Property Map>
    Default-Network-Services. The structure of default_network_services block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    enforceDefaultAppPort String
    Enable/disable default application port enforcement for allowed applications. Valid values: disable, enable.
    entries List<Property Map>
    Entries. The structure of entries block is documented below.
    extendedLog String
    Enable/disable extended logging. Valid values: disable, enable.
    forceInclusionSslDiSigs String
    Enable/disable forced inclusion of SSL deep inspection signatures. Valid values: disable, enable.
    name String
    List name.
    objectApplicationListId String
    an identifier for the resource with format {{name}}.
    options List<String>
    Basic application protocol signatures allowed by default. Valid values: allow-dns, allow-icmp, allow-http, allow-ssl, allow-quic.
    otherApplicationAction String
    Action for other applications. Valid values: pass, block.
    otherApplicationLog String
    Enable/disable logging for other applications. Valid values: disable, enable.
    p2pBlackLists List<String>
    P2P applications to be black listed. Valid values: skype, edonkey, bittorrent.
    p2pBlockLists List<String>
    P2P applications to be blocklisted. Valid values: skype, edonkey, bittorrent.
    replacemsgGroup String
    Replacement message group.
    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.
    unknownApplicationAction String
    Pass or block traffic from unknown applications. Valid values: pass, block.
    unknownApplicationLog String
    Enable/disable logging for unknown applications. Valid values: disable, enable.

    Supporting Types

    ObjectApplicationListDefaultNetworkService, ObjectApplicationListDefaultNetworkServiceArgs

    Id double
    Entry ID.
    Port double
    Port number.
    Services List<string>
    Network protocols. Valid values: http, ssh, telnet, ftp, dns, smtp, pop3, imap, snmp, nntp, https.
    ViolationAction string
    Action for protocols not white listed under selected port. Valid values: block, monitor, pass.
    Id float64
    Entry ID.
    Port float64
    Port number.
    Services []string
    Network protocols. Valid values: http, ssh, telnet, ftp, dns, smtp, pop3, imap, snmp, nntp, https.
    ViolationAction string
    Action for protocols not white listed under selected port. Valid values: block, monitor, pass.
    id Double
    Entry ID.
    port Double
    Port number.
    services List<String>
    Network protocols. Valid values: http, ssh, telnet, ftp, dns, smtp, pop3, imap, snmp, nntp, https.
    violationAction String
    Action for protocols not white listed under selected port. Valid values: block, monitor, pass.
    id number
    Entry ID.
    port number
    Port number.
    services string[]
    Network protocols. Valid values: http, ssh, telnet, ftp, dns, smtp, pop3, imap, snmp, nntp, https.
    violationAction string
    Action for protocols not white listed under selected port. Valid values: block, monitor, pass.
    id float
    Entry ID.
    port float
    Port number.
    services Sequence[str]
    Network protocols. Valid values: http, ssh, telnet, ftp, dns, smtp, pop3, imap, snmp, nntp, https.
    violation_action str
    Action for protocols not white listed under selected port. Valid values: block, monitor, pass.
    id Number
    Entry ID.
    port Number
    Port number.
    services List<String>
    Network protocols. Valid values: http, ssh, telnet, ftp, dns, smtp, pop3, imap, snmp, nntp, https.
    violationAction String
    Action for protocols not white listed under selected port. Valid values: block, monitor, pass.

    ObjectApplicationListEntry, ObjectApplicationListEntryArgs

    Action string
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    Applications List<double>
    ID of allowed applications.
    Behaviors List<string>
    Application behavior filter.
    Category string
    Category ID list.
    Exclusions List<double>
    ID of excluded applications.
    Id double
    Entry ID.
    Log string
    Enable/disable logging for this application list. Valid values: disable, enable.
    LogPacket string
    Enable/disable packet logging. Valid values: disable, enable.
    Parameters List<ObjectApplicationListEntryParameter>
    Parameters. The structure of parameters block is documented below.
    PerIpShaper string
    Per-IP traffic shaper.
    Popularities List<string>
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    Protocols List<string>
    Application protocol filter.
    Quarantine string
    Quarantine method. Valid values: none, attacker.
    QuarantineExpiry string
    Duration of quarantine. (Format ###d##h##m, minimum 1m, maximum 364d23h59m, default = 5m). Requires quarantine set to attacker.
    QuarantineLog string
    Enable/disable quarantine logging. Valid values: disable, enable.
    RateCount double
    Count of the rate.
    RateDuration double
    Duration (sec) of the rate.
    RateMode string
    Rate limit mode. Valid values: periodical, continuous.
    RateTrack string
    Track the packet protocol field. Valid values: none, src-ip, dest-ip, dhcp-client-mac, dns-domain.
    Risks List<double>
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    SessionTtl double
    Session TTL (0 = default).
    Shaper string
    Traffic shaper.
    ShaperReverse string
    Reverse traffic shaper.
    SubCategories List<double>
    Application Sub-category ID list.
    Technologies List<string>
    Application technology filter.
    Vendors List<string>
    Application vendor filter.
    Action string
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    Applications []float64
    ID of allowed applications.
    Behaviors []string
    Application behavior filter.
    Category string
    Category ID list.
    Exclusions []float64
    ID of excluded applications.
    Id float64
    Entry ID.
    Log string
    Enable/disable logging for this application list. Valid values: disable, enable.
    LogPacket string
    Enable/disable packet logging. Valid values: disable, enable.
    Parameters []ObjectApplicationListEntryParameter
    Parameters. The structure of parameters block is documented below.
    PerIpShaper string
    Per-IP traffic shaper.
    Popularities []string
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    Protocols []string
    Application protocol filter.
    Quarantine string
    Quarantine method. Valid values: none, attacker.
    QuarantineExpiry string
    Duration of quarantine. (Format ###d##h##m, minimum 1m, maximum 364d23h59m, default = 5m). Requires quarantine set to attacker.
    QuarantineLog string
    Enable/disable quarantine logging. Valid values: disable, enable.
    RateCount float64
    Count of the rate.
    RateDuration float64
    Duration (sec) of the rate.
    RateMode string
    Rate limit mode. Valid values: periodical, continuous.
    RateTrack string
    Track the packet protocol field. Valid values: none, src-ip, dest-ip, dhcp-client-mac, dns-domain.
    Risks []float64
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    SessionTtl float64
    Session TTL (0 = default).
    Shaper string
    Traffic shaper.
    ShaperReverse string
    Reverse traffic shaper.
    SubCategories []float64
    Application Sub-category ID list.
    Technologies []string
    Application technology filter.
    Vendors []string
    Application vendor filter.
    action String
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    applications List<Double>
    ID of allowed applications.
    behaviors List<String>
    Application behavior filter.
    category String
    Category ID list.
    exclusions List<Double>
    ID of excluded applications.
    id Double
    Entry ID.
    log String
    Enable/disable logging for this application list. Valid values: disable, enable.
    logPacket String
    Enable/disable packet logging. Valid values: disable, enable.
    parameters List<ObjectApplicationListEntryParameter>
    Parameters. The structure of parameters block is documented below.
    perIpShaper String
    Per-IP traffic shaper.
    popularities List<String>
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    protocols List<String>
    Application protocol filter.
    quarantine String
    Quarantine method. Valid values: none, attacker.
    quarantineExpiry String
    Duration of quarantine. (Format ###d##h##m, minimum 1m, maximum 364d23h59m, default = 5m). Requires quarantine set to attacker.
    quarantineLog String
    Enable/disable quarantine logging. Valid values: disable, enable.
    rateCount Double
    Count of the rate.
    rateDuration Double
    Duration (sec) of the rate.
    rateMode String
    Rate limit mode. Valid values: periodical, continuous.
    rateTrack String
    Track the packet protocol field. Valid values: none, src-ip, dest-ip, dhcp-client-mac, dns-domain.
    risks List<Double>
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    sessionTtl Double
    Session TTL (0 = default).
    shaper String
    Traffic shaper.
    shaperReverse String
    Reverse traffic shaper.
    subCategories List<Double>
    Application Sub-category ID list.
    technologies List<String>
    Application technology filter.
    vendors List<String>
    Application vendor filter.
    action string
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    applications number[]
    ID of allowed applications.
    behaviors string[]
    Application behavior filter.
    category string
    Category ID list.
    exclusions number[]
    ID of excluded applications.
    id number
    Entry ID.
    log string
    Enable/disable logging for this application list. Valid values: disable, enable.
    logPacket string
    Enable/disable packet logging. Valid values: disable, enable.
    parameters ObjectApplicationListEntryParameter[]
    Parameters. The structure of parameters block is documented below.
    perIpShaper string
    Per-IP traffic shaper.
    popularities string[]
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    protocols string[]
    Application protocol filter.
    quarantine string
    Quarantine method. Valid values: none, attacker.
    quarantineExpiry string
    Duration of quarantine. (Format ###d##h##m, minimum 1m, maximum 364d23h59m, default = 5m). Requires quarantine set to attacker.
    quarantineLog string
    Enable/disable quarantine logging. Valid values: disable, enable.
    rateCount number
    Count of the rate.
    rateDuration number
    Duration (sec) of the rate.
    rateMode string
    Rate limit mode. Valid values: periodical, continuous.
    rateTrack string
    Track the packet protocol field. Valid values: none, src-ip, dest-ip, dhcp-client-mac, dns-domain.
    risks number[]
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    sessionTtl number
    Session TTL (0 = default).
    shaper string
    Traffic shaper.
    shaperReverse string
    Reverse traffic shaper.
    subCategories number[]
    Application Sub-category ID list.
    technologies string[]
    Application technology filter.
    vendors string[]
    Application vendor filter.
    action str
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    applications Sequence[float]
    ID of allowed applications.
    behaviors Sequence[str]
    Application behavior filter.
    category str
    Category ID list.
    exclusions Sequence[float]
    ID of excluded applications.
    id float
    Entry ID.
    log str
    Enable/disable logging for this application list. Valid values: disable, enable.
    log_packet str
    Enable/disable packet logging. Valid values: disable, enable.
    parameters Sequence[ObjectApplicationListEntryParameter]
    Parameters. The structure of parameters block is documented below.
    per_ip_shaper str
    Per-IP traffic shaper.
    popularities Sequence[str]
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    protocols Sequence[str]
    Application protocol filter.
    quarantine str
    Quarantine method. Valid values: none, attacker.
    quarantine_expiry str
    Duration of quarantine. (Format ###d##h##m, minimum 1m, maximum 364d23h59m, default = 5m). Requires quarantine set to attacker.
    quarantine_log str
    Enable/disable quarantine logging. Valid values: disable, enable.
    rate_count float
    Count of the rate.
    rate_duration float
    Duration (sec) of the rate.
    rate_mode str
    Rate limit mode. Valid values: periodical, continuous.
    rate_track str
    Track the packet protocol field. Valid values: none, src-ip, dest-ip, dhcp-client-mac, dns-domain.
    risks Sequence[float]
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    session_ttl float
    Session TTL (0 = default).
    shaper str
    Traffic shaper.
    shaper_reverse str
    Reverse traffic shaper.
    sub_categories Sequence[float]
    Application Sub-category ID list.
    technologies Sequence[str]
    Application technology filter.
    vendors Sequence[str]
    Application vendor filter.
    action String
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    applications List<Number>
    ID of allowed applications.
    behaviors List<String>
    Application behavior filter.
    category String
    Category ID list.
    exclusions List<Number>
    ID of excluded applications.
    id Number
    Entry ID.
    log String
    Enable/disable logging for this application list. Valid values: disable, enable.
    logPacket String
    Enable/disable packet logging. Valid values: disable, enable.
    parameters List<Property Map>
    Parameters. The structure of parameters block is documented below.
    perIpShaper String
    Per-IP traffic shaper.
    popularities List<String>
    Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
    protocols List<String>
    Application protocol filter.
    quarantine String
    Quarantine method. Valid values: none, attacker.
    quarantineExpiry String
    Duration of quarantine. (Format ###d##h##m, minimum 1m, maximum 364d23h59m, default = 5m). Requires quarantine set to attacker.
    quarantineLog String
    Enable/disable quarantine logging. Valid values: disable, enable.
    rateCount Number
    Count of the rate.
    rateDuration Number
    Duration (sec) of the rate.
    rateMode String
    Rate limit mode. Valid values: periodical, continuous.
    rateTrack String
    Track the packet protocol field. Valid values: none, src-ip, dest-ip, dhcp-client-mac, dns-domain.
    risks List<Number>
    Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
    sessionTtl Number
    Session TTL (0 = default).
    shaper String
    Traffic shaper.
    shaperReverse String
    Reverse traffic shaper.
    subCategories List<Number>
    Application Sub-category ID list.
    technologies List<String>
    Application technology filter.
    vendors List<String>
    Application vendor filter.

    ObjectApplicationListEntryParameter, ObjectApplicationListEntryParameterArgs

    Id double
    Parameter ID.
    Members List<ObjectApplicationListEntryParameterMember>
    Members. The structure of members block is documented below.
    Value string
    Parameter value.
    Id float64
    Parameter ID.
    Members []ObjectApplicationListEntryParameterMember
    Members. The structure of members block is documented below.
    Value string
    Parameter value.
    id Double
    Parameter ID.
    members List<ObjectApplicationListEntryParameterMember>
    Members. The structure of members block is documented below.
    value String
    Parameter value.
    id number
    Parameter ID.
    members ObjectApplicationListEntryParameterMember[]
    Members. The structure of members block is documented below.
    value string
    Parameter value.
    id float
    Parameter ID.
    members Sequence[ObjectApplicationListEntryParameterMember]
    Members. The structure of members block is documented below.
    value str
    Parameter value.
    id Number
    Parameter ID.
    members List<Property Map>
    Members. The structure of members block is documented below.
    value String
    Parameter value.

    ObjectApplicationListEntryParameterMember, ObjectApplicationListEntryParameterMemberArgs

    Id double
    Parameter.
    Name string
    Parameter name.
    Value string
    Parameter value.
    Id float64
    Parameter.
    Name string
    Parameter name.
    Value string
    Parameter value.
    id Double
    Parameter.
    name String
    Parameter name.
    value String
    Parameter value.
    id number
    Parameter.
    name string
    Parameter name.
    value string
    Parameter value.
    id float
    Parameter.
    name str
    Parameter name.
    value str
    Parameter value.
    id Number
    Parameter.
    name String
    Parameter name.
    value String
    Parameter value.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectApplicationList:ObjectApplicationList 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