fortimanager.ObjectDlpFilepatternEntries
Explore with Pulumi AI
Configure file patterns used by DLP blocking.
This resource is a sub resource for variable
entries
of resourcefortimanager.ObjectDlpFilepattern
. Conflict and overwrite may occur if use both of them.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname2 = new fortimanager.ObjectDlpFilepattern("trname2", {fosid: 5});
const trname = new fortimanager.ObjectDlpFilepatternEntries("trname", {
filepattern: trname2.fosid,
fileType: "unknown",
filterType: "pattern",
pattern: "*.bat",
}, {
dependsOn: [trname2],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname2 = fortimanager.ObjectDlpFilepattern("trname2", fosid=5)
trname = fortimanager.ObjectDlpFilepatternEntries("trname",
filepattern=trname2.fosid,
file_type="unknown",
filter_type="pattern",
pattern="*.bat",
opts = pulumi.ResourceOptions(depends_on=[trname2]))
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 {
trname2, err := fortimanager.NewObjectDlpFilepattern(ctx, "trname2", &fortimanager.ObjectDlpFilepatternArgs{
Fosid: pulumi.Float64(5),
})
if err != nil {
return err
}
_, err = fortimanager.NewObjectDlpFilepatternEntries(ctx, "trname", &fortimanager.ObjectDlpFilepatternEntriesArgs{
Filepattern: trname2.Fosid,
FileType: pulumi.String("unknown"),
FilterType: pulumi.String("pattern"),
Pattern: pulumi.String("*.bat"),
}, pulumi.DependsOn([]pulumi.Resource{
trname2,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname2 = new Fortimanager.ObjectDlpFilepattern("trname2", new()
{
Fosid = 5,
});
var trname = new Fortimanager.ObjectDlpFilepatternEntries("trname", new()
{
Filepattern = trname2.Fosid,
FileType = "unknown",
FilterType = "pattern",
Pattern = "*.bat",
}, new CustomResourceOptions
{
DependsOn =
{
trname2,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectDlpFilepattern;
import com.pulumi.fortimanager.ObjectDlpFilepatternArgs;
import com.pulumi.fortimanager.ObjectDlpFilepatternEntries;
import com.pulumi.fortimanager.ObjectDlpFilepatternEntriesArgs;
import com.pulumi.resources.CustomResourceOptions;
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 trname2 = new ObjectDlpFilepattern("trname2", ObjectDlpFilepatternArgs.builder()
.fosid(5)
.build());
var trname = new ObjectDlpFilepatternEntries("trname", ObjectDlpFilepatternEntriesArgs.builder()
.filepattern(trname2.fosid())
.fileType("unknown")
.filterType("pattern")
.pattern("*.bat")
.build(), CustomResourceOptions.builder()
.dependsOn(trname2)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectDlpFilepatternEntries
properties:
filepattern: ${trname2.fosid}
fileType: unknown
filterType: pattern
pattern: '*.bat'
options:
dependsOn:
- ${trname2}
trname2:
type: fortimanager:ObjectDlpFilepattern
properties:
fosid: 5
Create ObjectDlpFilepatternEntries Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectDlpFilepatternEntries(name: string, args: ObjectDlpFilepatternEntriesArgs, opts?: CustomResourceOptions);
@overload
def ObjectDlpFilepatternEntries(resource_name: str,
args: ObjectDlpFilepatternEntriesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectDlpFilepatternEntries(resource_name: str,
opts: Optional[ResourceOptions] = None,
filepattern: Optional[str] = None,
adom: Optional[str] = None,
file_type: Optional[str] = None,
filter_type: Optional[str] = None,
object_dlp_filepattern_entries_id: Optional[str] = None,
pattern: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectDlpFilepatternEntries(ctx *Context, name string, args ObjectDlpFilepatternEntriesArgs, opts ...ResourceOption) (*ObjectDlpFilepatternEntries, error)
public ObjectDlpFilepatternEntries(string name, ObjectDlpFilepatternEntriesArgs args, CustomResourceOptions? opts = null)
public ObjectDlpFilepatternEntries(String name, ObjectDlpFilepatternEntriesArgs args)
public ObjectDlpFilepatternEntries(String name, ObjectDlpFilepatternEntriesArgs args, CustomResourceOptions options)
type: fortimanager:ObjectDlpFilepatternEntries
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 ObjectDlpFilepatternEntriesArgs
- 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 ObjectDlpFilepatternEntriesArgs
- 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 ObjectDlpFilepatternEntriesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectDlpFilepatternEntriesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectDlpFilepatternEntriesArgs
- 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 objectDlpFilepatternEntriesResource = new Fortimanager.ObjectDlpFilepatternEntries("objectDlpFilepatternEntriesResource", new()
{
Filepattern = "string",
Adom = "string",
FileType = "string",
FilterType = "string",
ObjectDlpFilepatternEntriesId = "string",
Pattern = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectDlpFilepatternEntries(ctx, "objectDlpFilepatternEntriesResource", &fortimanager.ObjectDlpFilepatternEntriesArgs{
Filepattern: pulumi.String("string"),
Adom: pulumi.String("string"),
FileType: pulumi.String("string"),
FilterType: pulumi.String("string"),
ObjectDlpFilepatternEntriesId: pulumi.String("string"),
Pattern: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectDlpFilepatternEntriesResource = new ObjectDlpFilepatternEntries("objectDlpFilepatternEntriesResource", ObjectDlpFilepatternEntriesArgs.builder()
.filepattern("string")
.adom("string")
.fileType("string")
.filterType("string")
.objectDlpFilepatternEntriesId("string")
.pattern("string")
.scopetype("string")
.build());
object_dlp_filepattern_entries_resource = fortimanager.ObjectDlpFilepatternEntries("objectDlpFilepatternEntriesResource",
filepattern="string",
adom="string",
file_type="string",
filter_type="string",
object_dlp_filepattern_entries_id="string",
pattern="string",
scopetype="string")
const objectDlpFilepatternEntriesResource = new fortimanager.ObjectDlpFilepatternEntries("objectDlpFilepatternEntriesResource", {
filepattern: "string",
adom: "string",
fileType: "string",
filterType: "string",
objectDlpFilepatternEntriesId: "string",
pattern: "string",
scopetype: "string",
});
type: fortimanager:ObjectDlpFilepatternEntries
properties:
adom: string
fileType: string
filepattern: string
filterType: string
objectDlpFilepatternEntriesId: string
pattern: string
scopetype: string
ObjectDlpFilepatternEntries 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 ObjectDlpFilepatternEntries resource accepts the following input properties:
- Filepattern string
- Filepattern.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - File
Type string - Select a file type. Valid values:
unknown
,ignored
,exe
,elf
,bat
,javascript
,html
,hta
,msoffice
,gzip
,rar
,tar
,lzh
,upx
,zip
,cab
,bzip2
,bzip
,activemime
,mime
,hlp
,arj
,base64
,binhex
,uue
,fsg
,aspack
,msc
,petite
,jpeg
,gif
,tiff
,png
,bmp
,msi
,mpeg
,mov
,mp3
,wma
,wav
,pdf
,avi
,rm
,torrent
,hibun
,7z
,xz
,msofficex
,mach-o
,dmg
,.net
,xar
,chm
,iso
,crx
,flac
,sis
,prc
,class
,jad
,cod
. - Filter
Type string - Filter by file name pattern or by file type. Valid values:
pattern
,type
. - Object
Dlp stringFilepattern Entries Id - an identifier for the resource with format {{pattern}}.
- Pattern string
- Add a file name pattern.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Filepattern string
- Filepattern.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - File
Type string - Select a file type. Valid values:
unknown
,ignored
,exe
,elf
,bat
,javascript
,html
,hta
,msoffice
,gzip
,rar
,tar
,lzh
,upx
,zip
,cab
,bzip2
,bzip
,activemime
,mime
,hlp
,arj
,base64
,binhex
,uue
,fsg
,aspack
,msc
,petite
,jpeg
,gif
,tiff
,png
,bmp
,msi
,mpeg
,mov
,mp3
,wma
,wav
,pdf
,avi
,rm
,torrent
,hibun
,7z
,xz
,msofficex
,mach-o
,dmg
,.net
,xar
,chm
,iso
,crx
,flac
,sis
,prc
,class
,jad
,cod
. - Filter
Type string - Filter by file name pattern or by file type. Valid values:
pattern
,type
. - Object
Dlp stringFilepattern Entries Id - an identifier for the resource with format {{pattern}}.
- Pattern string
- Add a file name pattern.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- filepattern String
- Filepattern.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - file
Type String - Select a file type. Valid values:
unknown
,ignored
,exe
,elf
,bat
,javascript
,html
,hta
,msoffice
,gzip
,rar
,tar
,lzh
,upx
,zip
,cab
,bzip2
,bzip
,activemime
,mime
,hlp
,arj
,base64
,binhex
,uue
,fsg
,aspack
,msc
,petite
,jpeg
,gif
,tiff
,png
,bmp
,msi
,mpeg
,mov
,mp3
,wma
,wav
,pdf
,avi
,rm
,torrent
,hibun
,7z
,xz
,msofficex
,mach-o
,dmg
,.net
,xar
,chm
,iso
,crx
,flac
,sis
,prc
,class
,jad
,cod
. - filter
Type String - Filter by file name pattern or by file type. Valid values:
pattern
,type
. - object
Dlp StringFilepattern Entries Id - an identifier for the resource with format {{pattern}}.
- pattern String
- Add a file name pattern.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- filepattern string
- Filepattern.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - file
Type string - Select a file type. Valid values:
unknown
,ignored
,exe
,elf
,bat
,javascript
,html
,hta
,msoffice
,gzip
,rar
,tar
,lzh
,upx
,zip
,cab
,bzip2
,bzip
,activemime
,mime
,hlp
,arj
,base64
,binhex
,uue
,fsg
,aspack
,msc
,petite
,jpeg
,gif
,tiff
,png
,bmp
,msi
,mpeg
,mov
,mp3
,wma
,wav
,pdf
,avi
,rm
,torrent
,hibun
,7z
,xz
,msofficex
,mach-o
,dmg
,.net
,xar
,chm
,iso
,crx
,flac
,sis
,prc
,class
,jad
,cod
. - filter
Type string - Filter by file name pattern or by file type. Valid values:
pattern
,type
. - object
Dlp stringFilepattern Entries Id - an identifier for the resource with format {{pattern}}.
- pattern string
- Add a file name pattern.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- filepattern str
- Filepattern.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - file_
type str - Select a file type. Valid values:
unknown
,ignored
,exe
,elf
,bat
,javascript
,html
,hta
,msoffice
,gzip
,rar
,tar
,lzh
,upx
,zip
,cab
,bzip2
,bzip
,activemime
,mime
,hlp
,arj
,base64
,binhex
,uue
,fsg
,aspack
,msc
,petite
,jpeg
,gif
,tiff
,png
,bmp
,msi
,mpeg
,mov
,mp3
,wma
,wav
,pdf
,avi
,rm
,torrent
,hibun
,7z
,xz
,msofficex
,mach-o
,dmg
,.net
,xar
,chm
,iso
,crx
,flac
,sis
,prc
,class
,jad
,cod
. - filter_
type str - Filter by file name pattern or by file type. Valid values:
pattern
,type
. - object_
dlp_ strfilepattern_ entries_ id - an identifier for the resource with format {{pattern}}.
- pattern str
- Add a file name pattern.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- filepattern String
- Filepattern.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - file
Type String - Select a file type. Valid values:
unknown
,ignored
,exe
,elf
,bat
,javascript
,html
,hta
,msoffice
,gzip
,rar
,tar
,lzh
,upx
,zip
,cab
,bzip2
,bzip
,activemime
,mime
,hlp
,arj
,base64
,binhex
,uue
,fsg
,aspack
,msc
,petite
,jpeg
,gif
,tiff
,png
,bmp
,msi
,mpeg
,mov
,mp3
,wma
,wav
,pdf
,avi
,rm
,torrent
,hibun
,7z
,xz
,msofficex
,mach-o
,dmg
,.net
,xar
,chm
,iso
,crx
,flac
,sis
,prc
,class
,jad
,cod
. - filter
Type String - Filter by file name pattern or by file type. Valid values:
pattern
,type
. - object
Dlp StringFilepattern Entries Id - an identifier for the resource with format {{pattern}}.
- pattern String
- Add a file name pattern.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectDlpFilepatternEntries 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 ObjectDlpFilepatternEntries Resource
Get an existing ObjectDlpFilepatternEntries 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?: ObjectDlpFilepatternEntriesState, opts?: CustomResourceOptions): ObjectDlpFilepatternEntries
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
file_type: Optional[str] = None,
filepattern: Optional[str] = None,
filter_type: Optional[str] = None,
object_dlp_filepattern_entries_id: Optional[str] = None,
pattern: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectDlpFilepatternEntries
func GetObjectDlpFilepatternEntries(ctx *Context, name string, id IDInput, state *ObjectDlpFilepatternEntriesState, opts ...ResourceOption) (*ObjectDlpFilepatternEntries, error)
public static ObjectDlpFilepatternEntries Get(string name, Input<string> id, ObjectDlpFilepatternEntriesState? state, CustomResourceOptions? opts = null)
public static ObjectDlpFilepatternEntries get(String name, Output<String> id, ObjectDlpFilepatternEntriesState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectDlpFilepatternEntries 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - File
Type string - Select a file type. Valid values:
unknown
,ignored
,exe
,elf
,bat
,javascript
,html
,hta
,msoffice
,gzip
,rar
,tar
,lzh
,upx
,zip
,cab
,bzip2
,bzip
,activemime
,mime
,hlp
,arj
,base64
,binhex
,uue
,fsg
,aspack
,msc
,petite
,jpeg
,gif
,tiff
,png
,bmp
,msi
,mpeg
,mov
,mp3
,wma
,wav
,pdf
,avi
,rm
,torrent
,hibun
,7z
,xz
,msofficex
,mach-o
,dmg
,.net
,xar
,chm
,iso
,crx
,flac
,sis
,prc
,class
,jad
,cod
. - Filepattern string
- Filepattern.
- Filter
Type string - Filter by file name pattern or by file type. Valid values:
pattern
,type
. - Object
Dlp stringFilepattern Entries Id - an identifier for the resource with format {{pattern}}.
- Pattern string
- Add a file name pattern.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - File
Type string - Select a file type. Valid values:
unknown
,ignored
,exe
,elf
,bat
,javascript
,html
,hta
,msoffice
,gzip
,rar
,tar
,lzh
,upx
,zip
,cab
,bzip2
,bzip
,activemime
,mime
,hlp
,arj
,base64
,binhex
,uue
,fsg
,aspack
,msc
,petite
,jpeg
,gif
,tiff
,png
,bmp
,msi
,mpeg
,mov
,mp3
,wma
,wav
,pdf
,avi
,rm
,torrent
,hibun
,7z
,xz
,msofficex
,mach-o
,dmg
,.net
,xar
,chm
,iso
,crx
,flac
,sis
,prc
,class
,jad
,cod
. - Filepattern string
- Filepattern.
- Filter
Type string - Filter by file name pattern or by file type. Valid values:
pattern
,type
. - Object
Dlp stringFilepattern Entries Id - an identifier for the resource with format {{pattern}}.
- Pattern string
- Add a file name pattern.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - file
Type String - Select a file type. Valid values:
unknown
,ignored
,exe
,elf
,bat
,javascript
,html
,hta
,msoffice
,gzip
,rar
,tar
,lzh
,upx
,zip
,cab
,bzip2
,bzip
,activemime
,mime
,hlp
,arj
,base64
,binhex
,uue
,fsg
,aspack
,msc
,petite
,jpeg
,gif
,tiff
,png
,bmp
,msi
,mpeg
,mov
,mp3
,wma
,wav
,pdf
,avi
,rm
,torrent
,hibun
,7z
,xz
,msofficex
,mach-o
,dmg
,.net
,xar
,chm
,iso
,crx
,flac
,sis
,prc
,class
,jad
,cod
. - filepattern String
- Filepattern.
- filter
Type String - Filter by file name pattern or by file type. Valid values:
pattern
,type
. - object
Dlp StringFilepattern Entries Id - an identifier for the resource with format {{pattern}}.
- pattern String
- Add a file name pattern.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - file
Type string - Select a file type. Valid values:
unknown
,ignored
,exe
,elf
,bat
,javascript
,html
,hta
,msoffice
,gzip
,rar
,tar
,lzh
,upx
,zip
,cab
,bzip2
,bzip
,activemime
,mime
,hlp
,arj
,base64
,binhex
,uue
,fsg
,aspack
,msc
,petite
,jpeg
,gif
,tiff
,png
,bmp
,msi
,mpeg
,mov
,mp3
,wma
,wav
,pdf
,avi
,rm
,torrent
,hibun
,7z
,xz
,msofficex
,mach-o
,dmg
,.net
,xar
,chm
,iso
,crx
,flac
,sis
,prc
,class
,jad
,cod
. - filepattern string
- Filepattern.
- filter
Type string - Filter by file name pattern or by file type. Valid values:
pattern
,type
. - object
Dlp stringFilepattern Entries Id - an identifier for the resource with format {{pattern}}.
- pattern string
- Add a file name pattern.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - file_
type str - Select a file type. Valid values:
unknown
,ignored
,exe
,elf
,bat
,javascript
,html
,hta
,msoffice
,gzip
,rar
,tar
,lzh
,upx
,zip
,cab
,bzip2
,bzip
,activemime
,mime
,hlp
,arj
,base64
,binhex
,uue
,fsg
,aspack
,msc
,petite
,jpeg
,gif
,tiff
,png
,bmp
,msi
,mpeg
,mov
,mp3
,wma
,wav
,pdf
,avi
,rm
,torrent
,hibun
,7z
,xz
,msofficex
,mach-o
,dmg
,.net
,xar
,chm
,iso
,crx
,flac
,sis
,prc
,class
,jad
,cod
. - filepattern str
- Filepattern.
- filter_
type str - Filter by file name pattern or by file type. Valid values:
pattern
,type
. - object_
dlp_ strfilepattern_ entries_ id - an identifier for the resource with format {{pattern}}.
- pattern str
- Add a file name pattern.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - file
Type String - Select a file type. Valid values:
unknown
,ignored
,exe
,elf
,bat
,javascript
,html
,hta
,msoffice
,gzip
,rar
,tar
,lzh
,upx
,zip
,cab
,bzip2
,bzip
,activemime
,mime
,hlp
,arj
,base64
,binhex
,uue
,fsg
,aspack
,msc
,petite
,jpeg
,gif
,tiff
,png
,bmp
,msi
,mpeg
,mov
,mp3
,wma
,wav
,pdf
,avi
,rm
,torrent
,hibun
,7z
,xz
,msofficex
,mach-o
,dmg
,.net
,xar
,chm
,iso
,crx
,flac
,sis
,prc
,class
,jad
,cod
. - filepattern String
- Filepattern.
- filter
Type String - Filter by file name pattern or by file type. Valid values:
pattern
,type
. - object
Dlp StringFilepattern Entries Id - an identifier for the resource with format {{pattern}}.
- pattern String
- Add a file name pattern.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Import
ObjectDlp FilepatternEntries can be imported using any of these accepted formats:
Set import_options = [“filepattern=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectDlpFilepatternEntries:ObjectDlpFilepatternEntries labelname {{pattern}}
$ 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.