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

fortimanager.ObjectDlpDatatype

Explore with Pulumi AI

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

    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 is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Optional comments.
    FgdId double
    ID of object in FortiGuard database.
    LookAhead double
    Number of characters to obtain in advance for verification (1 - 255, default = 1).
    LookBack double
    Number of characters required to save for verification (1 - 255, default = 1).
    MatchAhead double
    Number of characters behind for match-around (1 - 4096, default = 1).
    MatchAround string
    Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
    MatchBack double
    Number of characters in front for match-around (1 - 4096, default = 1).
    Name string
    Name of table containing the data type.
    ObjectDlpDatatypeId string
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    VerifyTransformedPattern string
    Enable/disable verification for transformed pattern. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Optional comments.
    FgdId float64
    ID of object in FortiGuard database.
    LookAhead float64
    Number of characters to obtain in advance for verification (1 - 255, default = 1).
    LookBack float64
    Number of characters required to save for verification (1 - 255, default = 1).
    MatchAhead float64
    Number of characters behind for match-around (1 - 4096, default = 1).
    MatchAround string
    Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
    MatchBack float64
    Number of characters in front for match-around (1 - 4096, default = 1).
    Name string
    Name of table containing the data type.
    ObjectDlpDatatypeId string
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    VerifyTransformedPattern string
    Enable/disable verification for transformed pattern. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Optional comments.
    fgdId Double
    ID of object in FortiGuard database.
    lookAhead Double
    Number of characters to obtain in advance for verification (1 - 255, default = 1).
    lookBack Double
    Number of characters required to save for verification (1 - 255, default = 1).
    matchAhead Double
    Number of characters behind for match-around (1 - 4096, default = 1).
    matchAround String
    Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
    matchBack Double
    Number of characters in front for match-around (1 - 4096, default = 1).
    name String
    Name of table containing the data type.
    objectDlpDatatypeId String
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    verifyTransformedPattern String
    Enable/disable verification for transformed pattern. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Optional comments.
    fgdId number
    ID of object in FortiGuard database.
    lookAhead number
    Number of characters to obtain in advance for verification (1 - 255, default = 1).
    lookBack number
    Number of characters required to save for verification (1 - 255, default = 1).
    matchAhead number
    Number of characters behind for match-around (1 - 4096, default = 1).
    matchAround string
    Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
    matchBack number
    Number of characters in front for match-around (1 - 4096, default = 1).
    name string
    Name of table containing the data type.
    objectDlpDatatypeId string
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    verifyTransformedPattern string
    Enable/disable verification for transformed pattern. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    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_datatype_id str
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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_pattern str
    Enable/disable verification for transformed pattern. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Optional comments.
    fgdId Number
    ID of object in FortiGuard database.
    lookAhead Number
    Number of characters to obtain in advance for verification (1 - 255, default = 1).
    lookBack Number
    Number of characters required to save for verification (1 - 255, default = 1).
    matchAhead Number
    Number of characters behind for match-around (1 - 4096, default = 1).
    matchAround String
    Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
    matchBack Number
    Number of characters in front for match-around (1 - 4096, default = 1).
    name String
    Name of table containing the data type.
    objectDlpDatatypeId String
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    verifyTransformedPattern String
    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.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Optional comments.
    FgdId double
    ID of object in FortiGuard database.
    LookAhead double
    Number of characters to obtain in advance for verification (1 - 255, default = 1).
    LookBack double
    Number of characters required to save for verification (1 - 255, default = 1).
    MatchAhead double
    Number of characters behind for match-around (1 - 4096, default = 1).
    MatchAround string
    Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
    MatchBack double
    Number of characters in front for match-around (1 - 4096, default = 1).
    Name string
    Name of table containing the data type.
    ObjectDlpDatatypeId string
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    VerifyTransformedPattern string
    Enable/disable verification for transformed pattern. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Optional comments.
    FgdId float64
    ID of object in FortiGuard database.
    LookAhead float64
    Number of characters to obtain in advance for verification (1 - 255, default = 1).
    LookBack float64
    Number of characters required to save for verification (1 - 255, default = 1).
    MatchAhead float64
    Number of characters behind for match-around (1 - 4096, default = 1).
    MatchAround string
    Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
    MatchBack float64
    Number of characters in front for match-around (1 - 4096, default = 1).
    Name string
    Name of table containing the data type.
    ObjectDlpDatatypeId string
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    VerifyTransformedPattern string
    Enable/disable verification for transformed pattern. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Optional comments.
    fgdId Double
    ID of object in FortiGuard database.
    lookAhead Double
    Number of characters to obtain in advance for verification (1 - 255, default = 1).
    lookBack Double
    Number of characters required to save for verification (1 - 255, default = 1).
    matchAhead Double
    Number of characters behind for match-around (1 - 4096, default = 1).
    matchAround String
    Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
    matchBack Double
    Number of characters in front for match-around (1 - 4096, default = 1).
    name String
    Name of table containing the data type.
    objectDlpDatatypeId String
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    verifyTransformedPattern String
    Enable/disable verification for transformed pattern. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Optional comments.
    fgdId number
    ID of object in FortiGuard database.
    lookAhead number
    Number of characters to obtain in advance for verification (1 - 255, default = 1).
    lookBack number
    Number of characters required to save for verification (1 - 255, default = 1).
    matchAhead number
    Number of characters behind for match-around (1 - 4096, default = 1).
    matchAround string
    Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
    matchBack number
    Number of characters in front for match-around (1 - 4096, default = 1).
    name string
    Name of table containing the data type.
    objectDlpDatatypeId string
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    verifyTransformedPattern string
    Enable/disable verification for transformed pattern. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    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_datatype_id str
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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_pattern str
    Enable/disable verification for transformed pattern. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Optional comments.
    fgdId Number
    ID of object in FortiGuard database.
    lookAhead Number
    Number of characters to obtain in advance for verification (1 - 255, default = 1).
    lookBack Number
    Number of characters required to save for verification (1 - 255, default = 1).
    matchAhead Number
    Number of characters behind for match-around (1 - 4096, default = 1).
    matchAround String
    Dictionary to check whether it has a match around (Only support match-any and basic types, no repeat supported).
    matchBack Number
    Number of characters in front for match-around (1 - 4096, default = 1).
    name String
    Name of table containing the data type.
    objectDlpDatatypeId String
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    verifyTransformedPattern String
    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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev