fortimanager.ObjectDlpDatatype
Explore with Pulumi AI
Configure predefined data type used by DLP blocking.
Create ObjectDlpDatatype Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectDlpDatatype(name: string, args?: ObjectDlpDatatypeArgs, opts?: CustomResourceOptions);
@overload
def ObjectDlpDatatype(resource_name: str,
args: Optional[ObjectDlpDatatypeArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectDlpDatatype(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
fgd_id: Optional[float] = None,
look_ahead: Optional[float] = None,
look_back: Optional[float] = None,
match_ahead: Optional[float] = None,
match_around: Optional[str] = None,
match_back: Optional[float] = None,
name: Optional[str] = None,
object_dlp_datatype_id: Optional[str] = None,
pattern: Optional[str] = None,
scopetype: Optional[str] = None,
transform: Optional[str] = None,
verify: Optional[str] = None,
verify2: Optional[str] = None,
verify_transformed_pattern: Optional[str] = None)
func NewObjectDlpDatatype(ctx *Context, name string, args *ObjectDlpDatatypeArgs, opts ...ResourceOption) (*ObjectDlpDatatype, error)
public ObjectDlpDatatype(string name, ObjectDlpDatatypeArgs? args = null, CustomResourceOptions? opts = null)
public ObjectDlpDatatype(String name, ObjectDlpDatatypeArgs args)
public ObjectDlpDatatype(String name, ObjectDlpDatatypeArgs args, CustomResourceOptions options)
type: fortimanager:ObjectDlpDatatype
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 ObjectDlpDatatypeArgs
- 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 ObjectDlpDatatypeArgs
- 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 ObjectDlpDatatypeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectDlpDatatypeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectDlpDatatypeArgs
- 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 objectDlpDatatypeResource = new Fortimanager.ObjectDlpDatatype("objectDlpDatatypeResource", new()
{
Adom = "string",
Comment = "string",
FgdId = 0,
LookAhead = 0,
LookBack = 0,
MatchAhead = 0,
MatchAround = "string",
MatchBack = 0,
Name = "string",
ObjectDlpDatatypeId = "string",
Pattern = "string",
Scopetype = "string",
Transform = "string",
Verify = "string",
Verify2 = "string",
VerifyTransformedPattern = "string",
});
example, err := fortimanager.NewObjectDlpDatatype(ctx, "objectDlpDatatypeResource", &fortimanager.ObjectDlpDatatypeArgs{
Adom: pulumi.String("string"),
Comment: pulumi.String("string"),
FgdId: pulumi.Float64(0),
LookAhead: pulumi.Float64(0),
LookBack: pulumi.Float64(0),
MatchAhead: pulumi.Float64(0),
MatchAround: pulumi.String("string"),
MatchBack: pulumi.Float64(0),
Name: pulumi.String("string"),
ObjectDlpDatatypeId: pulumi.String("string"),
Pattern: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Transform: pulumi.String("string"),
Verify: pulumi.String("string"),
Verify2: pulumi.String("string"),
VerifyTransformedPattern: pulumi.String("string"),
})
var objectDlpDatatypeResource = new ObjectDlpDatatype("objectDlpDatatypeResource", ObjectDlpDatatypeArgs.builder()
.adom("string")
.comment("string")
.fgdId(0)
.lookAhead(0)
.lookBack(0)
.matchAhead(0)
.matchAround("string")
.matchBack(0)
.name("string")
.objectDlpDatatypeId("string")
.pattern("string")
.scopetype("string")
.transform("string")
.verify("string")
.verify2("string")
.verifyTransformedPattern("string")
.build());
object_dlp_datatype_resource = fortimanager.ObjectDlpDatatype("objectDlpDatatypeResource",
adom="string",
comment="string",
fgd_id=0,
look_ahead=0,
look_back=0,
match_ahead=0,
match_around="string",
match_back=0,
name="string",
object_dlp_datatype_id="string",
pattern="string",
scopetype="string",
transform="string",
verify="string",
verify2="string",
verify_transformed_pattern="string")
const objectDlpDatatypeResource = new fortimanager.ObjectDlpDatatype("objectDlpDatatypeResource", {
adom: "string",
comment: "string",
fgdId: 0,
lookAhead: 0,
lookBack: 0,
matchAhead: 0,
matchAround: "string",
matchBack: 0,
name: "string",
objectDlpDatatypeId: "string",
pattern: "string",
scopetype: "string",
transform: "string",
verify: "string",
verify2: "string",
verifyTransformedPattern: "string",
});
type: fortimanager:ObjectDlpDatatype
properties:
adom: string
comment: string
fgdId: 0
lookAhead: 0
lookBack: 0
matchAhead: 0
matchAround: string
matchBack: 0
name: string
objectDlpDatatypeId: string
pattern: string
scopetype: string
transform: string
verify: string
verify2: string
verifyTransformedPattern: string
ObjectDlpDatatype 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 ObjectDlpDatatype resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Optional comments.
- Fgd
Id double - ID of object in FortiGuard database.
- Look
Ahead double - Number of characters to obtain in advance for verification (1 - 255, default = 1).
- Look
Back double - Number of characters required to save for verification (1 - 255, default = 1).
- Match
Ahead double - Number of characters behind for match-around (1 - 4096, default = 1).
- Match
Around string - Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
- Match
Back double - Number of characters in front for match-around (1 - 4096, default = 1).
- Name string
- Name of table containing the data type.
- Object
Dlp stringDatatype Id - an identifier for the resource with format {{name}}.
- Pattern string
- Regular expression pattern string without look around.
- 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
. - Transform string
- Template to transform user input to a pattern using capture group from 'pattern'.
- Verify string
- Regular expression pattern string used to verify the data type.
- Verify2 string
- Extra regular expression pattern string used to verify the data type.
- Verify
Transformed stringPattern - Enable/disable verification for transformed pattern. Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Optional comments.
- Fgd
Id float64 - ID of object in FortiGuard database.
- Look
Ahead float64 - Number of characters to obtain in advance for verification (1 - 255, default = 1).
- Look
Back float64 - Number of characters required to save for verification (1 - 255, default = 1).
- Match
Ahead float64 - Number of characters behind for match-around (1 - 4096, default = 1).
- Match
Around string - Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
- Match
Back float64 - Number of characters in front for match-around (1 - 4096, default = 1).
- Name string
- Name of table containing the data type.
- Object
Dlp stringDatatype Id - an identifier for the resource with format {{name}}.
- Pattern string
- Regular expression pattern string without look around.
- 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
. - Transform string
- Template to transform user input to a pattern using capture group from 'pattern'.
- Verify string
- Regular expression pattern string used to verify the data type.
- Verify2 string
- Extra regular expression pattern string used to verify the data type.
- Verify
Transformed stringPattern - Enable/disable verification for transformed pattern. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Optional comments.
- fgd
Id Double - ID of object in FortiGuard database.
- look
Ahead Double - Number of characters to obtain in advance for verification (1 - 255, default = 1).
- look
Back Double - Number of characters required to save for verification (1 - 255, default = 1).
- match
Ahead Double - Number of characters behind for match-around (1 - 4096, default = 1).
- match
Around String - Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
- match
Back Double - Number of characters in front for match-around (1 - 4096, default = 1).
- name String
- Name of table containing the data type.
- object
Dlp StringDatatype Id - an identifier for the resource with format {{name}}.
- pattern String
- Regular expression pattern string without look around.
- 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
. - transform String
- Template to transform user input to a pattern using capture group from 'pattern'.
- verify String
- Regular expression pattern string used to verify the data type.
- verify2 String
- Extra regular expression pattern string used to verify the data type.
- verify
Transformed StringPattern - Enable/disable verification for transformed pattern. Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Optional comments.
- fgd
Id number - ID of object in FortiGuard database.
- look
Ahead number - Number of characters to obtain in advance for verification (1 - 255, default = 1).
- look
Back number - Number of characters required to save for verification (1 - 255, default = 1).
- match
Ahead number - Number of characters behind for match-around (1 - 4096, default = 1).
- match
Around string - Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
- match
Back number - Number of characters in front for match-around (1 - 4096, default = 1).
- name string
- Name of table containing the data type.
- object
Dlp stringDatatype Id - an identifier for the resource with format {{name}}.
- pattern string
- Regular expression pattern string without look around.
- 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
. - transform string
- Template to transform user input to a pattern using capture group from 'pattern'.
- verify string
- Regular expression pattern string used to verify the data type.
- verify2 string
- Extra regular expression pattern string used to verify the data type.
- verify
Transformed stringPattern - Enable/disable verification for transformed pattern. Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Optional comments.
- fgd_
id float - ID of object in FortiGuard database.
- look_
ahead float - Number of characters to obtain in advance for verification (1 - 255, default = 1).
- look_
back float - Number of characters required to save for verification (1 - 255, default = 1).
- match_
ahead float - Number of characters behind for match-around (1 - 4096, default = 1).
- match_
around str - Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
- match_
back float - Number of characters in front for match-around (1 - 4096, default = 1).
- name str
- Name of table containing the data type.
- object_
dlp_ strdatatype_ id - an identifier for the resource with format {{name}}.
- pattern str
- Regular expression pattern string without look around.
- 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
. - transform str
- Template to transform user input to a pattern using capture group from 'pattern'.
- verify str
- Regular expression pattern string used to verify the data type.
- verify2 str
- Extra regular expression pattern string used to verify the data type.
- verify_
transformed_ strpattern - Enable/disable verification for transformed pattern. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Optional comments.
- fgd
Id Number - ID of object in FortiGuard database.
- look
Ahead Number - Number of characters to obtain in advance for verification (1 - 255, default = 1).
- look
Back Number - Number of characters required to save for verification (1 - 255, default = 1).
- match
Ahead Number - Number of characters behind for match-around (1 - 4096, default = 1).
- match
Around String - Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
- match
Back Number - Number of characters in front for match-around (1 - 4096, default = 1).
- name String
- Name of table containing the data type.
- object
Dlp StringDatatype Id - an identifier for the resource with format {{name}}.
- pattern String
- Regular expression pattern string without look around.
- 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
. - transform String
- Template to transform user input to a pattern using capture group from 'pattern'.
- verify String
- Regular expression pattern string used to verify the data type.
- verify2 String
- Extra regular expression pattern string used to verify the data type.
- verify
Transformed StringPattern - Enable/disable verification for transformed pattern. Valid values:
disable
,enable
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectDlpDatatype 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 ObjectDlpDatatype Resource
Get an existing ObjectDlpDatatype 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?: ObjectDlpDatatypeState, opts?: CustomResourceOptions): ObjectDlpDatatype
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
fgd_id: Optional[float] = None,
look_ahead: Optional[float] = None,
look_back: Optional[float] = None,
match_ahead: Optional[float] = None,
match_around: Optional[str] = None,
match_back: Optional[float] = None,
name: Optional[str] = None,
object_dlp_datatype_id: Optional[str] = None,
pattern: Optional[str] = None,
scopetype: Optional[str] = None,
transform: Optional[str] = None,
verify: Optional[str] = None,
verify2: Optional[str] = None,
verify_transformed_pattern: Optional[str] = None) -> ObjectDlpDatatype
func GetObjectDlpDatatype(ctx *Context, name string, id IDInput, state *ObjectDlpDatatypeState, opts ...ResourceOption) (*ObjectDlpDatatype, error)
public static ObjectDlpDatatype Get(string name, Input<string> id, ObjectDlpDatatypeState? state, CustomResourceOptions? opts = null)
public static ObjectDlpDatatype get(String name, Output<String> id, ObjectDlpDatatypeState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectDlpDatatype 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. - Comment string
- Optional comments.
- Fgd
Id double - ID of object in FortiGuard database.
- Look
Ahead double - Number of characters to obtain in advance for verification (1 - 255, default = 1).
- Look
Back double - Number of characters required to save for verification (1 - 255, default = 1).
- Match
Ahead double - Number of characters behind for match-around (1 - 4096, default = 1).
- Match
Around string - Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
- Match
Back double - Number of characters in front for match-around (1 - 4096, default = 1).
- Name string
- Name of table containing the data type.
- Object
Dlp stringDatatype Id - an identifier for the resource with format {{name}}.
- Pattern string
- Regular expression pattern string without look around.
- 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
. - Transform string
- Template to transform user input to a pattern using capture group from 'pattern'.
- Verify string
- Regular expression pattern string used to verify the data type.
- Verify2 string
- Extra regular expression pattern string used to verify the data type.
- Verify
Transformed stringPattern - Enable/disable verification for transformed pattern. Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Optional comments.
- Fgd
Id float64 - ID of object in FortiGuard database.
- Look
Ahead float64 - Number of characters to obtain in advance for verification (1 - 255, default = 1).
- Look
Back float64 - Number of characters required to save for verification (1 - 255, default = 1).
- Match
Ahead float64 - Number of characters behind for match-around (1 - 4096, default = 1).
- Match
Around string - Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
- Match
Back float64 - Number of characters in front for match-around (1 - 4096, default = 1).
- Name string
- Name of table containing the data type.
- Object
Dlp stringDatatype Id - an identifier for the resource with format {{name}}.
- Pattern string
- Regular expression pattern string without look around.
- 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
. - Transform string
- Template to transform user input to a pattern using capture group from 'pattern'.
- Verify string
- Regular expression pattern string used to verify the data type.
- Verify2 string
- Extra regular expression pattern string used to verify the data type.
- Verify
Transformed stringPattern - Enable/disable verification for transformed pattern. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Optional comments.
- fgd
Id Double - ID of object in FortiGuard database.
- look
Ahead Double - Number of characters to obtain in advance for verification (1 - 255, default = 1).
- look
Back Double - Number of characters required to save for verification (1 - 255, default = 1).
- match
Ahead Double - Number of characters behind for match-around (1 - 4096, default = 1).
- match
Around String - Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
- match
Back Double - Number of characters in front for match-around (1 - 4096, default = 1).
- name String
- Name of table containing the data type.
- object
Dlp StringDatatype Id - an identifier for the resource with format {{name}}.
- pattern String
- Regular expression pattern string without look around.
- 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
. - transform String
- Template to transform user input to a pattern using capture group from 'pattern'.
- verify String
- Regular expression pattern string used to verify the data type.
- verify2 String
- Extra regular expression pattern string used to verify the data type.
- verify
Transformed StringPattern - Enable/disable verification for transformed pattern. Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Optional comments.
- fgd
Id number - ID of object in FortiGuard database.
- look
Ahead number - Number of characters to obtain in advance for verification (1 - 255, default = 1).
- look
Back number - Number of characters required to save for verification (1 - 255, default = 1).
- match
Ahead number - Number of characters behind for match-around (1 - 4096, default = 1).
- match
Around string - Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
- match
Back number - Number of characters in front for match-around (1 - 4096, default = 1).
- name string
- Name of table containing the data type.
- object
Dlp stringDatatype Id - an identifier for the resource with format {{name}}.
- pattern string
- Regular expression pattern string without look around.
- 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
. - transform string
- Template to transform user input to a pattern using capture group from 'pattern'.
- verify string
- Regular expression pattern string used to verify the data type.
- verify2 string
- Extra regular expression pattern string used to verify the data type.
- verify
Transformed stringPattern - Enable/disable verification for transformed pattern. Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Optional comments.
- fgd_
id float - ID of object in FortiGuard database.
- look_
ahead float - Number of characters to obtain in advance for verification (1 - 255, default = 1).
- look_
back float - Number of characters required to save for verification (1 - 255, default = 1).
- match_
ahead float - Number of characters behind for match-around (1 - 4096, default = 1).
- match_
around str - Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
- match_
back float - Number of characters in front for match-around (1 - 4096, default = 1).
- name str
- Name of table containing the data type.
- object_
dlp_ strdatatype_ id - an identifier for the resource with format {{name}}.
- pattern str
- Regular expression pattern string without look around.
- 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
. - transform str
- Template to transform user input to a pattern using capture group from 'pattern'.
- verify str
- Regular expression pattern string used to verify the data type.
- verify2 str
- Extra regular expression pattern string used to verify the data type.
- verify_
transformed_ strpattern - Enable/disable verification for transformed pattern. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Optional comments.
- fgd
Id Number - ID of object in FortiGuard database.
- look
Ahead Number - Number of characters to obtain in advance for verification (1 - 255, default = 1).
- look
Back Number - Number of characters required to save for verification (1 - 255, default = 1).
- match
Ahead Number - Number of characters behind for match-around (1 - 4096, default = 1).
- match
Around String - Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
- match
Back Number - Number of characters in front for match-around (1 - 4096, default = 1).
- name String
- Name of table containing the data type.
- object
Dlp StringDatatype Id - an identifier for the resource with format {{name}}.
- pattern String
- Regular expression pattern string without look around.
- 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
. - transform String
- Template to transform user input to a pattern using capture group from 'pattern'.
- verify String
- Regular expression pattern string used to verify the data type.
- verify2 String
- Extra regular expression pattern string used to verify the data type.
- verify
Transformed StringPattern - Enable/disable verification for transformed pattern. Valid values:
disable
,enable
.
Import
ObjectDlp DataType can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectDlpDatatype:ObjectDlpDatatype labelname {{name}}
$ 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.