fortios.rule.Otdt
Show OT detection signatures. Applies to FortiOS Version >= 7.4.1.
Create Otdt Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Otdt(name: string, args?: OtdtArgs, opts?: CustomResourceOptions);@overload
def Otdt(resource_name: str,
         args: Optional[OtdtArgs] = None,
         opts: Optional[ResourceOptions] = None)
@overload
def Otdt(resource_name: 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[OtdtMetadataArgs]] = None,
         name: Optional[str] = None,
         parameters: Optional[Sequence[OtdtParameterArgs]] = None,
         popularity: Optional[int] = None,
         protocol: Optional[str] = None,
         risk: Optional[int] = None,
         technology: Optional[str] = None,
         vdomparam: Optional[str] = None,
         vendor: Optional[str] = None,
         weight: Optional[int] = None)func NewOtdt(ctx *Context, name string, args *OtdtArgs, opts ...ResourceOption) (*Otdt, error)public Otdt(string name, OtdtArgs? args = null, CustomResourceOptions? opts = null)type: fortios:rule:Otdt
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 OtdtArgs
- 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 OtdtArgs
- 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 OtdtArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OtdtArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OtdtArgs
- 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 otdtResource = new Fortios.Rule.Otdt("otdtResource", new()
{
    Behavior = "string",
    Category = 0,
    DynamicSortSubtable = "string",
    Fosid = 0,
    GetAllTables = "string",
    Metadatas = new[]
    {
        new Fortios.Rule.Inputs.OtdtMetadataArgs
        {
            Id = 0,
            Metaid = 0,
            Valueid = 0,
        },
    },
    Name = "string",
    Parameters = new[]
    {
        new Fortios.Rule.Inputs.OtdtParameterArgs
        {
            Name = "string",
        },
    },
    Popularity = 0,
    Protocol = "string",
    Risk = 0,
    Technology = "string",
    Vdomparam = "string",
    Vendor = "string",
    Weight = 0,
});
example, err := rule.NewOtdt(ctx, "otdtResource", &rule.OtdtArgs{
	Behavior:            pulumi.String("string"),
	Category:            pulumi.Int(0),
	DynamicSortSubtable: pulumi.String("string"),
	Fosid:               pulumi.Int(0),
	GetAllTables:        pulumi.String("string"),
	Metadatas: rule.OtdtMetadataArray{
		&rule.OtdtMetadataArgs{
			Id:      pulumi.Int(0),
			Metaid:  pulumi.Int(0),
			Valueid: pulumi.Int(0),
		},
	},
	Name: pulumi.String("string"),
	Parameters: rule.OtdtParameterArray{
		&rule.OtdtParameterArgs{
			Name: pulumi.String("string"),
		},
	},
	Popularity: pulumi.Int(0),
	Protocol:   pulumi.String("string"),
	Risk:       pulumi.Int(0),
	Technology: pulumi.String("string"),
	Vdomparam:  pulumi.String("string"),
	Vendor:     pulumi.String("string"),
	Weight:     pulumi.Int(0),
})
var otdtResource = new Otdt("otdtResource", OtdtArgs.builder()
    .behavior("string")
    .category(0)
    .dynamicSortSubtable("string")
    .fosid(0)
    .getAllTables("string")
    .metadatas(OtdtMetadataArgs.builder()
        .id(0)
        .metaid(0)
        .valueid(0)
        .build())
    .name("string")
    .parameters(OtdtParameterArgs.builder()
        .name("string")
        .build())
    .popularity(0)
    .protocol("string")
    .risk(0)
    .technology("string")
    .vdomparam("string")
    .vendor("string")
    .weight(0)
    .build());
otdt_resource = fortios.rule.Otdt("otdtResource",
    behavior="string",
    category=0,
    dynamic_sort_subtable="string",
    fosid=0,
    get_all_tables="string",
    metadatas=[{
        "id": 0,
        "metaid": 0,
        "valueid": 0,
    }],
    name="string",
    parameters=[{
        "name": "string",
    }],
    popularity=0,
    protocol="string",
    risk=0,
    technology="string",
    vdomparam="string",
    vendor="string",
    weight=0)
const otdtResource = new fortios.rule.Otdt("otdtResource", {
    behavior: "string",
    category: 0,
    dynamicSortSubtable: "string",
    fosid: 0,
    getAllTables: "string",
    metadatas: [{
        id: 0,
        metaid: 0,
        valueid: 0,
    }],
    name: "string",
    parameters: [{
        name: "string",
    }],
    popularity: 0,
    protocol: "string",
    risk: 0,
    technology: "string",
    vdomparam: "string",
    vendor: "string",
    weight: 0,
});
type: fortios:rule:Otdt
properties:
    behavior: string
    category: 0
    dynamicSortSubtable: string
    fosid: 0
    getAllTables: string
    metadatas:
        - id: 0
          metaid: 0
          valueid: 0
    name: string
    parameters:
        - name: string
    popularity: 0
    protocol: string
    risk: 0
    technology: string
    vdomparam: string
    vendor: string
    weight: 0
