1. Packages
  2. Fortios
  3. API Docs
  4. application
  5. Name
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

fortios.application.Name

Explore with Pulumi AI

fortios logo
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

    Configure application signatures.

    Create Name Resource

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

    Constructor syntax

    new Name(name: string, args: NameArgs, opts?: CustomResourceOptions);
    @overload
    def Name(resource_name: str,
             args: NameArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Name(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             category: Optional[int] = None,
             parameters: Optional[Sequence[NameParameterArgs]] = None,
             parameter: Optional[str] = None,
             fosid: Optional[int] = None,
             get_all_tables: Optional[str] = None,
             popularity: Optional[int] = None,
             name: Optional[str] = None,
             dynamic_sort_subtable: Optional[str] = None,
             behavior: Optional[str] = None,
             metadatas: Optional[Sequence[NameMetadataArgs]] = None,
             protocol: Optional[str] = None,
             risk: Optional[int] = None,
             sub_category: Optional[int] = None,
             technology: Optional[str] = None,
             vdomparam: Optional[str] = None,
             vendor: Optional[str] = None,
             weight: Optional[int] = None)
    func NewName(ctx *Context, name string, args NameArgs, opts ...ResourceOption) (*Name, error)
    public Name(string name, NameArgs args, CustomResourceOptions? opts = null)
    public Name(String name, NameArgs args)
    public Name(String name, NameArgs args, CustomResourceOptions options)
    
    type: fortios:application:Name
    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 NameArgs
    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 NameArgs
    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 NameArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NameArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NameArgs
    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 nameResource = new Fortios.Application.ApplicationName("nameResource", new()
    {
        Category = 0,
        Parameters = new[]
        {
            new Fortios.Application.Inputs.NameParameterArgs
            {
                Name = "string",
            },
        },
        Parameter = "string",
        Fosid = 0,
        GetAllTables = "string",
        Popularity = 0,
        Name = "string",
        DynamicSortSubtable = "string",
        Behavior = "string",
        Metadatas = new[]
        {
            new Fortios.Application.Inputs.NameMetadataArgs
            {
                Id = 0,
                Metaid = 0,
                Valueid = 0,
            },
        },
        Protocol = "string",
        Risk = 0,
        SubCategory = 0,
        Technology = "string",
        Vdomparam = "string",
        Vendor = "string",
        Weight = 0,
    });
    
    example, err := application.NewName(ctx, "nameResource", &application.NameArgs{
    	Category: pulumi.Int(0),
    	Parameters: application.NameParameterArray{
    		&application.NameParameterArgs{
    			Name: pulumi.String("string"),
    		},
    	},
    	Parameter:           pulumi.String("string"),
    	Fosid:               pulumi.Int(0),
    	GetAllTables:        pulumi.String("string"),
    	Popularity:          pulumi.Int(0),
    	Name:                pulumi.String("string"),
    	DynamicSortSubtable: pulumi.String("string"),
    	Behavior:            pulumi.String("string"),
    	Metadatas: application.NameMetadataArray{
    		&application.NameMetadataArgs{
    			Id:      pulumi.Int(0),
    			Metaid:  pulumi.Int(0),
    			Valueid: pulumi.Int(0),
    		},
    	},
    	Protocol:    pulumi.String("string"),
    	Risk:        pulumi.Int(0),
    	SubCategory: pulumi.Int(0),
    	Technology:  pulumi.String("string"),
    	Vdomparam:   pulumi.String("string"),
    	Vendor:      pulumi.String("string"),
    	Weight:      pulumi.Int(0),
    })
    
    var nameResource = new Name("nameResource", NameArgs.builder()
        .category(0)
        .parameters(NameParameterArgs.builder()
            .name("string")
            .build())
        .parameter("string")
        .fosid(0)
        .getAllTables("string")
        .popularity(0)
        .name("string")
        .dynamicSortSubtable("string")
        .behavior("string")
        .metadatas(NameMetadataArgs.builder()
            .id(0)
            .metaid(0)
            .valueid(0)
            .build())
        .protocol("string")
        .risk(0)
        .subCategory(0)
        .technology("string")
        .vdomparam("string")
        .vendor("string")
        .weight(0)
        .build());
    
    name_resource = fortios.application.Name("nameResource",
        category=0,
        parameters=[fortios.application.NameParameterArgs(
            name="string",
        )],
        parameter="string",
        fosid=0,
        get_all_tables="string",
        popularity=0,
        name="string",
        dynamic_sort_subtable="string",
        behavior="string",
        metadatas=[fortios.application.NameMetadataArgs(
            id=0,
            metaid=0,
            valueid=0,
        )],
        protocol="string",
        risk=0,
        sub_category=0,
        technology="string",
        vdomparam="string",
        vendor="string",
        weight=0)
    
    const nameResource = new fortios.application.Name("nameResource", {
        category: 0,
        parameters: [{
            name: "string",
        }],
        parameter: "string",
        fosid: 0,
        getAllTables: "string",
        popularity: 0,
        name: "string",
        dynamicSortSubtable: "string",
        behavior: "string",
        metadatas: [{
            id: 0,
            metaid: 0,
            valueid: 0,
        }],
        protocol: "string",
        risk: 0,
        subCategory: 0,
        technology: "string",
        vdomparam: "string",
        vendor: "string",
        weight: 0,
    });
    
    type: fortios:application:Name
    properties:
        behavior: string
        category: 0
        dynamicSortSubtable: string
        fosid: 0
        getAllTables: string
        metadatas:
            - id: 0
              metaid: 0
              valueid: 0
        name: string
        parameter: string
        parameters:
            - name: string
        popularity: 0
        protocol: string
        risk: 0
        subCategory: 0
        technology: string
        vdomparam: string
        vendor: string
        weight: 0
    

    Name Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Name resource accepts the following input properties:

    Category int
    Application category ID.
    Behavior string
    Application behavior.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    Fosid int
    Application ID.
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Metadatas List<Pulumiverse.Fortios.Application.Inputs.NameMetadata>
    Meta data. The structure of metadata block is documented below.
    Name string
    Application name.
    Parameter string
    Application parameter name.
    Parameters List<Pulumiverse.Fortios.Application.Inputs.NameParameter>
    Application parameters. The structure of parameters block is documented below.
    Popularity int
    Application popularity.
    Protocol string
    Application protocol.
    Risk int
    Application risk.
    SubCategory int
    Application sub-category ID.
    Technology string
    Application technology.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Vendor string
    Application vendor.
    Weight int
    Application weight.
    Category int
    Application category ID.
    Behavior string
    Application behavior.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    Fosid int
    Application ID.
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Metadatas []NameMetadataArgs
    Meta data. The structure of metadata block is documented below.
    Name string
    Application name.
    Parameter string
    Application parameter name.
    Parameters []NameParameterArgs
    Application parameters. The structure of parameters block is documented below.
    Popularity int
    Application popularity.
    Protocol string
    Application protocol.
    Risk int
    Application risk.
    SubCategory int
    Application sub-category ID.
    Technology string
    Application technology.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Vendor string
    Application vendor.
    Weight int
    Application weight.
    category Integer
    Application category ID.
    behavior String
    Application behavior.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fosid Integer
    Application ID.
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    metadatas List<NameMetadata>
    Meta data. The structure of metadata block is documented below.
    name String
    Application name.
    parameter String
    Application parameter name.
    parameters List<NameParameter>
    Application parameters. The structure of parameters block is documented below.
    popularity Integer
    Application popularity.
    protocol String
    Application protocol.
    risk Integer
    Application risk.
    subCategory Integer
    Application sub-category ID.
    technology String
    Application technology.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    vendor String
    Application vendor.
    weight Integer
    Application weight.
    category number
    Application category ID.
    behavior string
    Application behavior.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fosid number
    Application ID.
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    metadatas NameMetadata[]
    Meta data. The structure of metadata block is documented below.
    name string
    Application name.
    parameter string
    Application parameter name.
    parameters NameParameter[]
    Application parameters. The structure of parameters block is documented below.
    popularity number
    Application popularity.
    protocol string
    Application protocol.
    risk number
    Application risk.
    subCategory number
    Application sub-category ID.
    technology string
    Application technology.
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    vendor string
    Application vendor.
    weight number
    Application weight.
    category int
    Application category ID.
    behavior str
    Application behavior.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fosid int
    Application ID.
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    metadatas Sequence[NameMetadataArgs]
    Meta data. The structure of metadata block is documented below.
    name str
    Application name.
    parameter str
    Application parameter name.
    parameters Sequence[NameParameterArgs]
    Application parameters. The structure of parameters block is documented below.
    popularity int
    Application popularity.
    protocol str
    Application protocol.
    risk int
    Application risk.
    sub_category int
    Application sub-category ID.
    technology str
    Application technology.
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    vendor str
    Application vendor.
    weight int
    Application weight.
    category Number
    Application category ID.
    behavior String
    Application behavior.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fosid Number
    Application ID.
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    metadatas List<Property Map>
    Meta data. The structure of metadata block is documented below.
    name String
    Application name.
    parameter String
    Application parameter name.
    parameters List<Property Map>
    Application parameters. The structure of parameters block is documented below.
    popularity Number
    Application popularity.
    protocol String
    Application protocol.
    risk Number
    Application risk.
    subCategory Number
    Application sub-category ID.
    technology String
    Application technology.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    vendor String
    Application vendor.
    weight Number
    Application weight.

    Outputs

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

    Get an existing Name 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?: NameState, opts?: CustomResourceOptions): Name
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            behavior: Optional[str] = None,
            category: Optional[int] = None,
            dynamic_sort_subtable: Optional[str] = None,
            fosid: Optional[int] = None,
            get_all_tables: Optional[str] = None,
            metadatas: Optional[Sequence[NameMetadataArgs]] = None,
            name: Optional[str] = None,
            parameter: Optional[str] = None,
            parameters: Optional[Sequence[NameParameterArgs]] = None,
            popularity: Optional[int] = None,
            protocol: Optional[str] = None,
            risk: Optional[int] = None,
            sub_category: Optional[int] = None,
            technology: Optional[str] = None,
            vdomparam: Optional[str] = None,
            vendor: Optional[str] = None,
            weight: Optional[int] = None) -> Name
    func GetName(ctx *Context, name string, id IDInput, state *NameState, opts ...ResourceOption) (*Name, error)
    public static Name Get(string name, Input<string> id, NameState? state, CustomResourceOptions? opts = null)
    public static Name get(String name, Output<String> id, NameState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    Behavior string
    Application behavior.
    Category int
    Application category ID.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    Fosid int
    Application ID.
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Metadatas List<Pulumiverse.Fortios.Application.Inputs.NameMetadata>
    Meta data. The structure of metadata block is documented below.
    Name string
    Application name.
    Parameter string
    Application parameter name.
    Parameters List<Pulumiverse.Fortios.Application.Inputs.NameParameter>
    Application parameters. The structure of parameters block is documented below.
    Popularity int
    Application popularity.
    Protocol string
    Application protocol.
    Risk int
    Application risk.
    SubCategory int
    Application sub-category ID.
    Technology string
    Application technology.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Vendor string
    Application vendor.
    Weight int
    Application weight.
    Behavior string
    Application behavior.
    Category int
    Application category ID.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    Fosid int
    Application ID.
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Metadatas []NameMetadataArgs
    Meta data. The structure of metadata block is documented below.
    Name string
    Application name.
    Parameter string
    Application parameter name.
    Parameters []NameParameterArgs
    Application parameters. The structure of parameters block is documented below.
    Popularity int
    Application popularity.
    Protocol string
    Application protocol.
    Risk int
    Application risk.
    SubCategory int
    Application sub-category ID.
    Technology string
    Application technology.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Vendor string
    Application vendor.
    Weight int
    Application weight.
    behavior String
    Application behavior.
    category Integer
    Application category ID.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fosid Integer
    Application ID.
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    metadatas List<NameMetadata>
    Meta data. The structure of metadata block is documented below.
    name String
    Application name.
    parameter String
    Application parameter name.
    parameters List<NameParameter>
    Application parameters. The structure of parameters block is documented below.
    popularity Integer
    Application popularity.
    protocol String
    Application protocol.
    risk Integer
    Application risk.
    subCategory Integer
    Application sub-category ID.
    technology String
    Application technology.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    vendor String
    Application vendor.
    weight Integer
    Application weight.
    behavior string
    Application behavior.
    category number
    Application category ID.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fosid number
    Application ID.
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    metadatas NameMetadata[]
    Meta data. The structure of metadata block is documented below.
    name string
    Application name.
    parameter string
    Application parameter name.
    parameters NameParameter[]
    Application parameters. The structure of parameters block is documented below.
    popularity number
    Application popularity.
    protocol string
    Application protocol.
    risk number
    Application risk.
    subCategory number
    Application sub-category ID.
    technology string
    Application technology.
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    vendor string
    Application vendor.
    weight number
    Application weight.
    behavior str
    Application behavior.
    category int
    Application category ID.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fosid int
    Application ID.
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    metadatas Sequence[NameMetadataArgs]
    Meta data. The structure of metadata block is documented below.
    name str
    Application name.
    parameter str
    Application parameter name.
    parameters Sequence[NameParameterArgs]
    Application parameters. The structure of parameters block is documented below.
    popularity int
    Application popularity.
    protocol str
    Application protocol.
    risk int
    Application risk.
    sub_category int
    Application sub-category ID.
    technology str
    Application technology.
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    vendor str
    Application vendor.
    weight int
    Application weight.
    behavior String
    Application behavior.
    category Number
    Application category ID.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    fosid Number
    Application ID.
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    metadatas List<Property Map>
    Meta data. The structure of metadata block is documented below.
    name String
    Application name.
    parameter String
    Application parameter name.
    parameters List<Property Map>
    Application parameters. The structure of parameters block is documented below.
    popularity Number
    Application popularity.
    protocol String
    Application protocol.
    risk Number
    Application risk.
    subCategory Number
    Application sub-category ID.
    technology String
    Application technology.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    vendor String
    Application vendor.
    weight Number
    Application weight.

    Supporting Types

    NameMetadata, NameMetadataArgs

    Id int
    ID.
    Metaid int
    Meta ID.
    Valueid int
    Value ID.
    Id int
    ID.
    Metaid int
    Meta ID.
    Valueid int
    Value ID.
    id Integer
    ID.
    metaid Integer
    Meta ID.
    valueid Integer
    Value ID.
    id number
    ID.
    metaid number
    Meta ID.
    valueid number
    Value ID.
    id int
    ID.
    metaid int
    Meta ID.
    valueid int
    Value ID.
    id Number
    ID.
    metaid Number
    Meta ID.
    valueid Number
    Value ID.

    NameParameter, NameParameterArgs

    Name string
    Parameter name.
    Name string
    Parameter name.
    name String
    Parameter name.
    name string
    Parameter name.
    name str
    Parameter name.
    name String
    Parameter name.

    Import

    Application Name can be imported using any of these accepted formats:

    $ pulumi import fortios:application/name:Name labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:application/name:Name labelname {{name}}
    

    $ unset “FORTIOS_IMPORT_TABLE”

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

    Package Details

    Repository
    fortios pulumiverse/pulumi-fortios
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the fortios Terraform Provider.
    fortios logo
    Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse