1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectDlpSensor
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.ObjectDlpSensor

Explore with Pulumi AI

Configure DLP sensors.

The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

  • entries: fortimanager.ObjectDlpSensorEntries
  • filter: fortimanager.ObjectDlpSensorFilter

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname = new fortimanager.ObjectDlpSensor("trname", {
    dlpLog: "enable",
    extendedLog: "disable",
    featureSet: "flow",
    fullArchiveProtos: [
        "ftp",
        "http-get",
        "http-post",
        "imap",
        "mapi",
        "nntp",
    ],
    nacQuarLog: "disable",
    summaryProtos: [
        "ftp",
        "http-get",
        "http-post",
        "imap",
        "mapi",
        "nntp",
    ],
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.ObjectDlpSensor("trname",
    dlp_log="enable",
    extended_log="disable",
    feature_set="flow",
    full_archive_protos=[
        "ftp",
        "http-get",
        "http-post",
        "imap",
        "mapi",
        "nntp",
    ],
    nac_quar_log="disable",
    summary_protos=[
        "ftp",
        "http-get",
        "http-post",
        "imap",
        "mapi",
        "nntp",
    ])
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fortimanager.NewObjectDlpSensor(ctx, "trname", &fortimanager.ObjectDlpSensorArgs{
			DlpLog:      pulumi.String("enable"),
			ExtendedLog: pulumi.String("disable"),
			FeatureSet:  pulumi.String("flow"),
			FullArchiveProtos: pulumi.StringArray{
				pulumi.String("ftp"),
				pulumi.String("http-get"),
				pulumi.String("http-post"),
				pulumi.String("imap"),
				pulumi.String("mapi"),
				pulumi.String("nntp"),
			},
			NacQuarLog: pulumi.String("disable"),
			SummaryProtos: pulumi.StringArray{
				pulumi.String("ftp"),
				pulumi.String("http-get"),
				pulumi.String("http-post"),
				pulumi.String("imap"),
				pulumi.String("mapi"),
				pulumi.String("nntp"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortimanager.ObjectDlpSensor("trname", new()
    {
        DlpLog = "enable",
        ExtendedLog = "disable",
        FeatureSet = "flow",
        FullArchiveProtos = new[]
        {
            "ftp",
            "http-get",
            "http-post",
            "imap",
            "mapi",
            "nntp",
        },
        NacQuarLog = "disable",
        SummaryProtos = new[]
        {
            "ftp",
            "http-get",
            "http-post",
            "imap",
            "mapi",
            "nntp",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectDlpSensor;
import com.pulumi.fortimanager.ObjectDlpSensorArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var trname = new ObjectDlpSensor("trname", ObjectDlpSensorArgs.builder()
            .dlpLog("enable")
            .extendedLog("disable")
            .featureSet("flow")
            .fullArchiveProtos(            
                "ftp",
                "http-get",
                "http-post",
                "imap",
                "mapi",
                "nntp")
            .nacQuarLog("disable")
            .summaryProtos(            
                "ftp",
                "http-get",
                "http-post",
                "imap",
                "mapi",
                "nntp")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:ObjectDlpSensor
    properties:
      dlpLog: enable
      extendedLog: disable
      featureSet: flow
      fullArchiveProtos:
        - ftp
        - http-get
        - http-post
        - imap
        - mapi
        - nntp
      nacQuarLog: disable
      summaryProtos:
        - ftp
        - http-get
        - http-post
        - imap
        - mapi
        - nntp
Copy

Create ObjectDlpSensor Resource

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

Constructor syntax

new ObjectDlpSensor(name: string, args?: ObjectDlpSensorArgs, opts?: CustomResourceOptions);
@overload
def ObjectDlpSensor(resource_name: str,
                    args: Optional[ObjectDlpSensorArgs] = None,
                    opts: Optional[ResourceOptions] = None)

@overload
def ObjectDlpSensor(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    adom: Optional[str] = None,
                    comment: Optional[str] = None,
                    dlp_log: Optional[str] = None,
                    dynamic_sort_subtable: Optional[str] = None,
                    entries: Optional[Sequence[ObjectDlpSensorEntryArgs]] = None,
                    eval: Optional[str] = None,
                    extended_log: Optional[str] = None,
                    feature_set: Optional[str] = None,
                    fgd_id: Optional[float] = None,
                    filters: Optional[Sequence[ObjectDlpSensorFilterArgs]] = None,
                    flow_based: Optional[str] = None,
                    full_archive_protos: Optional[Sequence[str]] = None,
                    match_type: Optional[str] = None,
                    nac_quar_log: Optional[str] = None,
                    name: Optional[str] = None,
                    object_dlp_sensor_id: Optional[str] = None,
                    options: Optional[str] = None,
                    replacemsg_group: Optional[str] = None,
                    scopetype: Optional[str] = None,
                    summary_protos: Optional[Sequence[str]] = None)
func NewObjectDlpSensor(ctx *Context, name string, args *ObjectDlpSensorArgs, opts ...ResourceOption) (*ObjectDlpSensor, error)
public ObjectDlpSensor(string name, ObjectDlpSensorArgs? args = null, CustomResourceOptions? opts = null)
public ObjectDlpSensor(String name, ObjectDlpSensorArgs args)
public ObjectDlpSensor(String name, ObjectDlpSensorArgs args, CustomResourceOptions options)
type: fortimanager:ObjectDlpSensor
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ObjectDlpSensorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ObjectDlpSensorArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ObjectDlpSensorArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ObjectDlpSensorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectDlpSensorArgs
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 objectDlpSensorResource = new Fortimanager.ObjectDlpSensor("objectDlpSensorResource", new()
{
    Adom = "string",
    Comment = "string",
    DlpLog = "string",
    DynamicSortSubtable = "string",
    Entries = new[]
    {
        new Fortimanager.Inputs.ObjectDlpSensorEntryArgs
        {
            Count = 0,
            Dictionary = "string",
            Id = 0,
            Status = "string",
        },
    },
    Eval = "string",
    ExtendedLog = "string",
    FeatureSet = "string",
    FgdId = 0,
    Filters = new[]
    {
        new Fortimanager.Inputs.ObjectDlpSensorFilterArgs
        {
            Action = "string",
            Archive = "string",
            CompanyIdentifier = "string",
            Expiry = "string",
            FileSize = 0,
            FileType = "string",
            FilterBy = "string",
            FpSensitivity = "string",
            Id = 0,
            MatchPercentage = 0,
            Name = "string",
            Protos = new[]
            {
                "string",
            },
            Regexp = "string",
            Sensitivity = "string",
            Severity = "string",
            Type = "string",
        },
    },
    FlowBased = "string",
    FullArchiveProtos = new[]
    {
        "string",
    },
    MatchType = "string",
    NacQuarLog = "string",
    Name = "string",
    ObjectDlpSensorId = "string",
    Options = "string",
    ReplacemsgGroup = "string",
    Scopetype = "string",
    SummaryProtos = new[]
    {
        "string",
    },
});
Copy
example, err := fortimanager.NewObjectDlpSensor(ctx, "objectDlpSensorResource", &fortimanager.ObjectDlpSensorArgs{
Adom: pulumi.String("string"),
Comment: pulumi.String("string"),
DlpLog: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
Entries: .ObjectDlpSensorEntryArray{
&.ObjectDlpSensorEntryArgs{
Count: pulumi.Float64(0),
Dictionary: pulumi.String("string"),
Id: pulumi.Float64(0),
Status: pulumi.String("string"),
},
},
Eval: pulumi.String("string"),
ExtendedLog: pulumi.String("string"),
FeatureSet: pulumi.String("string"),
FgdId: pulumi.Float64(0),
Filters: .ObjectDlpSensorFilterTypeArray{
&.ObjectDlpSensorFilterTypeArgs{
Action: pulumi.String("string"),
Archive: pulumi.String("string"),
CompanyIdentifier: pulumi.String("string"),
Expiry: pulumi.String("string"),
FileSize: pulumi.Float64(0),
FileType: pulumi.String("string"),
FilterBy: pulumi.String("string"),
FpSensitivity: pulumi.String("string"),
Id: pulumi.Float64(0),
MatchPercentage: pulumi.Float64(0),
Name: pulumi.String("string"),
Protos: pulumi.StringArray{
pulumi.String("string"),
},
Regexp: pulumi.String("string"),
Sensitivity: pulumi.String("string"),
Severity: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
FlowBased: pulumi.String("string"),
FullArchiveProtos: pulumi.StringArray{
pulumi.String("string"),
},
MatchType: pulumi.String("string"),
NacQuarLog: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectDlpSensorId: pulumi.String("string"),
Options: pulumi.String("string"),
ReplacemsgGroup: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SummaryProtos: pulumi.StringArray{
pulumi.String("string"),
},
})
Copy
var objectDlpSensorResource = new ObjectDlpSensor("objectDlpSensorResource", ObjectDlpSensorArgs.builder()
    .adom("string")
    .comment("string")
    .dlpLog("string")
    .dynamicSortSubtable("string")
    .entries(ObjectDlpSensorEntryArgs.builder()
        .count(0)
        .dictionary("string")
        .id(0)
        .status("string")
        .build())
    .eval("string")
    .extendedLog("string")
    .featureSet("string")
    .fgdId(0)
    .filters(ObjectDlpSensorFilterArgs.builder()
        .action("string")
        .archive("string")
        .companyIdentifier("string")
        .expiry("string")
        .fileSize(0)
        .fileType("string")
        .filterBy("string")
        .fpSensitivity("string")
        .id(0)
        .matchPercentage(0)
        .name("string")
        .protos("string")
        .regexp("string")
        .sensitivity("string")
        .severity("string")
        .type("string")
        .build())
    .flowBased("string")
    .fullArchiveProtos("string")
    .matchType("string")
    .nacQuarLog("string")
    .name("string")
    .objectDlpSensorId("string")
    .options("string")
    .replacemsgGroup("string")
    .scopetype("string")
    .summaryProtos("string")
    .build());
Copy
object_dlp_sensor_resource = fortimanager.ObjectDlpSensor("objectDlpSensorResource",
    adom="string",
    comment="string",
    dlp_log="string",
    dynamic_sort_subtable="string",
    entries=[{
        "count": 0,
        "dictionary": "string",
        "id": 0,
        "status": "string",
    }],
    eval="string",
    extended_log="string",
    feature_set="string",
    fgd_id=0,
    filters=[{
        "action": "string",
        "archive": "string",
        "company_identifier": "string",
        "expiry": "string",
        "file_size": 0,
        "file_type": "string",
        "filter_by": "string",
        "fp_sensitivity": "string",
        "id": 0,
        "match_percentage": 0,
        "name": "string",
        "protos": ["string"],
        "regexp": "string",
        "sensitivity": "string",
        "severity": "string",
        "type": "string",
    }],
    flow_based="string",
    full_archive_protos=["string"],
    match_type="string",
    nac_quar_log="string",
    name="string",
    object_dlp_sensor_id="string",
    options="string",
    replacemsg_group="string",
    scopetype="string",
    summary_protos=["string"])
Copy
const objectDlpSensorResource = new fortimanager.ObjectDlpSensor("objectDlpSensorResource", {
    adom: "string",
    comment: "string",
    dlpLog: "string",
    dynamicSortSubtable: "string",
    entries: [{
        count: 0,
        dictionary: "string",
        id: 0,
        status: "string",
    }],
    eval: "string",
    extendedLog: "string",
    featureSet: "string",
    fgdId: 0,
    filters: [{
        action: "string",
        archive: "string",
        companyIdentifier: "string",
        expiry: "string",
        fileSize: 0,
        fileType: "string",
        filterBy: "string",
        fpSensitivity: "string",
        id: 0,
        matchPercentage: 0,
        name: "string",
        protos: ["string"],
        regexp: "string",
        sensitivity: "string",
        severity: "string",
        type: "string",
    }],
    flowBased: "string",
    fullArchiveProtos: ["string"],
    matchType: "string",
    nacQuarLog: "string",
    name: "string",
    objectDlpSensorId: "string",
    options: "string",
    replacemsgGroup: "string",
    scopetype: "string",
    summaryProtos: ["string"],
});
Copy
type: fortimanager:ObjectDlpSensor
properties:
    adom: string
    comment: string
    dlpLog: string
    dynamicSortSubtable: string
    entries:
        - count: 0
          dictionary: string
          id: 0
          status: string
    eval: string
    extendedLog: string
    featureSet: string
    fgdId: 0
    filters:
        - action: string
          archive: string
          companyIdentifier: string
          expiry: string
          fileSize: 0
          fileType: string
          filterBy: string
          fpSensitivity: string
          id: 0
          matchPercentage: 0
          name: string
          protos:
            - string
          regexp: string
          sensitivity: string
          severity: string
          type: string
    flowBased: string
    fullArchiveProtos:
        - string
    matchType: string
    nacQuarLog: string
    name: string
    objectDlpSensorId: string
    options: string
    replacemsgGroup: string
    scopetype: string
    summaryProtos:
        - string
Copy

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

Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Comment string
Comment.
DlpLog string
Enable/disable DLP logging. Valid values: disable, enable.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
Entries List<ObjectDlpSensorEntry>
Entries. The structure of entries block is documented below.
Eval string
Expression to evaluate.
ExtendedLog string
Enable/disable extended logging for data leak prevention. Valid values: disable, enable.
FeatureSet string
Flow/proxy feature set. Valid values: proxy, flow.
FgdId double
ID of object in FortiGuard database.
Filters List<ObjectDlpSensorFilter>
Filter. The structure of filter block is documented below.
FlowBased string
Enable/disable flow-based DLP. Valid values: disable, enable.
FullArchiveProtos List<string>
Protocols to always content archive. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
MatchType string
Logical relation between entries (default = match-any). Valid values: match-all, match-any, match-eval.
NacQuarLog string
Enable/disable NAC quarantine logging. Valid values: disable, enable.
Name string
Name of the DLP sensor.
ObjectDlpSensorId string
an identifier for the resource with format {{name}}.
Options string
Configure DLP options. Valid values: strict-file.
ReplacemsgGroup string
Replacement message group used by this DLP sensor.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
SummaryProtos List<string>
Protocols to always log summary. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Comment string
Comment.
DlpLog string
Enable/disable DLP logging. Valid values: disable, enable.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
Entries []ObjectDlpSensorEntryArgs
Entries. The structure of entries block is documented below.
Eval string
Expression to evaluate.
ExtendedLog string
Enable/disable extended logging for data leak prevention. Valid values: disable, enable.
FeatureSet string
Flow/proxy feature set. Valid values: proxy, flow.
FgdId float64
ID of object in FortiGuard database.
Filters []ObjectDlpSensorFilterTypeArgs
Filter. The structure of filter block is documented below.
FlowBased string
Enable/disable flow-based DLP. Valid values: disable, enable.
FullArchiveProtos []string
Protocols to always content archive. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
MatchType string
Logical relation between entries (default = match-any). Valid values: match-all, match-any, match-eval.
NacQuarLog string
Enable/disable NAC quarantine logging. Valid values: disable, enable.
Name string
Name of the DLP sensor.
ObjectDlpSensorId string
an identifier for the resource with format {{name}}.
Options string
Configure DLP options. Valid values: strict-file.
ReplacemsgGroup string
Replacement message group used by this DLP sensor.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
SummaryProtos []string
Protocols to always log summary. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
comment String
Comment.
dlpLog String
Enable/disable DLP logging. Valid values: disable, enable.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
entries List<ObjectDlpSensorEntry>
Entries. The structure of entries block is documented below.
eval String
Expression to evaluate.
extendedLog String
Enable/disable extended logging for data leak prevention. Valid values: disable, enable.
featureSet String
Flow/proxy feature set. Valid values: proxy, flow.
fgdId Double
ID of object in FortiGuard database.
filters List<ObjectDlpSensorFilter>
Filter. The structure of filter block is documented below.
flowBased String
Enable/disable flow-based DLP. Valid values: disable, enable.
fullArchiveProtos List<String>
Protocols to always content archive. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
matchType String
Logical relation between entries (default = match-any). Valid values: match-all, match-any, match-eval.
nacQuarLog String
Enable/disable NAC quarantine logging. Valid values: disable, enable.
name String
Name of the DLP sensor.
objectDlpSensorId String
an identifier for the resource with format {{name}}.
options String
Configure DLP options. Valid values: strict-file.
replacemsgGroup String
Replacement message group used by this DLP sensor.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
summaryProtos List<String>
Protocols to always log summary. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
comment string
Comment.
dlpLog string
Enable/disable DLP logging. Valid values: disable, enable.
dynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
entries ObjectDlpSensorEntry[]
Entries. The structure of entries block is documented below.
eval string
Expression to evaluate.
extendedLog string
Enable/disable extended logging for data leak prevention. Valid values: disable, enable.
featureSet string
Flow/proxy feature set. Valid values: proxy, flow.
fgdId number
ID of object in FortiGuard database.
filters ObjectDlpSensorFilter[]
Filter. The structure of filter block is documented below.
flowBased string
Enable/disable flow-based DLP. Valid values: disable, enable.
fullArchiveProtos string[]
Protocols to always content archive. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
matchType string
Logical relation between entries (default = match-any). Valid values: match-all, match-any, match-eval.
nacQuarLog string
Enable/disable NAC quarantine logging. Valid values: disable, enable.
name string
Name of the DLP sensor.
objectDlpSensorId string
an identifier for the resource with format {{name}}.
options string
Configure DLP options. Valid values: strict-file.
replacemsgGroup string
Replacement message group used by this DLP sensor.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
summaryProtos string[]
Protocols to always log summary. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
comment str
Comment.
dlp_log str
Enable/disable DLP logging. Valid values: disable, enable.
dynamic_sort_subtable str
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
entries Sequence[ObjectDlpSensorEntryArgs]
Entries. The structure of entries block is documented below.
eval str
Expression to evaluate.
extended_log str
Enable/disable extended logging for data leak prevention. Valid values: disable, enable.
feature_set str
Flow/proxy feature set. Valid values: proxy, flow.
fgd_id float
ID of object in FortiGuard database.
filters Sequence[ObjectDlpSensorFilterArgs]
Filter. The structure of filter block is documented below.
flow_based str
Enable/disable flow-based DLP. Valid values: disable, enable.
full_archive_protos Sequence[str]
Protocols to always content archive. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
match_type str
Logical relation between entries (default = match-any). Valid values: match-all, match-any, match-eval.
nac_quar_log str
Enable/disable NAC quarantine logging. Valid values: disable, enable.
name str
Name of the DLP sensor.
object_dlp_sensor_id str
an identifier for the resource with format {{name}}.
options str
Configure DLP options. Valid values: strict-file.
replacemsg_group str
Replacement message group used by this DLP sensor.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
summary_protos Sequence[str]
Protocols to always log summary. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
comment String
Comment.
dlpLog String
Enable/disable DLP logging. Valid values: disable, enable.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
entries List<Property Map>
Entries. The structure of entries block is documented below.
eval String
Expression to evaluate.
extendedLog String
Enable/disable extended logging for data leak prevention. Valid values: disable, enable.
featureSet String
Flow/proxy feature set. Valid values: proxy, flow.
fgdId Number
ID of object in FortiGuard database.
filters List<Property Map>
Filter. The structure of filter block is documented below.
flowBased String
Enable/disable flow-based DLP. Valid values: disable, enable.
fullArchiveProtos List<String>
Protocols to always content archive. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
matchType String
Logical relation between entries (default = match-any). Valid values: match-all, match-any, match-eval.
nacQuarLog String
Enable/disable NAC quarantine logging. Valid values: disable, enable.
name String
Name of the DLP sensor.
objectDlpSensorId String
an identifier for the resource with format {{name}}.
options String
Configure DLP options. Valid values: strict-file.
replacemsgGroup String
Replacement message group used by this DLP sensor.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
summaryProtos List<String>
Protocols to always log summary. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.

Outputs

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

Get an existing ObjectDlpSensor 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?: ObjectDlpSensorState, opts?: CustomResourceOptions): ObjectDlpSensor
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        comment: Optional[str] = None,
        dlp_log: Optional[str] = None,
        dynamic_sort_subtable: Optional[str] = None,
        entries: Optional[Sequence[ObjectDlpSensorEntryArgs]] = None,
        eval: Optional[str] = None,
        extended_log: Optional[str] = None,
        feature_set: Optional[str] = None,
        fgd_id: Optional[float] = None,
        filters: Optional[Sequence[ObjectDlpSensorFilterArgs]] = None,
        flow_based: Optional[str] = None,
        full_archive_protos: Optional[Sequence[str]] = None,
        match_type: Optional[str] = None,
        nac_quar_log: Optional[str] = None,
        name: Optional[str] = None,
        object_dlp_sensor_id: Optional[str] = None,
        options: Optional[str] = None,
        replacemsg_group: Optional[str] = None,
        scopetype: Optional[str] = None,
        summary_protos: Optional[Sequence[str]] = None) -> ObjectDlpSensor
func GetObjectDlpSensor(ctx *Context, name string, id IDInput, state *ObjectDlpSensorState, opts ...ResourceOption) (*ObjectDlpSensor, error)
public static ObjectDlpSensor Get(string name, Input<string> id, ObjectDlpSensorState? state, CustomResourceOptions? opts = null)
public static ObjectDlpSensor get(String name, Output<String> id, ObjectDlpSensorState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectDlpSensor    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Comment string
Comment.
DlpLog string
Enable/disable DLP logging. Valid values: disable, enable.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
Entries List<ObjectDlpSensorEntry>
Entries. The structure of entries block is documented below.
Eval string
Expression to evaluate.
ExtendedLog string
Enable/disable extended logging for data leak prevention. Valid values: disable, enable.
FeatureSet string
Flow/proxy feature set. Valid values: proxy, flow.
FgdId double
ID of object in FortiGuard database.
Filters List<ObjectDlpSensorFilter>
Filter. The structure of filter block is documented below.
FlowBased string
Enable/disable flow-based DLP. Valid values: disable, enable.
FullArchiveProtos List<string>
Protocols to always content archive. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
MatchType string
Logical relation between entries (default = match-any). Valid values: match-all, match-any, match-eval.
NacQuarLog string
Enable/disable NAC quarantine logging. Valid values: disable, enable.
Name string
Name of the DLP sensor.
ObjectDlpSensorId string
an identifier for the resource with format {{name}}.
Options string
Configure DLP options. Valid values: strict-file.
ReplacemsgGroup string
Replacement message group used by this DLP sensor.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
SummaryProtos List<string>
Protocols to always log summary. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Comment string
Comment.
DlpLog string
Enable/disable DLP logging. Valid values: disable, enable.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
Entries []ObjectDlpSensorEntryArgs
Entries. The structure of entries block is documented below.
Eval string
Expression to evaluate.
ExtendedLog string
Enable/disable extended logging for data leak prevention. Valid values: disable, enable.
FeatureSet string
Flow/proxy feature set. Valid values: proxy, flow.
FgdId float64
ID of object in FortiGuard database.
Filters []ObjectDlpSensorFilterTypeArgs
Filter. The structure of filter block is documented below.
FlowBased string
Enable/disable flow-based DLP. Valid values: disable, enable.
FullArchiveProtos []string
Protocols to always content archive. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
MatchType string
Logical relation between entries (default = match-any). Valid values: match-all, match-any, match-eval.
NacQuarLog string
Enable/disable NAC quarantine logging. Valid values: disable, enable.
Name string
Name of the DLP sensor.
ObjectDlpSensorId string
an identifier for the resource with format {{name}}.
Options string
Configure DLP options. Valid values: strict-file.
ReplacemsgGroup string
Replacement message group used by this DLP sensor.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
SummaryProtos []string
Protocols to always log summary. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
comment String
Comment.
dlpLog String
Enable/disable DLP logging. Valid values: disable, enable.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
entries List<ObjectDlpSensorEntry>
Entries. The structure of entries block is documented below.
eval String
Expression to evaluate.
extendedLog String
Enable/disable extended logging for data leak prevention. Valid values: disable, enable.
featureSet String
Flow/proxy feature set. Valid values: proxy, flow.
fgdId Double
ID of object in FortiGuard database.
filters List<ObjectDlpSensorFilter>
Filter. The structure of filter block is documented below.
flowBased String
Enable/disable flow-based DLP. Valid values: disable, enable.
fullArchiveProtos List<String>
Protocols to always content archive. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
matchType String
Logical relation between entries (default = match-any). Valid values: match-all, match-any, match-eval.
nacQuarLog String
Enable/disable NAC quarantine logging. Valid values: disable, enable.
name String
Name of the DLP sensor.
objectDlpSensorId String
an identifier for the resource with format {{name}}.
options String
Configure DLP options. Valid values: strict-file.
replacemsgGroup String
Replacement message group used by this DLP sensor.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
summaryProtos List<String>
Protocols to always log summary. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
comment string
Comment.
dlpLog string
Enable/disable DLP logging. Valid values: disable, enable.
dynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
entries ObjectDlpSensorEntry[]
Entries. The structure of entries block is documented below.
eval string
Expression to evaluate.
extendedLog string
Enable/disable extended logging for data leak prevention. Valid values: disable, enable.
featureSet string
Flow/proxy feature set. Valid values: proxy, flow.
fgdId number
ID of object in FortiGuard database.
filters ObjectDlpSensorFilter[]
Filter. The structure of filter block is documented below.
flowBased string
Enable/disable flow-based DLP. Valid values: disable, enable.
fullArchiveProtos string[]
Protocols to always content archive. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
matchType string
Logical relation between entries (default = match-any). Valid values: match-all, match-any, match-eval.
nacQuarLog string
Enable/disable NAC quarantine logging. Valid values: disable, enable.
name string
Name of the DLP sensor.
objectDlpSensorId string
an identifier for the resource with format {{name}}.
options string
Configure DLP options. Valid values: strict-file.
replacemsgGroup string
Replacement message group used by this DLP sensor.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
summaryProtos string[]
Protocols to always log summary. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
comment str
Comment.
dlp_log str
Enable/disable DLP logging. Valid values: disable, enable.
dynamic_sort_subtable str
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
entries Sequence[ObjectDlpSensorEntryArgs]
Entries. The structure of entries block is documented below.
eval str
Expression to evaluate.
extended_log str
Enable/disable extended logging for data leak prevention. Valid values: disable, enable.
feature_set str
Flow/proxy feature set. Valid values: proxy, flow.
fgd_id float
ID of object in FortiGuard database.
filters Sequence[ObjectDlpSensorFilterArgs]
Filter. The structure of filter block is documented below.
flow_based str
Enable/disable flow-based DLP. Valid values: disable, enable.
full_archive_protos Sequence[str]
Protocols to always content archive. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
match_type str
Logical relation between entries (default = match-any). Valid values: match-all, match-any, match-eval.
nac_quar_log str
Enable/disable NAC quarantine logging. Valid values: disable, enable.
name str
Name of the DLP sensor.
object_dlp_sensor_id str
an identifier for the resource with format {{name}}.
options str
Configure DLP options. Valid values: strict-file.
replacemsg_group str
Replacement message group used by this DLP sensor.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
summary_protos Sequence[str]
Protocols to always log summary. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
comment String
Comment.
dlpLog String
Enable/disable DLP logging. Valid values: disable, enable.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
entries List<Property Map>
Entries. The structure of entries block is documented below.
eval String
Expression to evaluate.
extendedLog String
Enable/disable extended logging for data leak prevention. Valid values: disable, enable.
featureSet String
Flow/proxy feature set. Valid values: proxy, flow.
fgdId Number
ID of object in FortiGuard database.
filters List<Property Map>
Filter. The structure of filter block is documented below.
flowBased String
Enable/disable flow-based DLP. Valid values: disable, enable.
fullArchiveProtos List<String>
Protocols to always content archive. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
matchType String
Logical relation between entries (default = match-any). Valid values: match-all, match-any, match-eval.
nacQuarLog String
Enable/disable NAC quarantine logging. Valid values: disable, enable.
name String
Name of the DLP sensor.
objectDlpSensorId String
an identifier for the resource with format {{name}}.
options String
Configure DLP options. Valid values: strict-file.
replacemsgGroup String
Replacement message group used by this DLP sensor.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
summaryProtos List<String>
Protocols to always log summary. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.

Supporting Types

ObjectDlpSensorEntry
, ObjectDlpSensorEntryArgs

Count double
Count of dictionary matches to trigger sensor entry match (Dictionary might not be able to trigger more than once based on its 'repeat' option, 1 - 255, default = 1).
Dictionary string
Select a DLP dictionary.
Id double
ID.
Status string
Enable/disable this entry. Valid values: disable, enable.
Count float64
Count of dictionary matches to trigger sensor entry match (Dictionary might not be able to trigger more than once based on its 'repeat' option, 1 - 255, default = 1).
Dictionary string
Select a DLP dictionary.
Id float64
ID.
Status string
Enable/disable this entry. Valid values: disable, enable.
count Double
Count of dictionary matches to trigger sensor entry match (Dictionary might not be able to trigger more than once based on its 'repeat' option, 1 - 255, default = 1).
dictionary String
Select a DLP dictionary.
id Double
ID.
status String
Enable/disable this entry. Valid values: disable, enable.
count number
Count of dictionary matches to trigger sensor entry match (Dictionary might not be able to trigger more than once based on its 'repeat' option, 1 - 255, default = 1).
dictionary string
Select a DLP dictionary.
id number
ID.
status string
Enable/disable this entry. Valid values: disable, enable.
count float
Count of dictionary matches to trigger sensor entry match (Dictionary might not be able to trigger more than once based on its 'repeat' option, 1 - 255, default = 1).
dictionary str
Select a DLP dictionary.
id float
ID.
status str
Enable/disable this entry. Valid values: disable, enable.
count Number
Count of dictionary matches to trigger sensor entry match (Dictionary might not be able to trigger more than once based on its 'repeat' option, 1 - 255, default = 1).
dictionary String
Select a DLP dictionary.
id Number
ID.
status String
Enable/disable this entry. Valid values: disable, enable.

ObjectDlpSensorFilter
, ObjectDlpSensorFilterArgs

Action string
Action to take with content that this DLP sensor matches. Valid values: log-only, block, exempt, ban, ban-sender, quarantine-ip, quarantine-port, none, allow.
Archive string
Enable/disable DLP archiving. Valid values: disable, enable, summary-only.
CompanyIdentifier string
Enter a company identifier watermark to match. Only watermarks that your company has placed on the files are matched.
Expiry string
Quarantine duration in days, hours, minutes format (dddhhmm).
FileSize double
Match files this size or larger (0 - 4294967295 kbytes).
FileType string
Select the number of a DLP file pattern table to match.
FilterBy string
Select the type of content to match. Valid values: credit-card, ssn, regexp, file-type, file-size, fingerprint, watermark, encrypted.
FpSensitivity string
Select a DLP file pattern sensitivity to match.
Id double
ID.
MatchPercentage double
Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
Name string
Filter name.
Protos List<string>
Check messages or files over one or more of these protocols. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
Regexp string
Enter a regular expression to match (max. 255 characters).
Sensitivity string
Select a DLP file pattern sensitivity to match.
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 sensor matches. Valid values: log-only, block, exempt, ban, ban-sender, quarantine-ip, quarantine-port, none, allow.
Archive string
Enable/disable DLP archiving. Valid values: disable, enable, summary-only.
CompanyIdentifier string
Enter a company identifier watermark to match. Only watermarks that your company has placed on the files are matched.
Expiry string
Quarantine duration in days, hours, minutes format (dddhhmm).
FileSize float64
Match files this size or larger (0 - 4294967295 kbytes).
FileType string
Select the number of a DLP file pattern table to match.
FilterBy string
Select the type of content to match. Valid values: credit-card, ssn, regexp, file-type, file-size, fingerprint, watermark, encrypted.
FpSensitivity string
Select a DLP file pattern sensitivity to match.
Id float64
ID.
MatchPercentage float64
Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
Name string
Filter name.
Protos []string
Check messages or files over one or more of these protocols. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
Regexp string
Enter a regular expression to match (max. 255 characters).
Sensitivity string
Select a DLP file pattern sensitivity to match.
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 sensor matches. Valid values: log-only, block, exempt, ban, ban-sender, quarantine-ip, quarantine-port, none, allow.
archive String
Enable/disable DLP archiving. Valid values: disable, enable, summary-only.
companyIdentifier String
Enter a company identifier watermark to match. Only watermarks that your company has placed on the files are matched.
expiry String
Quarantine duration in days, hours, minutes format (dddhhmm).
fileSize Double
Match files this size or larger (0 - 4294967295 kbytes).
fileType String
Select the number of a DLP file pattern table to match.
filterBy String
Select the type of content to match. Valid values: credit-card, ssn, regexp, file-type, file-size, fingerprint, watermark, encrypted.
fpSensitivity String
Select a DLP file pattern sensitivity to match.
id Double
ID.
matchPercentage Double
Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
name String
Filter name.
protos List<String>
Check messages or files over one or more of these protocols. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
regexp String
Enter a regular expression to match (max. 255 characters).
sensitivity String
Select a DLP file pattern sensitivity to match.
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 sensor matches. Valid values: log-only, block, exempt, ban, ban-sender, quarantine-ip, quarantine-port, none, allow.
archive string
Enable/disable DLP archiving. Valid values: disable, enable, summary-only.
companyIdentifier string
Enter a company identifier watermark to match. Only watermarks that your company has placed on the files are matched.
expiry string
Quarantine duration in days, hours, minutes format (dddhhmm).
fileSize number
Match files this size or larger (0 - 4294967295 kbytes).
fileType string
Select the number of a DLP file pattern table to match.
filterBy string
Select the type of content to match. Valid values: credit-card, ssn, regexp, file-type, file-size, fingerprint, watermark, encrypted.
fpSensitivity string
Select a DLP file pattern sensitivity to match.
id number
ID.
matchPercentage number
Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
name string
Filter name.
protos string[]
Check messages or files over one or more of these protocols. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
regexp string
Enter a regular expression to match (max. 255 characters).
sensitivity string
Select a DLP file pattern sensitivity to match.
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 sensor matches. Valid values: log-only, block, exempt, ban, ban-sender, quarantine-ip, quarantine-port, none, allow.
archive str
Enable/disable DLP archiving. Valid values: disable, enable, summary-only.
company_identifier str
Enter a company identifier watermark to match. Only watermarks that your company has placed on the files are matched.
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: credit-card, ssn, regexp, file-type, file-size, fingerprint, watermark, encrypted.
fp_sensitivity str
Select a DLP file pattern sensitivity to match.
id float
ID.
match_percentage float
Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
name str
Filter name.
protos Sequence[str]
Check messages or files over one or more of these protocols. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
regexp str
Enter a regular expression to match (max. 255 characters).
sensitivity str
Select a DLP file pattern sensitivity to match.
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 sensor matches. Valid values: log-only, block, exempt, ban, ban-sender, quarantine-ip, quarantine-port, none, allow.
archive String
Enable/disable DLP archiving. Valid values: disable, enable, summary-only.
companyIdentifier String
Enter a company identifier watermark to match. Only watermarks that your company has placed on the files are matched.
expiry String
Quarantine duration in days, hours, minutes format (dddhhmm).
fileSize Number
Match files this size or larger (0 - 4294967295 kbytes).
fileType String
Select the number of a DLP file pattern table to match.
filterBy String
Select the type of content to match. Valid values: credit-card, ssn, regexp, file-type, file-size, fingerprint, watermark, encrypted.
fpSensitivity String
Select a DLP file pattern sensitivity to match.
id Number
ID.
matchPercentage Number
Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
name String
Filter name.
protos List<String>
Check messages or files over one or more of these protocols. Valid values: imap, smtp, pop3, ftp, nntp, mm1, mm3, mm4, mm7, mapi, aim, icq, msn, yahoo, http-get, http-post, cifs, ssh.
regexp String
Enter a regular expression to match (max. 255 characters).
sensitivity String
Select a DLP file pattern sensitivity to match.
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 Sensor can be imported using any of these accepted formats:

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectDlpSensor:ObjectDlpSensor labelname {{name}}
Copy

$ 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.