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

fortimanager.ObjectApplicationListEntries

Explore with Pulumi AI

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

    Application list entries.

    This resource is a sub resource for variable entries of resource fortimanager.ObjectApplicationList. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • parameters: fortimanager.ObjectApplicationListEntriesParameters

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectApplicationList = new fortimanager.ObjectApplicationList("trnameObjectApplicationList", {});
    const trnameObjectApplicationListEntries = new fortimanager.ObjectApplicationListEntries("trnameObjectApplicationListEntries", {
        log: "disable",
        logPacket: "enable",
        quarantineLog: "enable",
        list: trnameObjectApplicationList.name,
        fosid: 1,
    }, {
        dependsOn: [trnameObjectApplicationList],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_application_list = fortimanager.ObjectApplicationList("trnameObjectApplicationList")
    trname_object_application_list_entries = fortimanager.ObjectApplicationListEntries("trnameObjectApplicationListEntries",
        log="disable",
        log_packet="enable",
        quarantine_log="enable",
        list=trname_object_application_list.name,
        fosid=1,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_application_list]))
    
    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 {
    		trnameObjectApplicationList, err := fortimanager.NewObjectApplicationList(ctx, "trnameObjectApplicationList", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectApplicationListEntries(ctx, "trnameObjectApplicationListEntries", &fortimanager.ObjectApplicationListEntriesArgs{
    			Log:           pulumi.String("disable"),
    			LogPacket:     pulumi.String("enable"),
    			QuarantineLog: pulumi.String("enable"),
    			List:          trnameObjectApplicationList.Name,
    			Fosid:         pulumi.Float64(1),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectApplicationList,
    		}))
    		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 trnameObjectApplicationList = new Fortimanager.ObjectApplicationList("trnameObjectApplicationList");
    
        var trnameObjectApplicationListEntries = new Fortimanager.ObjectApplicationListEntries("trnameObjectApplicationListEntries", new()
        {
            Log = "disable",
            LogPacket = "enable",
            QuarantineLog = "enable",
            List = trnameObjectApplicationList.Name,
            Fosid = 1,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectApplicationList,
            },
        });
    
    });
    
    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.ObjectApplicationListEntries;
    import com.pulumi.fortimanager.ObjectApplicationListEntriesArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameObjectApplicationList = new ObjectApplicationList("trnameObjectApplicationList");
    
            var trnameObjectApplicationListEntries = new ObjectApplicationListEntries("trnameObjectApplicationListEntries", ObjectApplicationListEntriesArgs.builder()
                .log("disable")
                .logPacket("enable")
                .quarantineLog("enable")
                .list(trnameObjectApplicationList.name())
                .fosid(1)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectApplicationList)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectApplicationListEntries:
        type: fortimanager:ObjectApplicationListEntries
        properties:
          log: disable
          logPacket: enable
          quarantineLog: enable
          list: ${trnameObjectApplicationList.name}
          fosid: 1
        options:
          dependsOn:
            - ${trnameObjectApplicationList}
      trnameObjectApplicationList:
        type: fortimanager:ObjectApplicationList
    

    Create ObjectApplicationListEntries Resource

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

    Constructor syntax

    new ObjectApplicationListEntries(name: string, args: ObjectApplicationListEntriesArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectApplicationListEntries(resource_name: str,
                                     args: ObjectApplicationListEntriesArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectApplicationListEntries(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     list: Optional[str] = None,
                                     popularities: Optional[Sequence[str]] = None,
                                     behaviors: Optional[Sequence[str]] = None,
                                     quarantine: Optional[str] = None,
                                     category: Optional[str] = None,
                                     dynamic_sort_subtable: Optional[str] = None,
                                     exclusions: Optional[Sequence[float]] = None,
                                     fosid: Optional[float] = None,
                                     adom: Optional[str] = None,
                                     log: Optional[str] = None,
                                     log_packet: Optional[str] = None,
                                     object_application_list_entries_id: Optional[str] = None,
                                     parameters: Optional[Sequence[ObjectApplicationListEntriesParameterArgs]] = None,
                                     per_ip_shaper: Optional[str] = None,
                                     action: Optional[str] = None,
                                     vendors: Optional[Sequence[str]] = None,
                                     applications: Optional[Sequence[float]] = None,
                                     quarantine_expiry: Optional[str] = None,
                                     quarantine_log: Optional[str] = None,
                                     rate_count: Optional[float] = None,
                                     rate_duration: Optional[float] = None,
                                     rate_mode: Optional[str] = None,
                                     rate_track: Optional[str] = None,
                                     risks: Optional[Sequence[float]] = None,
                                     scopetype: Optional[str] = None,
                                     session_ttl: Optional[float] = None,
                                     shaper: Optional[str] = None,
                                     shaper_reverse: Optional[str] = None,
                                     sub_categories: Optional[Sequence[float]] = None,
                                     technologies: Optional[Sequence[str]] = None,
                                     protocols: Optional[Sequence[str]] = None)
    func NewObjectApplicationListEntries(ctx *Context, name string, args ObjectApplicationListEntriesArgs, opts ...ResourceOption) (*ObjectApplicationListEntries, error)
    public ObjectApplicationListEntries(string name, ObjectApplicationListEntriesArgs args, CustomResourceOptions? opts = null)
    public ObjectApplicationListEntries(String name, ObjectApplicationListEntriesArgs args)
    public ObjectApplicationListEntries(String name, ObjectApplicationListEntriesArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectApplicationListEntries
    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 ObjectApplicationListEntriesArgs
    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 ObjectApplicationListEntriesArgs
    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 ObjectApplicationListEntriesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectApplicationListEntriesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectApplicationListEntriesArgs
    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 objectApplicationListEntriesResource = new Fortimanager.ObjectApplicationListEntries("objectApplicationListEntriesResource", new()
    {
        List = "string",
        Popularities = new[]
        {
            "string",
        },
        Behaviors = new[]
        {
            "string",
        },
        Quarantine = "string",
        Category = "string",
        DynamicSortSubtable = "string",
        Exclusions = new[]
        {
            0,
        },
        Fosid = 0,
        Adom = "string",
        Log = "string",
        LogPacket = "string",
        ObjectApplicationListEntriesId = "string",
        Parameters = new[]
        {
            new Fortimanager.Inputs.ObjectApplicationListEntriesParameterArgs
            {
                Id = 0,
                Members = new[]
                {
                    new Fortimanager.Inputs.ObjectApplicationListEntriesParameterMemberArgs
                    {
                        Id = 0,
                        Name = "string",
                        Value = "string",
                    },
                },
                Value = "string",
            },
        },
        PerIpShaper = "string",
        Action = "string",
        Vendors = new[]
        {
            "string",
        },
        Applications = new[]
        {
            0,
        },
        QuarantineExpiry = "string",
        QuarantineLog = "string",
        RateCount = 0,
        RateDuration = 0,
        RateMode = "string",
        RateTrack = "string",
        Risks = new[]
        {
            0,
        },
        Scopetype = "string",
        SessionTtl = 0,
        Shaper = "string",
        ShaperReverse = "string",
        SubCategories = new[]
        {
            0,
        },
        Technologies = new[]
        {
            "string",
        },
        Protocols = new[]
        {
            "string",
        },
    });
    
    example, err := fortimanager.NewObjectApplicationListEntries(ctx, "objectApplicationListEntriesResource", &fortimanager.ObjectApplicationListEntriesArgs{
    List: pulumi.String("string"),
    Popularities: pulumi.StringArray{
    pulumi.String("string"),
    },
    Behaviors: pulumi.StringArray{
    pulumi.String("string"),
    },
    Quarantine: pulumi.String("string"),
    Category: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Exclusions: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    Fosid: pulumi.Float64(0),
    Adom: pulumi.String("string"),
    Log: pulumi.String("string"),
    LogPacket: pulumi.String("string"),
    ObjectApplicationListEntriesId: pulumi.String("string"),
    Parameters: .ObjectApplicationListEntriesParameterArray{
    &.ObjectApplicationListEntriesParameterArgs{
    Id: pulumi.Float64(0),
    Members: .ObjectApplicationListEntriesParameterMemberArray{
    &.ObjectApplicationListEntriesParameterMemberArgs{
    Id: pulumi.Float64(0),
    Name: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    Value: pulumi.String("string"),
    },
    },
    PerIpShaper: pulumi.String("string"),
    Action: pulumi.String("string"),
    Vendors: pulumi.StringArray{
    pulumi.String("string"),
    },
    Applications: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    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),
    },
    Scopetype: pulumi.String("string"),
    SessionTtl: pulumi.Float64(0),
    Shaper: pulumi.String("string"),
    ShaperReverse: pulumi.String("string"),
    SubCategories: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    Technologies: pulumi.StringArray{
    pulumi.String("string"),
    },
    Protocols: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var objectApplicationListEntriesResource = new ObjectApplicationListEntries("objectApplicationListEntriesResource", ObjectApplicationListEntriesArgs.builder()
        .list("string")
        .popularities("string")
        .behaviors("string")
        .quarantine("string")
        .category("string")
        .dynamicSortSubtable("string")
        .exclusions(0)
        .fosid(0)
        .adom("string")
        .log("string")
        .logPacket("string")
        .objectApplicationListEntriesId("string")
        .parameters(ObjectApplicationListEntriesParameterArgs.builder()
            .id(0)
            .members(ObjectApplicationListEntriesParameterMemberArgs.builder()
                .id(0)
                .name("string")
                .value("string")
                .build())
            .value("string")
            .build())
        .perIpShaper("string")
        .action("string")
        .vendors("string")
        .applications(0)
        .quarantineExpiry("string")
        .quarantineLog("string")
        .rateCount(0)
        .rateDuration(0)
        .rateMode("string")
        .rateTrack("string")
        .risks(0)
        .scopetype("string")
        .sessionTtl(0)
        .shaper("string")
        .shaperReverse("string")
        .subCategories(0)
        .technologies("string")
        .protocols("string")
        .build());
    
    object_application_list_entries_resource = fortimanager.ObjectApplicationListEntries("objectApplicationListEntriesResource",
        list="string",
        popularities=["string"],
        behaviors=["string"],
        quarantine="string",
        category="string",
        dynamic_sort_subtable="string",
        exclusions=[0],
        fosid=0,
        adom="string",
        log="string",
        log_packet="string",
        object_application_list_entries_id="string",
        parameters=[{
            "id": 0,
            "members": [{
                "id": 0,
                "name": "string",
                "value": "string",
            }],
            "value": "string",
        }],
        per_ip_shaper="string",
        action="string",
        vendors=["string"],
        applications=[0],
        quarantine_expiry="string",
        quarantine_log="string",
        rate_count=0,
        rate_duration=0,
        rate_mode="string",
        rate_track="string",
        risks=[0],
        scopetype="string",
        session_ttl=0,
        shaper="string",
        shaper_reverse="string",
        sub_categories=[0],
        technologies=["string"],
        protocols=["string"])
    
    const objectApplicationListEntriesResource = new fortimanager.ObjectApplicationListEntries("objectApplicationListEntriesResource", {
        list: "string",
        popularities: ["string"],
        behaviors: ["string"],
        quarantine: "string",
        category: "string",
        dynamicSortSubtable: "string",
        exclusions: [0],
        fosid: 0,
        adom: "string",
        log: "string",
        logPacket: "string",
        objectApplicationListEntriesId: "string",
        parameters: [{
            id: 0,
            members: [{
                id: 0,
                name: "string",
                value: "string",
            }],
            value: "string",
        }],
        perIpShaper: "string",
        action: "string",
        vendors: ["string"],
        applications: [0],
        quarantineExpiry: "string",
        quarantineLog: "string",
        rateCount: 0,
        rateDuration: 0,
        rateMode: "string",
        rateTrack: "string",
        risks: [0],
        scopetype: "string",
        sessionTtl: 0,
        shaper: "string",
        shaperReverse: "string",
        subCategories: [0],
        technologies: ["string"],
        protocols: ["string"],
    });
    
    type: fortimanager:ObjectApplicationListEntries
    properties:
        action: string
        adom: string
        applications:
            - 0
        behaviors:
            - string
        category: string
        dynamicSortSubtable: string
        exclusions:
            - 0
        fosid: 0
        list: string
        log: string
        logPacket: string
        objectApplicationListEntriesId: 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
        scopetype: string
        sessionTtl: 0
        shaper: string
        shaperReverse: string
        subCategories:
            - 0
        technologies:
            - string
        vendors:
            - string
    

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

    List string
    List.
    Action string
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    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>
    ID of allowed applications.
    Behaviors List<string>
    Application behavior filter.
    Category string
    Category ID list.
    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.
    Exclusions List<double>
    ID of excluded applications.
    Fosid 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.
    ObjectApplicationListEntriesId string
    an identifier for the resource with format {{fosid}}.
    Parameters List<ObjectApplicationListEntriesParameter>
    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).
    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.
    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.
    List string
    List.
    Action string
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    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
    ID of allowed applications.
    Behaviors []string
    Application behavior filter.
    Category string
    Category ID list.
    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.
    Exclusions []float64
    ID of excluded applications.
    Fosid 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.
    ObjectApplicationListEntriesId string
    an identifier for the resource with format {{fosid}}.
    Parameters []ObjectApplicationListEntriesParameterArgs
    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).
    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.
    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.
    list String
    List.
    action String
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    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>
    ID of allowed applications.
    behaviors List<String>
    Application behavior filter.
    category String
    Category ID list.
    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.
    exclusions List<Double>
    ID of excluded applications.
    fosid 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.
    objectApplicationListEntriesId String
    an identifier for the resource with format {{fosid}}.
    parameters List<ObjectApplicationListEntriesParameter>
    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).
    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.
    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.
    list string
    List.
    action string
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    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[]
    ID of allowed applications.
    behaviors string[]
    Application behavior filter.
    category string
    Category ID list.
    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.
    exclusions number[]
    ID of excluded applications.
    fosid 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.
    objectApplicationListEntriesId string
    an identifier for the resource with format {{fosid}}.
    parameters ObjectApplicationListEntriesParameter[]
    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).
    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.
    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.
    list str
    List.
    action str
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    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]
    ID of allowed applications.
    behaviors Sequence[str]
    Application behavior filter.
    category str
    Category ID list.
    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.
    exclusions Sequence[float]
    ID of excluded applications.
    fosid 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.
    object_application_list_entries_id str
    an identifier for the resource with format {{fosid}}.
    parameters Sequence[ObjectApplicationListEntriesParameterArgs]
    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).
    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.
    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.
    list String
    List.
    action String
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    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>
    ID of allowed applications.
    behaviors List<String>
    Application behavior filter.
    category String
    Category ID list.
    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.
    exclusions List<Number>
    ID of excluded applications.
    fosid 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.
    objectApplicationListEntriesId String
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    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.

    Outputs

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

    Get an existing ObjectApplicationListEntries 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?: ObjectApplicationListEntriesState, opts?: CustomResourceOptions): ObjectApplicationListEntries
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            applications: Optional[Sequence[float]] = None,
            behaviors: Optional[Sequence[str]] = None,
            category: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            exclusions: Optional[Sequence[float]] = None,
            fosid: Optional[float] = None,
            list: Optional[str] = None,
            log: Optional[str] = None,
            log_packet: Optional[str] = None,
            object_application_list_entries_id: Optional[str] = None,
            parameters: Optional[Sequence[ObjectApplicationListEntriesParameterArgs]] = None,
            per_ip_shaper: Optional[str] = None,
            popularities: Optional[Sequence[str]] = None,
            protocols: Optional[Sequence[str]] = None,
            quarantine: Optional[str] = None,
            quarantine_expiry: Optional[str] = None,
            quarantine_log: Optional[str] = None,
            rate_count: Optional[float] = None,
            rate_duration: Optional[float] = None,
            rate_mode: Optional[str] = None,
            rate_track: Optional[str] = None,
            risks: Optional[Sequence[float]] = None,
            scopetype: Optional[str] = None,
            session_ttl: Optional[float] = None,
            shaper: Optional[str] = None,
            shaper_reverse: Optional[str] = None,
            sub_categories: Optional[Sequence[float]] = None,
            technologies: Optional[Sequence[str]] = None,
            vendors: Optional[Sequence[str]] = None) -> ObjectApplicationListEntries
    func GetObjectApplicationListEntries(ctx *Context, name string, id IDInput, state *ObjectApplicationListEntriesState, opts ...ResourceOption) (*ObjectApplicationListEntries, error)
    public static ObjectApplicationListEntries Get(string name, Input<string> id, ObjectApplicationListEntriesState? state, CustomResourceOptions? opts = null)
    public static ObjectApplicationListEntries get(String name, Output<String> id, ObjectApplicationListEntriesState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectApplicationListEntries    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:
    Action string
    Pass or block traffic, or reset connection for traffic from this application. Valid values: pass, block, reset.
    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>
    ID of allowed applications.
    Behaviors List<string>
    Application behavior filter.
    Category string
    Category ID list.
    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.
    Exclusions List<double>
    ID of excluded applications.
    Fosid double
    Entry ID.
    List string
    List.
    Log string
    Enable/disable logging for this application list. Valid values: disable, enable.
    LogPacket string
    Enable/disable packet logging. Valid values: disable, enable.
    ObjectApplicationListEntriesId string
    an identifier for the resource with format {{fosid}}.
    Parameters List<ObjectApplicationListEntriesParameter>
    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).
    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.
    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.
    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
    ID of allowed applications.
    Behaviors []string
    Application behavior filter.
    Category string
    Category ID list.
    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.
    Exclusions []float64
    ID of excluded applications.
    Fosid float64
    Entry ID.
    List string
    List.
    Log string
    Enable/disable logging for this application list. Valid values: disable, enable.
    LogPacket string
    Enable/disable packet logging. Valid values: disable, enable.
    ObjectApplicationListEntriesId string
    an identifier for the resource with format {{fosid}}.
    Parameters []ObjectApplicationListEntriesParameterArgs
    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).
    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.
    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.
    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>
    ID of allowed applications.
    behaviors List<String>
    Application behavior filter.
    category String
    Category ID list.
    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.
    exclusions List<Double>
    ID of excluded applications.
    fosid Double
    Entry ID.
    list String
    List.
    log String
    Enable/disable logging for this application list. Valid values: disable, enable.
    logPacket String
    Enable/disable packet logging. Valid values: disable, enable.
    objectApplicationListEntriesId String
    an identifier for the resource with format {{fosid}}.
    parameters List<ObjectApplicationListEntriesParameter>
    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).
    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.
    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.
    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[]
    ID of allowed applications.
    behaviors string[]
    Application behavior filter.
    category string
    Category ID list.
    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.
    exclusions number[]
    ID of excluded applications.
    fosid number
    Entry ID.
    list string
    List.
    log string
    Enable/disable logging for this application list. Valid values: disable, enable.
    logPacket string
    Enable/disable packet logging. Valid values: disable, enable.
    objectApplicationListEntriesId string
    an identifier for the resource with format {{fosid}}.
    parameters ObjectApplicationListEntriesParameter[]
    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).
    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.
    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.
    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]
    ID of allowed applications.
    behaviors Sequence[str]
    Application behavior filter.
    category str
    Category ID list.
    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.
    exclusions Sequence[float]
    ID of excluded applications.
    fosid float
    Entry ID.
    list str
    List.
    log str
    Enable/disable logging for this application list. Valid values: disable, enable.
    log_packet str
    Enable/disable packet logging. Valid values: disable, enable.
    object_application_list_entries_id str
    an identifier for the resource with format {{fosid}}.
    parameters Sequence[ObjectApplicationListEntriesParameterArgs]
    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).
    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.
    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.
    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>
    ID of allowed applications.
    behaviors List<String>
    Application behavior filter.
    category String
    Category ID list.
    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.
    exclusions List<Number>
    ID of excluded applications.
    fosid Number
    Entry ID.
    list String
    List.
    log String
    Enable/disable logging for this application list. Valid values: disable, enable.
    logPacket String
    Enable/disable packet logging. Valid values: disable, enable.
    objectApplicationListEntriesId String
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    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.

    Supporting Types

    ObjectApplicationListEntriesParameter, ObjectApplicationListEntriesParameterArgs

    Id double
    Parameter ID.
    Members List<ObjectApplicationListEntriesParameterMember>
    Members. The structure of members block is documented below.
    Value string
    Parameter value.
    Id float64
    Parameter ID.
    Members []ObjectApplicationListEntriesParameterMember
    Members. The structure of members block is documented below.
    Value string
    Parameter value.
    id Double
    Parameter ID.
    members List<ObjectApplicationListEntriesParameterMember>
    Members. The structure of members block is documented below.
    value String
    Parameter value.
    id number
    Parameter ID.
    members ObjectApplicationListEntriesParameterMember[]
    Members. The structure of members block is documented below.
    value string
    Parameter value.
    id float
    Parameter ID.
    members Sequence[ObjectApplicationListEntriesParameterMember]
    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.

    ObjectApplicationListEntriesParameterMember, ObjectApplicationListEntriesParameterMemberArgs

    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 ListEntries can be imported using any of these accepted formats:

    Set import_options = [“list=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectApplicationListEntries:ObjectApplicationListEntries labelname {{fosid}}
    

    $ 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