fortios.dlp.Dictionary
Explore with Pulumi AI
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.
- Dynamic
Sort 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 ].
- Entries
List<Pulumiverse.
Fortios. Dlp. Inputs. Dictionary Entry> - DLP dictionary entries. The structure of
entries
block is documented below. - Get
All stringTables - 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 string - Enable/disable match-around support. Valid values:
enable
,disable
. - Match
Type 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.
- Dynamic
Sort 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 ].
- Entries
[]Dictionary
Entry Args - DLP dictionary entries. The structure of
entries
block is documented below. - Get
All stringTables - 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 string - Enable/disable match-around support. Valid values:
enable
,disable
. - Match
Type 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.
- dynamic
Sort 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 ].
- entries
List<Dictionary
Entry> - DLP dictionary entries. The structure of
entries
block is documented below. - get
All StringTables - 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 String - Enable/disable match-around support. Valid values:
enable
,disable
. - match
Type 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.
- dynamic
Sort 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 ].
- entries
Dictionary
Entry[] - DLP dictionary entries. The structure of
entries
block is documented below. - get
All stringTables - 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 string - Enable/disable match-around support. Valid values:
enable
,disable
. - match
Type 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_ 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 ].
- entries
Sequence[Dictionary
Entry Args] - DLP dictionary entries. The structure of
entries
block is documented below. - 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, 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.
- dynamic
Sort 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 ].
- entries List<Property Map>
- DLP dictionary entries. The structure of
entries
block is documented below. - get
All StringTables - 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 String - Enable/disable match-around support. Valid values:
enable
,disable
. - match
Type 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.
- Comment string
- Optional comments.
- Dynamic
Sort 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 ].
- Entries
List<Pulumiverse.
Fortios. Dlp. Inputs. Dictionary Entry> - DLP dictionary entries. The structure of
entries
block is documented below. - Get
All stringTables - 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 string - Enable/disable match-around support. Valid values:
enable
,disable
. - Match
Type 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.
- Dynamic
Sort 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 ].
- Entries
[]Dictionary
Entry Args - DLP dictionary entries. The structure of
entries
block is documented below. - Get
All stringTables - 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 string - Enable/disable match-around support. Valid values:
enable
,disable
. - Match
Type 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.
- dynamic
Sort 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 ].
- entries
List<Dictionary
Entry> - DLP dictionary entries. The structure of
entries
block is documented below. - get
All StringTables - 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 String - Enable/disable match-around support. Valid values:
enable
,disable
. - match
Type 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.
- dynamic
Sort 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 ].
- entries
Dictionary
Entry[] - DLP dictionary entries. The structure of
entries
block is documented below. - get
All stringTables - 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 string - Enable/disable match-around support. Valid values:
enable
,disable
. - match
Type 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_ 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 ].
- entries
Sequence[Dictionary
Entry Args] - DLP dictionary entries. The structure of
entries
block is documented below. - 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, 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.
- dynamic
Sort 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 ].
- entries List<Property Map>
- DLP dictionary entries. The structure of
entries
block is documented below. - get
All StringTables - 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 String - Enable/disable match-around support. Valid values:
enable
,disable
. - match
Type 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.
- Ignore
Case 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.
- Ignore
Case 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.
- ignore
Case 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.
- ignore
Case 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.
- ignore
Case 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.