Otdt 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 Otdt resource accepts the following input properties:
- Behavior string
- Application behavior.
- Category int
- Application category ID.
- DynamicSort stringSubtable 
- 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.
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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. Rule. Inputs. Otdt Metadata> 
- Meta data. The structure of metadatablock is documented below.
- Name string
- Application name.
- Parameters
List<Pulumiverse.Fortios. Rule. Inputs. Otdt Parameter> 
- Application parameters. The structure of parametersblock is documented below.
- Popularity int
- Application popularity.
- Protocol string
- Application protocol.
- Risk int
- Application risk.
- 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.
- DynamicSort stringSubtable 
- 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.
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Metadatas
[]OtdtMetadata Args 
- Meta data. The structure of metadatablock is documented below.
- Name string
- Application name.
- Parameters
[]OtdtParameter Args 
- Application parameters. The structure of parametersblock is documented below.
- Popularity int
- Application popularity.
- Protocol string
- Application protocol.
- Risk int
- Application risk.
- 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.
- dynamicSort StringSubtable 
- 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.
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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<OtdtMetadata> 
- Meta data. The structure of metadatablock is documented below.
- name String
- Application name.
- parameters
List<OtdtParameter> 
- Application parameters. The structure of parametersblock is documented below.
- popularity Integer
- Application popularity.
- protocol String
- Application protocol.
- risk Integer
- Application risk.
- 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.
- dynamicSort stringSubtable 
- 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.
- getAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- metadatas
OtdtMetadata[] 
- Meta data. The structure of metadatablock is documented below.
- name string
- Application name.
- parameters
OtdtParameter[] 
- Application parameters. The structure of parametersblock is documented below.
- popularity number
- Application popularity.
- protocol string
- Application protocol.
- risk number
- Application risk.
- 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_ strsubtable 
- 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_ strtables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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[OtdtMetadata Args] 
- Meta data. The structure of metadatablock is documented below.
- name str
- Application name.
- parameters
Sequence[OtdtParameter Args] 
- Application parameters. The structure of parametersblock is documented below.
- popularity int
- Application popularity.
- protocol str
- Application protocol.
- risk int
- Application risk.
- 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.
- dynamicSort StringSubtable 
- 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.
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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 metadatablock is documented below.
- name String
- Application name.
- parameters List<Property Map>
- Application parameters. The structure of parametersblock is documented below.
- popularity Number
- Application popularity.
- protocol String
- Application protocol.
- risk Number
- Application risk.
- 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 Otdt 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 Otdt Resource
Get an existing Otdt 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?: OtdtState, opts?: CustomResourceOptions): Otdt@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[OtdtMetadataArgs]] = None,
        name: Optional[str] = None,
        parameters: Optional[Sequence[OtdtParameterArgs]] = None,
        popularity: Optional[int] = None,
        protocol: Optional[str] = None,
        risk: Optional[int] = None,
        technology: Optional[str] = None,
        vdomparam: Optional[str] = None,
        vendor: Optional[str] = None,
        weight: Optional[int] = None) -> Otdtfunc GetOtdt(ctx *Context, name string, id IDInput, state *OtdtState, opts ...ResourceOption) (*Otdt, error)public static Otdt Get(string name, Input<string> id, OtdtState? state, CustomResourceOptions? opts = null)public static Otdt get(String name, Output<String> id, OtdtState state, CustomResourceOptions options)resources:  _:    type: fortios:rule:Otdt    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.
- Behavior string
- Application behavior.
- Category int
- Application category ID.
- DynamicSort stringSubtable 
- 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.
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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. Rule. Inputs. Otdt Metadata> 
- Meta data. The structure of metadatablock is documented below.
- Name string
- Application name.
- Parameters
List<Pulumiverse.Fortios. Rule. Inputs. Otdt Parameter> 
- Application parameters. The structure of parametersblock is documented below.
- Popularity int
- Application popularity.
- Protocol string
- Application protocol.
- Risk int
- Application risk.
- 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.
- DynamicSort stringSubtable 
- 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.
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Metadatas
[]OtdtMetadata Args 
- Meta data. The structure of metadatablock is documented below.
- Name string
- Application name.
- Parameters
[]OtdtParameter Args 
- Application parameters. The structure of parametersblock is documented below.
- Popularity int
- Application popularity.
- Protocol string
- Application protocol.
- Risk int
- Application risk.
- 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.
- dynamicSort StringSubtable 
- 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.
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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<OtdtMetadata> 
- Meta data. The structure of metadatablock is documented below.
- name String
- Application name.
- parameters
List<OtdtParameter> 
- Application parameters. The structure of parametersblock is documented below.
- popularity Integer
- Application popularity.
- protocol String
- Application protocol.
- risk Integer
- Application risk.
- 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.
- dynamicSort stringSubtable 
- 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.
- getAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- metadatas
OtdtMetadata[] 
- Meta data. The structure of metadatablock is documented below.
- name string
- Application name.
- parameters
OtdtParameter[] 
- Application parameters. The structure of parametersblock is documented below.
- popularity number
- Application popularity.
- protocol string
- Application protocol.
- risk number
- Application risk.
- 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_ strsubtable 
- 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_ strtables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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[OtdtMetadata Args] 
- Meta data. The structure of metadatablock is documented below.
- name str
- Application name.
- parameters
Sequence[OtdtParameter Args] 
- Application parameters. The structure of parametersblock is documented below.
- popularity int
- Application popularity.
- protocol str
- Application protocol.
- risk int
- Application risk.
- 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.
- dynamicSort StringSubtable 
- 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.
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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 metadatablock is documented below.
- name String
- Application name.
- parameters List<Property Map>
- Application parameters. The structure of parametersblock is documented below.
- popularity Number
- Application popularity.
- protocol String
- Application protocol.
- risk Number
- Application risk.
- 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
OtdtMetadata, OtdtMetadataArgs    
OtdtParameter, OtdtParameterArgs    
- 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
Rule Otdt can be imported using any of these accepted formats:
$ pulumi import fortios:rule/otdt:Otdt labelname {{name}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:rule/otdt:Otdt 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 fortiosTerraform Provider.
 
