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

fortios.dlp.Dictionary

Explore with Pulumi AI

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

    Configure dictionaries used by DLP blocking. Applies to FortiOS Version >= 7.2.0.

    Create Dictionary Resource

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

    Constructor syntax

    new Dictionary(name: string, args?: DictionaryArgs, opts?: CustomResourceOptions);
    @overload
    def Dictionary(resource_name: str,
                   args: Optional[DictionaryArgs] = None,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Dictionary(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   comment: Optional[str] = None,
                   dynamic_sort_subtable: Optional[str] = None,
                   entries: Optional[Sequence[DictionaryEntryArgs]] = None,
                   get_all_tables: Optional[str] = None,
                   match_around: Optional[str] = None,
                   match_type: Optional[str] = None,
                   name: Optional[str] = None,
                   uuid: Optional[str] = None,
                   vdomparam: Optional[str] = None)
    func NewDictionary(ctx *Context, name string, args *DictionaryArgs, opts ...ResourceOption) (*Dictionary, error)
    public Dictionary(string name, DictionaryArgs? args = null, CustomResourceOptions? opts = null)
    public Dictionary(String name, DictionaryArgs args)
    public Dictionary(String name, DictionaryArgs args, CustomResourceOptions options)
    
    type: fortios:dlp:Dictionary
    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 DictionaryArgs
    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 DictionaryArgs
    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 DictionaryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DictionaryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DictionaryArgs
    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 dictionaryResource = new Fortios.Dlp.Dictionary("dictionaryResource", new()
    {
        Comment = "string",
        DynamicSortSubtable = "string",
        Entries = new[]
        {
            new Fortios.Dlp.Inputs.DictionaryEntryArgs
            {
                Comment = "string",
                Id = 0,
                IgnoreCase = "string",
                Pattern = "string",
                Repeat = "string",
                Status = "string",
                Type = "string",
            },
        },
        GetAllTables = "string",
        MatchAround = "string",
        MatchType = "string",
        Name = "string",
        Uuid = "string",
        Vdomparam = "string",
    });
    
    example, err := dlp.NewDictionary(ctx, "dictionaryResource", &dlp.DictionaryArgs{
    	Comment:             pulumi.String("string"),
    	DynamicSortSubtable: pulumi.String("string"),
    	Entries: dlp.DictionaryEntryArray{
    		&dlp.DictionaryEntryArgs{
    			Comment:    pulumi.String("string"),
    			Id:         pulumi.Int(0),
    			IgnoreCase: pulumi.String("string"),
    			Pattern:    pulumi.String("string"),
    			Repeat:     pulumi.String("string"),
    			Status:     pulumi.String("string"),
    			Type:       pulumi.String("string"),
    		},
    	},
    	GetAllTables: pulumi.String("string"),
    	MatchAround:  pulumi.String("string"),
    	MatchType:    pulumi.String("string"),
    	Name:         pulumi.String("string"),
    	Uuid:         pulumi.String("string"),
    	Vdomparam:    pulumi.String("string"),
    })
    
    var dictionaryResource = new Dictionary("dictionaryResource", DictionaryArgs.builder()
        .comment("string")
        .dynamicSortSubtable("string")
        .entries(DictionaryEntryArgs.builder()
            .comment("string")
            .id(0)
            .ignoreCase("string")
            .pattern("string")
            .repeat("string")
            .status("string")
            .type("string")
            .build())
        .getAllTables("string")
        .matchAround("string")
        .matchType("string")
        .name("string")
        .uuid("string")
        .vdomparam("string")
        .build());
    
    dictionary_resource = fortios.dlp.Dictionary("dictionaryResource",
        comment="string",
        dynamic_sort_subtable="string",
        entries=[fortios.dlp.DictionaryEntryArgs(
            comment="string",
            id=0,
            ignore_case="string",
            pattern="string",
            repeat="string",
            status="string",
            type="string",
        )],
        get_all_tables="string",
        match_around="string",
        match_type="string",
        name="string",
        uuid="string",
        vdomparam="string")
    
    const dictionaryResource = new fortios.dlp.Dictionary("dictionaryResource", {
        comment: "string",
        dynamicSortSubtable: "string",
        entries: [{
            comment: "string",
            id: 0,
            ignoreCase: "string",
            pattern: "string",
            repeat: "string",
            status: "string",
            type: "string",
        }],
        getAllTables: "string",
        matchAround: "string",
        matchType: "string",
        name: "string",
        uuid: "string",
        vdomparam: "string",
    });
    
    type: fortios:dlp:Dictionary
    properties:
        comment: string
        dynamicSortSubtable: string
        entries:
            - comment: string
              id: 0
              ignoreCase: string
              pattern: string
              repeat: string
              status: string
              type: string
        getAllTables: string
        matchAround: string
        matchType: string
        name: string
        uuid: string
        vdomparam: string
    

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

    Comment string
    Optional comments.
    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 ].
    Entries List<Pulumiverse.Fortios.Dlp.Inputs.DictionaryEntry>
    DLP dictionary entries. The structure of entries block is documented below.
    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.
    MatchAround string
    Enable/disable match-around support. Valid values: enable, disable.
    MatchType string
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    Name string
    Name of table containing the dictionary.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    Comment string
    Optional comments.
    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 ].
    Entries []DictionaryEntryArgs
    DLP dictionary entries. The structure of entries block is documented below.
    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.
    MatchAround string
    Enable/disable match-around support. Valid values: enable, disable.
    MatchType string
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    Name string
    Name of table containing the dictionary.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    comment String
    Optional comments.
    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 ].
    entries List<DictionaryEntry>
    DLP dictionary entries. The structure of entries block is documented below.
    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.
    matchAround String
    Enable/disable match-around support. Valid values: enable, disable.
    matchType String
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name String
    Name of table containing the dictionary.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    comment string
    Optional comments.
    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 ].
    entries DictionaryEntry[]
    DLP dictionary entries. The structure of entries block is documented below.
    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.
    matchAround string
    Enable/disable match-around support. Valid values: enable, disable.
    matchType string
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name string
    Name of table containing the dictionary.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    comment str
    Optional comments.
    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 ].
    entries Sequence[DictionaryEntryArgs]
    DLP dictionary entries. The structure of entries block is documented below.
    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.
    match_around str
    Enable/disable match-around support. Valid values: enable, disable.
    match_type str
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name str
    Name of table containing the dictionary.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    comment String
    Optional comments.
    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 ].
    entries List<Property Map>
    DLP dictionary entries. The structure of entries block is documented below.
    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.
    matchAround String
    Enable/disable match-around support. Valid values: enable, disable.
    matchType String
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name String
    Name of table containing the dictionary.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.

    Outputs

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

    Get an existing Dictionary 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?: DictionaryState, opts?: CustomResourceOptions): Dictionary
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            comment: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            entries: Optional[Sequence[DictionaryEntryArgs]] = None,
            get_all_tables: Optional[str] = None,
            match_around: Optional[str] = None,
            match_type: Optional[str] = None,
            name: Optional[str] = None,
            uuid: Optional[str] = None,
            vdomparam: Optional[str] = None) -> Dictionary
    func GetDictionary(ctx *Context, name string, id IDInput, state *DictionaryState, opts ...ResourceOption) (*Dictionary, error)
    public static Dictionary Get(string name, Input<string> id, DictionaryState? state, CustomResourceOptions? opts = null)
    public static Dictionary get(String name, Output<String> id, DictionaryState 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:
    Comment string
    Optional comments.
    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 ].
    Entries List<Pulumiverse.Fortios.Dlp.Inputs.DictionaryEntry>
    DLP dictionary entries. The structure of entries block is documented below.
    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.
    MatchAround string
    Enable/disable match-around support. Valid values: enable, disable.
    MatchType string
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    Name string
    Name of table containing the dictionary.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    Comment string
    Optional comments.
    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 ].
    Entries []DictionaryEntryArgs
    DLP dictionary entries. The structure of entries block is documented below.
    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.
    MatchAround string
    Enable/disable match-around support. Valid values: enable, disable.
    MatchType string
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    Name string
    Name of table containing the dictionary.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    comment String
    Optional comments.
    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 ].
    entries List<DictionaryEntry>
    DLP dictionary entries. The structure of entries block is documented below.
    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.
    matchAround String
    Enable/disable match-around support. Valid values: enable, disable.
    matchType String
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name String
    Name of table containing the dictionary.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    comment string
    Optional comments.
    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 ].
    entries DictionaryEntry[]
    DLP dictionary entries. The structure of entries block is documented below.
    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.
    matchAround string
    Enable/disable match-around support. Valid values: enable, disable.
    matchType string
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name string
    Name of table containing the dictionary.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    comment str
    Optional comments.
    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 ].
    entries Sequence[DictionaryEntryArgs]
    DLP dictionary entries. The structure of entries block is documented below.
    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.
    match_around str
    Enable/disable match-around support. Valid values: enable, disable.
    match_type str
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name str
    Name of table containing the dictionary.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    comment String
    Optional comments.
    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 ].
    entries List<Property Map>
    DLP dictionary entries. The structure of entries block is documented below.
    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.
    matchAround String
    Enable/disable match-around support. Valid values: enable, disable.
    matchType String
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name String
    Name of table containing the dictionary.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.

    Supporting Types

    DictionaryEntry, DictionaryEntryArgs

    Comment string
    Optional comments.
    Id int
    ID.
    IgnoreCase string
    Enable/disable ignore case. Valid values: enable, disable.
    Pattern string
    Pattern to match.
    Repeat string
    Enable/disable repeat match. Valid values: enable, disable.
    Status string
    Enable/disable this pattern. Valid values: enable, disable.
    Type string
    Pattern type to match.
    Comment string
    Optional comments.
    Id int
    ID.
    IgnoreCase string
    Enable/disable ignore case. Valid values: enable, disable.
    Pattern string
    Pattern to match.
    Repeat string
    Enable/disable repeat match. Valid values: enable, disable.
    Status string
    Enable/disable this pattern. Valid values: enable, disable.
    Type string
    Pattern type to match.
    comment String
    Optional comments.
    id Integer
    ID.
    ignoreCase String
    Enable/disable ignore case. Valid values: enable, disable.
    pattern String
    Pattern to match.
    repeat String
    Enable/disable repeat match. Valid values: enable, disable.
    status String
    Enable/disable this pattern. Valid values: enable, disable.
    type String
    Pattern type to match.
    comment string
    Optional comments.
    id number
    ID.
    ignoreCase string
    Enable/disable ignore case. Valid values: enable, disable.
    pattern string
    Pattern to match.
    repeat string
    Enable/disable repeat match. Valid values: enable, disable.
    status string
    Enable/disable this pattern. Valid values: enable, disable.
    type string
    Pattern type to match.
    comment str
    Optional comments.
    id int
    ID.
    ignore_case str
    Enable/disable ignore case. Valid values: enable, disable.
    pattern str
    Pattern to match.
    repeat str
    Enable/disable repeat match. Valid values: enable, disable.
    status str
    Enable/disable this pattern. Valid values: enable, disable.
    type str
    Pattern type to match.
    comment String
    Optional comments.
    id Number
    ID.
    ignoreCase String
    Enable/disable ignore case. Valid values: enable, disable.
    pattern String
    Pattern to match.
    repeat String
    Enable/disable repeat match. Valid values: enable, disable.
    status String
    Enable/disable this pattern. Valid values: enable, disable.
    type String
    Pattern type to match.

    Import

    Dlp Dictionary can be imported using any of these accepted formats:

    $ pulumi import fortios:dlp/dictionary:Dictionary labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:dlp/dictionary:Dictionary 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