1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectDlpSensorFilter
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectDlpSensorFilter

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Set up DLP filters for this sensor.

    This resource is a sub resource for variable filter of resource fortimanager.ObjectDlpSensor. Conflict and overwrite may occur if use both of them.

    Create ObjectDlpSensorFilter Resource

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

    Constructor syntax

    new ObjectDlpSensorFilter(name: string, args: ObjectDlpSensorFilterArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectDlpSensorFilter(resource_name: str,
                              args: ObjectDlpSensorFilterInitArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectDlpSensorFilter(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              sensor: Optional[str] = None,
                              match_percentage: Optional[float] = None,
                              type: Optional[str] = None,
                              fp_sensitivity: 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,
                              company_identifier: Optional[str] = None,
                              archive: Optional[str] = None,
                              object_dlp_sensor_filter_id: Optional[str] = None,
                              name: Optional[str] = None,
                              protos: Optional[Sequence[str]] = None,
                              regexp: Optional[str] = None,
                              scopetype: Optional[str] = None,
                              sensitivity: Optional[str] = None,
                              adom: Optional[str] = None,
                              severity: Optional[str] = None,
                              action: Optional[str] = None)
    func NewObjectDlpSensorFilter(ctx *Context, name string, args ObjectDlpSensorFilterArgs, opts ...ResourceOption) (*ObjectDlpSensorFilter, error)
    public ObjectDlpSensorFilter(string name, ObjectDlpSensorFilterArgs args, CustomResourceOptions? opts = null)
    public ObjectDlpSensorFilter(String name, ObjectDlpSensorFilterArgs args)
    public ObjectDlpSensorFilter(String name, ObjectDlpSensorFilterArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectDlpSensorFilter
    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 ObjectDlpSensorFilterArgs
    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 ObjectDlpSensorFilterInitArgs
    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 ObjectDlpSensorFilterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectDlpSensorFilterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectDlpSensorFilterArgs
    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 objectDlpSensorFilterResource = new Fortimanager.ObjectDlpSensorFilter("objectDlpSensorFilterResource", new()
    {
        Sensor = "string",
        MatchPercentage = 0,
        Type = "string",
        FpSensitivity = "string",
        Expiry = "string",
        FileSize = 0,
        FileType = "string",
        FilterBy = "string",
        Fosid = 0,
        CompanyIdentifier = "string",
        Archive = "string",
        ObjectDlpSensorFilterId = "string",
        Name = "string",
        Protos = new[]
        {
            "string",
        },
        Regexp = "string",
        Scopetype = "string",
        Sensitivity = "string",
        Adom = "string",
        Severity = "string",
        Action = "string",
    });
    
    example, err := fortimanager.NewObjectDlpSensorFilter(ctx, "objectDlpSensorFilterResource", &fortimanager.ObjectDlpSensorFilterArgs{
    Sensor: pulumi.String("string"),
    MatchPercentage: pulumi.Float64(0),
    Type: pulumi.String("string"),
    FpSensitivity: pulumi.String("string"),
    Expiry: pulumi.String("string"),
    FileSize: pulumi.Float64(0),
    FileType: pulumi.String("string"),
    FilterBy: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    CompanyIdentifier: pulumi.String("string"),
    Archive: pulumi.String("string"),
    ObjectDlpSensorFilterId: pulumi.String("string"),
    Name: pulumi.String("string"),
    Protos: pulumi.StringArray{
    pulumi.String("string"),
    },
    Regexp: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Sensitivity: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Severity: pulumi.String("string"),
    Action: pulumi.String("string"),
    })
    
    var objectDlpSensorFilterResource = new ObjectDlpSensorFilter("objectDlpSensorFilterResource", ObjectDlpSensorFilterArgs.builder()
        .sensor("string")
        .matchPercentage(0)
        .type("string")
        .fpSensitivity("string")
        .expiry("string")
        .fileSize(0)
        .fileType("string")
        .filterBy("string")
        .fosid(0)
        .companyIdentifier("string")
        .archive("string")
        .objectDlpSensorFilterId("string")
        .name("string")
        .protos("string")
        .regexp("string")
        .scopetype("string")
        .sensitivity("string")
        .adom("string")
        .severity("string")
        .action("string")
        .build());
    
    object_dlp_sensor_filter_resource = fortimanager.ObjectDlpSensorFilter("objectDlpSensorFilterResource",
        sensor="string",
        match_percentage=0,
        type="string",
        fp_sensitivity="string",
        expiry="string",
        file_size=0,
        file_type="string",
        filter_by="string",
        fosid=0,
        company_identifier="string",
        archive="string",
        object_dlp_sensor_filter_id="string",
        name="string",
        protos=["string"],
        regexp="string",
        scopetype="string",
        sensitivity="string",
        adom="string",
        severity="string",
        action="string")
    
    const objectDlpSensorFilterResource = new fortimanager.ObjectDlpSensorFilter("objectDlpSensorFilterResource", {
        sensor: "string",
        matchPercentage: 0,
        type: "string",
        fpSensitivity: "string",
        expiry: "string",
        fileSize: 0,
        fileType: "string",
        filterBy: "string",
        fosid: 0,
        companyIdentifier: "string",
        archive: "string",
        objectDlpSensorFilterId: "string",
        name: "string",
        protos: ["string"],
        regexp: "string",
        scopetype: "string",
        sensitivity: "string",
        adom: "string",
        severity: "string",
        action: "string",
    });
    
    type: fortimanager:ObjectDlpSensorFilter
    properties:
        action: string
        adom: string
        archive: string
        companyIdentifier: string
        expiry: string
        fileSize: 0
        fileType: string
        filterBy: string
        fosid: 0
        fpSensitivity: string
        matchPercentage: 0
        name: string
        objectDlpSensorFilterId: string
        protos:
            - string
        regexp: string
        scopetype: string
        sensitivity: string
        sensor: string
        severity: string
        type: string
    

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

    Sensor string
    Sensor.
    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.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    Fosid double
    ID.
    FpSensitivity string
    Select a DLP file pattern sensitivity to match.
    MatchPercentage double
    Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
    Name string
    Filter name.
    ObjectDlpSensorFilterId string
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    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.
    Sensor string
    Sensor.
    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.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    Fosid float64
    ID.
    FpSensitivity string
    Select a DLP file pattern sensitivity to match.
    MatchPercentage float64
    Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
    Name string
    Filter name.
    ObjectDlpSensorFilterId string
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    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.
    sensor String
    Sensor.
    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.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    fosid Double
    ID.
    fpSensitivity String
    Select a DLP file pattern sensitivity to match.
    matchPercentage Double
    Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
    name String
    Filter name.
    objectDlpSensorFilterId String
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    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.
    sensor string
    Sensor.
    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.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    fosid number
    ID.
    fpSensitivity string
    Select a DLP file pattern sensitivity to match.
    matchPercentage number
    Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
    name string
    Filter name.
    objectDlpSensorFilterId string
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    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.
    sensor str
    Sensor.
    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.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    fosid float
    ID.
    fp_sensitivity str
    Select a DLP file pattern sensitivity to match.
    match_percentage float
    Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
    name str
    Filter name.
    object_dlp_sensor_filter_id str
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    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.
    sensor String
    Sensor.
    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.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    fosid Number
    ID.
    fpSensitivity String
    Select a DLP file pattern sensitivity to match.
    matchPercentage Number
    Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
    name String
    Filter name.
    objectDlpSensorFilterId String
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    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.

    Outputs

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

    Get an existing ObjectDlpSensorFilter 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?: ObjectDlpSensorFilterState, opts?: CustomResourceOptions): ObjectDlpSensorFilter
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            archive: Optional[str] = None,
            company_identifier: 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,
            fp_sensitivity: Optional[str] = None,
            match_percentage: Optional[float] = None,
            name: Optional[str] = None,
            object_dlp_sensor_filter_id: Optional[str] = None,
            protos: Optional[Sequence[str]] = None,
            regexp: Optional[str] = None,
            scopetype: Optional[str] = None,
            sensitivity: Optional[str] = None,
            sensor: Optional[str] = None,
            severity: Optional[str] = None,
            type: Optional[str] = None) -> ObjectDlpSensorFilter
    func GetObjectDlpSensorFilter(ctx *Context, name string, id IDInput, state *ObjectDlpSensorFilterState, opts ...ResourceOption) (*ObjectDlpSensorFilter, error)
    public static ObjectDlpSensorFilter Get(string name, Input<string> id, ObjectDlpSensorFilterState? state, CustomResourceOptions? opts = null)
    public static ObjectDlpSensorFilter get(String name, Output<String> id, ObjectDlpSensorFilterState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectDlpSensorFilter    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.
    The following state arguments are supported:
    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.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    Fosid double
    ID.
    FpSensitivity string
    Select a DLP file pattern sensitivity to match.
    MatchPercentage double
    Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
    Name string
    Filter name.
    ObjectDlpSensorFilterId string
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    Sensitivity string
    Select a DLP file pattern sensitivity to match.
    Sensor string
    Sensor.
    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.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    Fosid float64
    ID.
    FpSensitivity string
    Select a DLP file pattern sensitivity to match.
    MatchPercentage float64
    Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
    Name string
    Filter name.
    ObjectDlpSensorFilterId string
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    Sensitivity string
    Select a DLP file pattern sensitivity to match.
    Sensor string
    Sensor.
    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.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    fosid Double
    ID.
    fpSensitivity String
    Select a DLP file pattern sensitivity to match.
    matchPercentage Double
    Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
    name String
    Filter name.
    objectDlpSensorFilterId String
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    sensitivity String
    Select a DLP file pattern sensitivity to match.
    sensor String
    Sensor.
    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.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    fosid number
    ID.
    fpSensitivity string
    Select a DLP file pattern sensitivity to match.
    matchPercentage number
    Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
    name string
    Filter name.
    objectDlpSensorFilterId string
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    sensitivity string
    Select a DLP file pattern sensitivity to match.
    sensor string
    Sensor.
    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.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    fosid float
    ID.
    fp_sensitivity str
    Select a DLP file pattern sensitivity to match.
    match_percentage float
    Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
    name str
    Filter name.
    object_dlp_sensor_filter_id str
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    sensitivity str
    Select a DLP file pattern sensitivity to match.
    sensor str
    Sensor.
    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.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    fosid Number
    ID.
    fpSensitivity String
    Select a DLP file pattern sensitivity to match.
    matchPercentage Number
    Percentage of fingerprints in the fingerprint databases designated with the selected sensitivity to match.
    name String
    Filter name.
    objectDlpSensorFilterId String
    an identifier for the resource with format {{fosid}}.
    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).
    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.
    sensitivity String
    Select a DLP file pattern sensitivity to match.
    sensor String
    Sensor.
    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 SensorFilter can be imported using any of these accepted formats:

    Set import_options = [“sensor=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectDlpSensorFilter:ObjectDlpSensorFilter 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev