fortimanager.ObjectDlpProfileRule
Explore with Pulumi AI
Set up DLP rules for this profile.
This resource is a sub resource for variable
rule
of resourcefortimanager.ObjectDlpProfile
. Conflict and overwrite may occur if use both of them.
Create ObjectDlpProfileRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectDlpProfileRule(name: string, args: ObjectDlpProfileRuleArgs, opts?: CustomResourceOptions);
@overload
def ObjectDlpProfileRule(resource_name: str,
args: ObjectDlpProfileRuleInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectDlpProfileRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile: Optional[str] = None,
file_size: Optional[float] = None,
expiry: Optional[str] = None,
name: Optional[str] = None,
object_dlp_profile_rule_id: Optional[str] = None,
file_type: Optional[str] = None,
filter_by: Optional[str] = None,
fosid: Optional[float] = None,
label: Optional[str] = None,
type: Optional[str] = None,
archive: Optional[str] = None,
action: Optional[str] = None,
adom: Optional[str] = None,
protos: Optional[Sequence[str]] = None,
scopetype: Optional[str] = None,
sensitivities: Optional[Sequence[str]] = None,
sensors: Optional[Sequence[str]] = None,
severity: Optional[str] = None,
match_percentage: Optional[float] = None)
func NewObjectDlpProfileRule(ctx *Context, name string, args ObjectDlpProfileRuleArgs, opts ...ResourceOption) (*ObjectDlpProfileRule, error)
public ObjectDlpProfileRule(string name, ObjectDlpProfileRuleArgs args, CustomResourceOptions? opts = null)
public ObjectDlpProfileRule(String name, ObjectDlpProfileRuleArgs args)
public ObjectDlpProfileRule(String name, ObjectDlpProfileRuleArgs args, CustomResourceOptions options)
type: fortimanager:ObjectDlpProfileRule
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 ObjectDlpProfileRuleArgs
- 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 ObjectDlpProfileRuleInitArgs
- 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 ObjectDlpProfileRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectDlpProfileRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectDlpProfileRuleArgs
- 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 objectDlpProfileRuleResource = new Fortimanager.ObjectDlpProfileRule("objectDlpProfileRuleResource", new()
{
Profile = "string",
FileSize = 0,
Expiry = "string",
Name = "string",
ObjectDlpProfileRuleId = "string",
FileType = "string",
FilterBy = "string",
Fosid = 0,
Label = "string",
Type = "string",
Archive = "string",
Action = "string",
Adom = "string",
Protos = new[]
{
"string",
},
Scopetype = "string",
Sensitivities = new[]
{
"string",
},
Sensors = new[]
{
"string",
},
Severity = "string",
MatchPercentage = 0,
});
example, err := fortimanager.NewObjectDlpProfileRule(ctx, "objectDlpProfileRuleResource", &fortimanager.ObjectDlpProfileRuleArgs{
Profile: pulumi.String("string"),
FileSize: pulumi.Float64(0),
Expiry: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectDlpProfileRuleId: pulumi.String("string"),
FileType: pulumi.String("string"),
FilterBy: pulumi.String("string"),
Fosid: pulumi.Float64(0),
Label: pulumi.String("string"),
Type: pulumi.String("string"),
Archive: pulumi.String("string"),
Action: pulumi.String("string"),
Adom: pulumi.String("string"),
Protos: pulumi.StringArray{
pulumi.String("string"),
},
Scopetype: pulumi.String("string"),
Sensitivities: pulumi.StringArray{
pulumi.String("string"),
},
Sensors: pulumi.StringArray{
pulumi.String("string"),
},
Severity: pulumi.String("string"),
MatchPercentage: pulumi.Float64(0),
})
var objectDlpProfileRuleResource = new ObjectDlpProfileRule("objectDlpProfileRuleResource", ObjectDlpProfileRuleArgs.builder()
.profile("string")
.fileSize(0)
.expiry("string")
.name("string")
.objectDlpProfileRuleId("string")
.fileType("string")
.filterBy("string")
.fosid(0)
.label("string")
.type("string")
.archive("string")
.action("string")
.adom("string")
.protos("string")
.scopetype("string")
.sensitivities("string")
.sensors("string")
.severity("string")
.matchPercentage(0)
.build());
object_dlp_profile_rule_resource = fortimanager.ObjectDlpProfileRule("objectDlpProfileRuleResource",
profile="string",
file_size=0,
expiry="string",
name="string",
object_dlp_profile_rule_id="string",
file_type="string",
filter_by="string",
fosid=0,
label="string",
type="string",
archive="string",
action="string",
adom="string",
protos=["string"],
scopetype="string",
sensitivities=["string"],
sensors=["string"],
severity="string",
match_percentage=0)
const objectDlpProfileRuleResource = new fortimanager.ObjectDlpProfileRule("objectDlpProfileRuleResource", {
profile: "string",
fileSize: 0,
expiry: "string",
name: "string",
objectDlpProfileRuleId: "string",
fileType: "string",
filterBy: "string",
fosid: 0,
label: "string",
type: "string",
archive: "string",
action: "string",
adom: "string",
protos: ["string"],
scopetype: "string",
sensitivities: ["string"],
sensors: ["string"],
severity: "string",
matchPercentage: 0,
});
type: fortimanager:ObjectDlpProfileRule
properties:
action: string
adom: string
archive: string
expiry: string
fileSize: 0
fileType: string
filterBy: string
fosid: 0
label: string
matchPercentage: 0
name: string
objectDlpProfileRuleId: string
profile: string
protos:
- string
scopetype: string
sensitivities:
- string
sensors:
- string
severity: string
type: string
ObjectDlpProfileRule 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 ObjectDlpProfileRule resource accepts the following input properties:
- Profile string
- Profile.
- Action string
- Action to take with content that this DLP profile matches. Valid values:
log-only
,block
,quarantine-ip
,allow
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Archive string
- Enable/disable DLP archiving. Valid values:
disable
,enable
. - Expiry string
- Quarantine duration in days, hours, minutes (format = dddhhmm).
- File
Size double - Match files this size or larger (0 - 4294967295 kbytes).
- File
Type string - Select the number of a DLP file pattern table to match.
- Filter
By string - Select the type of content to match. Valid values:
fingerprint
,sensor
,encrypted
,none
,mip
. - Fosid double
- ID.
- Label string
- MIP label dictionary.
- Match
Percentage double - Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
- Name string
- Filter name.
- Object
Dlp stringProfile Rule Id - an identifier for the resource with format {{fosid}}.
- Protos List<string>
- Check messages or files over one or more of these protocols. Valid values:
smtp
,pop3
,imap
,http-post
,http-get
,ftp
,nntp
,mapi
,ssh
,cifs
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Sensitivities List<string>
- Select a DLP file pattern sensitivity to match.
- Sensors List<string>
- Select DLP sensors.
- Severity string
- Select the severity or threat level that matches this filter. Valid values:
info
,low
,medium
,high
,critical
. - Type string
- Select whether to check the content of messages (an email message) or files (downloaded files or email attachments). Valid values:
file
,message
.
- Profile string
- Profile.
- Action string
- Action to take with content that this DLP profile matches. Valid values:
log-only
,block
,quarantine-ip
,allow
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Archive string
- Enable/disable DLP archiving. Valid values:
disable
,enable
. - Expiry string
- Quarantine duration in days, hours, minutes (format = dddhhmm).
- File
Size float64 - Match files this size or larger (0 - 4294967295 kbytes).
- File
Type string - Select the number of a DLP file pattern table to match.
- Filter
By string - Select the type of content to match. Valid values:
fingerprint
,sensor
,encrypted
,none
,mip
. - Fosid float64
- ID.
- Label string
- MIP label dictionary.
- Match
Percentage float64 - Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
- Name string
- Filter name.
- Object
Dlp stringProfile Rule Id - an identifier for the resource with format {{fosid}}.
- Protos []string
- Check messages or files over one or more of these protocols. Valid values:
smtp
,pop3
,imap
,http-post
,http-get
,ftp
,nntp
,mapi
,ssh
,cifs
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Sensitivities []string
- Select a DLP file pattern sensitivity to match.
- Sensors []string
- Select DLP sensors.
- Severity string
- Select the severity or threat level that matches this filter. Valid values:
info
,low
,medium
,high
,critical
. - Type string
- Select whether to check the content of messages (an email message) or files (downloaded files or email attachments). Valid values:
file
,message
.
- profile String
- Profile.
- action String
- Action to take with content that this DLP profile matches. Valid values:
log-only
,block
,quarantine-ip
,allow
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - archive String
- Enable/disable DLP archiving. Valid values:
disable
,enable
. - expiry String
- Quarantine duration in days, hours, minutes (format = dddhhmm).
- file
Size Double - Match files this size or larger (0 - 4294967295 kbytes).
- file
Type String - Select the number of a DLP file pattern table to match.
- filter
By String - Select the type of content to match. Valid values:
fingerprint
,sensor
,encrypted
,none
,mip
. - fosid Double
- ID.
- label String
- MIP label dictionary.
- match
Percentage Double - Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
- name String
- Filter name.
- object
Dlp StringProfile Rule Id - an identifier for the resource with format {{fosid}}.
- protos List<String>
- Check messages or files over one or more of these protocols. Valid values:
smtp
,pop3
,imap
,http-post
,http-get
,ftp
,nntp
,mapi
,ssh
,cifs
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sensitivities List<String>
- Select a DLP file pattern sensitivity to match.
- sensors List<String>
- Select DLP sensors.
- severity String
- Select the severity or threat level that matches this filter. Valid values:
info
,low
,medium
,high
,critical
. - type String
- Select whether to check the content of messages (an email message) or files (downloaded files or email attachments). Valid values:
file
,message
.
- profile string
- Profile.
- action string
- Action to take with content that this DLP profile matches. Valid values:
log-only
,block
,quarantine-ip
,allow
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - archive string
- Enable/disable DLP archiving. Valid values:
disable
,enable
. - expiry string
- Quarantine duration in days, hours, minutes (format = dddhhmm).
- file
Size number - Match files this size or larger (0 - 4294967295 kbytes).
- file
Type string - Select the number of a DLP file pattern table to match.
- filter
By string - Select the type of content to match. Valid values:
fingerprint
,sensor
,encrypted
,none
,mip
. - fosid number
- ID.
- label string
- MIP label dictionary.
- match
Percentage number - Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
- name string
- Filter name.
- object
Dlp stringProfile Rule Id - an identifier for the resource with format {{fosid}}.
- protos string[]
- Check messages or files over one or more of these protocols. Valid values:
smtp
,pop3
,imap
,http-post
,http-get
,ftp
,nntp
,mapi
,ssh
,cifs
. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sensitivities string[]
- Select a DLP file pattern sensitivity to match.
- sensors string[]
- Select DLP sensors.
- severity string
- Select the severity or threat level that matches this filter. Valid values:
info
,low
,medium
,high
,critical
. - type string
- Select whether to check the content of messages (an email message) or files (downloaded files or email attachments). Valid values:
file
,message
.
- profile str
- Profile.
- action str
- Action to take with content that this DLP profile matches. Valid values:
log-only
,block
,quarantine-ip
,allow
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - archive str
- Enable/disable DLP archiving. Valid values:
disable
,enable
. - expiry str
- Quarantine duration in days, hours, minutes (format = dddhhmm).
- file_
size float - Match files this size or larger (0 - 4294967295 kbytes).
- file_
type str - Select the number of a DLP file pattern table to match.
- filter_
by str - Select the type of content to match. Valid values:
fingerprint
,sensor
,encrypted
,none
,mip
. - fosid float
- ID.
- label str
- MIP label dictionary.
- match_
percentage float - Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
- name str
- Filter name.
- object_
dlp_ strprofile_ rule_ id - an identifier for the resource with format {{fosid}}.
- protos Sequence[str]
- Check messages or files over one or more of these protocols. Valid values:
smtp
,pop3
,imap
,http-post
,http-get
,ftp
,nntp
,mapi
,ssh
,cifs
. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sensitivities Sequence[str]
- Select a DLP file pattern sensitivity to match.
- sensors Sequence[str]
- Select DLP sensors.
- severity str
- Select the severity or threat level that matches this filter. Valid values:
info
,low
,medium
,high
,critical
. - type str
- Select whether to check the content of messages (an email message) or files (downloaded files or email attachments). Valid values:
file
,message
.
- profile String
- Profile.
- action String
- Action to take with content that this DLP profile matches. Valid values:
log-only
,block
,quarantine-ip
,allow
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - archive String
- Enable/disable DLP archiving. Valid values:
disable
,enable
. - expiry String
- Quarantine duration in days, hours, minutes (format = dddhhmm).
- file
Size Number - Match files this size or larger (0 - 4294967295 kbytes).
- file
Type String - Select the number of a DLP file pattern table to match.
- filter
By String - Select the type of content to match. Valid values:
fingerprint
,sensor
,encrypted
,none
,mip
. - fosid Number
- ID.
- label String
- MIP label dictionary.
- match
Percentage Number - Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
- name String
- Filter name.
- object
Dlp StringProfile Rule Id - an identifier for the resource with format {{fosid}}.
- protos List<String>
- Check messages or files over one or more of these protocols. Valid values:
smtp
,pop3
,imap
,http-post
,http-get
,ftp
,nntp
,mapi
,ssh
,cifs
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sensitivities List<String>
- Select a DLP file pattern sensitivity to match.
- sensors List<String>
- Select DLP sensors.
- severity String
- Select the severity or threat level that matches this filter. Valid values:
info
,low
,medium
,high
,critical
. - type String
- Select whether to check the content of messages (an email message) or files (downloaded files or email attachments). Valid values:
file
,message
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectDlpProfileRule 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 ObjectDlpProfileRule Resource
Get an existing ObjectDlpProfileRule 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?: ObjectDlpProfileRuleState, opts?: CustomResourceOptions): ObjectDlpProfileRule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
adom: Optional[str] = None,
archive: Optional[str] = None,
expiry: Optional[str] = None,
file_size: Optional[float] = None,
file_type: Optional[str] = None,
filter_by: Optional[str] = None,
fosid: Optional[float] = None,
label: Optional[str] = None,
match_percentage: Optional[float] = None,
name: Optional[str] = None,
object_dlp_profile_rule_id: Optional[str] = None,
profile: Optional[str] = None,
protos: Optional[Sequence[str]] = None,
scopetype: Optional[str] = None,
sensitivities: Optional[Sequence[str]] = None,
sensors: Optional[Sequence[str]] = None,
severity: Optional[str] = None,
type: Optional[str] = None) -> ObjectDlpProfileRule
func GetObjectDlpProfileRule(ctx *Context, name string, id IDInput, state *ObjectDlpProfileRuleState, opts ...ResourceOption) (*ObjectDlpProfileRule, error)
public static ObjectDlpProfileRule Get(string name, Input<string> id, ObjectDlpProfileRuleState? state, CustomResourceOptions? opts = null)
public static ObjectDlpProfileRule get(String name, Output<String> id, ObjectDlpProfileRuleState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectDlpProfileRule 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.
- Action string
- Action to take with content that this DLP profile matches. Valid values:
log-only
,block
,quarantine-ip
,allow
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Archive string
- Enable/disable DLP archiving. Valid values:
disable
,enable
. - Expiry string
- Quarantine duration in days, hours, minutes (format = dddhhmm).
- File
Size double - Match files this size or larger (0 - 4294967295 kbytes).
- File
Type string - Select the number of a DLP file pattern table to match.
- Filter
By string - Select the type of content to match. Valid values:
fingerprint
,sensor
,encrypted
,none
,mip
. - Fosid double
- ID.
- Label string
- MIP label dictionary.
- Match
Percentage double - Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
- Name string
- Filter name.
- Object
Dlp stringProfile Rule Id - an identifier for the resource with format {{fosid}}.
- Profile string
- Profile.
- Protos List<string>
- Check messages or files over one or more of these protocols. Valid values:
smtp
,pop3
,imap
,http-post
,http-get
,ftp
,nntp
,mapi
,ssh
,cifs
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Sensitivities List<string>
- Select a DLP file pattern sensitivity to match.
- Sensors List<string>
- Select DLP sensors.
- Severity string
- Select the severity or threat level that matches this filter. Valid values:
info
,low
,medium
,high
,critical
. - Type string
- Select whether to check the content of messages (an email message) or files (downloaded files or email attachments). Valid values:
file
,message
.
- Action string
- Action to take with content that this DLP profile matches. Valid values:
log-only
,block
,quarantine-ip
,allow
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Archive string
- Enable/disable DLP archiving. Valid values:
disable
,enable
. - Expiry string
- Quarantine duration in days, hours, minutes (format = dddhhmm).
- File
Size float64 - Match files this size or larger (0 - 4294967295 kbytes).
- File
Type string - Select the number of a DLP file pattern table to match.
- Filter
By string - Select the type of content to match. Valid values:
fingerprint
,sensor
,encrypted
,none
,mip
. - Fosid float64
- ID.
- Label string
- MIP label dictionary.
- Match
Percentage float64 - Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
- Name string
- Filter name.
- Object
Dlp stringProfile Rule Id - an identifier for the resource with format {{fosid}}.
- Profile string
- Profile.
- Protos []string
- Check messages or files over one or more of these protocols. Valid values:
smtp
,pop3
,imap
,http-post
,http-get
,ftp
,nntp
,mapi
,ssh
,cifs
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Sensitivities []string
- Select a DLP file pattern sensitivity to match.
- Sensors []string
- Select DLP sensors.
- Severity string
- Select the severity or threat level that matches this filter. Valid values:
info
,low
,medium
,high
,critical
. - Type string
- Select whether to check the content of messages (an email message) or files (downloaded files or email attachments). Valid values:
file
,message
.
- action String
- Action to take with content that this DLP profile matches. Valid values:
log-only
,block
,quarantine-ip
,allow
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - archive String
- Enable/disable DLP archiving. Valid values:
disable
,enable
. - expiry String
- Quarantine duration in days, hours, minutes (format = dddhhmm).
- file
Size Double - Match files this size or larger (0 - 4294967295 kbytes).
- file
Type String - Select the number of a DLP file pattern table to match.
- filter
By String - Select the type of content to match. Valid values:
fingerprint
,sensor
,encrypted
,none
,mip
. - fosid Double
- ID.
- label String
- MIP label dictionary.
- match
Percentage Double - Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
- name String
- Filter name.
- object
Dlp StringProfile Rule Id - an identifier for the resource with format {{fosid}}.
- profile String
- Profile.
- protos List<String>
- Check messages or files over one or more of these protocols. Valid values:
smtp
,pop3
,imap
,http-post
,http-get
,ftp
,nntp
,mapi
,ssh
,cifs
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sensitivities List<String>
- Select a DLP file pattern sensitivity to match.
- sensors List<String>
- Select DLP sensors.
- severity String
- Select the severity or threat level that matches this filter. Valid values:
info
,low
,medium
,high
,critical
. - type String
- Select whether to check the content of messages (an email message) or files (downloaded files or email attachments). Valid values:
file
,message
.
- action string
- Action to take with content that this DLP profile matches. Valid values:
log-only
,block
,quarantine-ip
,allow
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - archive string
- Enable/disable DLP archiving. Valid values:
disable
,enable
. - expiry string
- Quarantine duration in days, hours, minutes (format = dddhhmm).
- file
Size number - Match files this size or larger (0 - 4294967295 kbytes).
- file
Type string - Select the number of a DLP file pattern table to match.
- filter
By string - Select the type of content to match. Valid values:
fingerprint
,sensor
,encrypted
,none
,mip
. - fosid number
- ID.
- label string
- MIP label dictionary.
- match
Percentage number - Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
- name string
- Filter name.
- object
Dlp stringProfile Rule Id - an identifier for the resource with format {{fosid}}.
- profile string
- Profile.
- protos string[]
- Check messages or files over one or more of these protocols. Valid values:
smtp
,pop3
,imap
,http-post
,http-get
,ftp
,nntp
,mapi
,ssh
,cifs
. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sensitivities string[]
- Select a DLP file pattern sensitivity to match.
- sensors string[]
- Select DLP sensors.
- severity string
- Select the severity or threat level that matches this filter. Valid values:
info
,low
,medium
,high
,critical
. - type string
- Select whether to check the content of messages (an email message) or files (downloaded files or email attachments). Valid values:
file
,message
.
- action str
- Action to take with content that this DLP profile matches. Valid values:
log-only
,block
,quarantine-ip
,allow
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - archive str
- Enable/disable DLP archiving. Valid values:
disable
,enable
. - expiry str
- Quarantine duration in days, hours, minutes (format = dddhhmm).
- file_
size float - Match files this size or larger (0 - 4294967295 kbytes).
- file_
type str - Select the number of a DLP file pattern table to match.
- filter_
by str - Select the type of content to match. Valid values:
fingerprint
,sensor
,encrypted
,none
,mip
. - fosid float
- ID.
- label str
- MIP label dictionary.
- match_
percentage float - Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
- name str
- Filter name.
- object_
dlp_ strprofile_ rule_ id - an identifier for the resource with format {{fosid}}.
- profile str
- Profile.
- protos Sequence[str]
- Check messages or files over one or more of these protocols. Valid values:
smtp
,pop3
,imap
,http-post
,http-get
,ftp
,nntp
,mapi
,ssh
,cifs
. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sensitivities Sequence[str]
- Select a DLP file pattern sensitivity to match.
- sensors Sequence[str]
- Select DLP sensors.
- severity str
- Select the severity or threat level that matches this filter. Valid values:
info
,low
,medium
,high
,critical
. - type str
- Select whether to check the content of messages (an email message) or files (downloaded files or email attachments). Valid values:
file
,message
.
- action String
- Action to take with content that this DLP profile matches. Valid values:
log-only
,block
,quarantine-ip
,allow
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - archive String
- Enable/disable DLP archiving. Valid values:
disable
,enable
. - expiry String
- Quarantine duration in days, hours, minutes (format = dddhhmm).
- file
Size Number - Match files this size or larger (0 - 4294967295 kbytes).
- file
Type String - Select the number of a DLP file pattern table to match.
- filter
By String - Select the type of content to match. Valid values:
fingerprint
,sensor
,encrypted
,none
,mip
. - fosid Number
- ID.
- label String
- MIP label dictionary.
- match
Percentage Number - Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
- name String
- Filter name.
- object
Dlp StringProfile Rule Id - an identifier for the resource with format {{fosid}}.
- profile String
- Profile.
- protos List<String>
- Check messages or files over one or more of these protocols. Valid values:
smtp
,pop3
,imap
,http-post
,http-get
,ftp
,nntp
,mapi
,ssh
,cifs
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sensitivities List<String>
- Select a DLP file pattern sensitivity to match.
- sensors List<String>
- Select DLP sensors.
- severity String
- Select the severity or threat level that matches this filter. Valid values:
info
,low
,medium
,high
,critical
. - type String
- Select whether to check the content of messages (an email message) or files (downloaded files or email attachments). Valid values:
file
,message
.
Import
ObjectDlp ProfileRule can be imported using any of these accepted formats:
Set import_options = [“profile=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectDlpProfileRule:ObjectDlpProfileRule labelname {{fosid}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.