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

fortimanager.ObjectDlpDictionary

Explore with Pulumi AI

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

    Configure dictionaries used by DLP blocking.

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

    • entries: fortimanager.ObjectDlpDictionaryEntries

    Create ObjectDlpDictionary Resource

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

    Constructor syntax

    new ObjectDlpDictionary(name: string, args?: ObjectDlpDictionaryArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectDlpDictionary(resource_name: str,
                            args: Optional[ObjectDlpDictionaryArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectDlpDictionary(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            adom: Optional[str] = None,
                            comment: Optional[str] = None,
                            dynamic_sort_subtable: Optional[str] = None,
                            entries: Optional[Sequence[ObjectDlpDictionaryEntryArgs]] = None,
                            fgd_id: Optional[float] = None,
                            match_around: Optional[str] = None,
                            match_type: Optional[str] = None,
                            name: Optional[str] = None,
                            object_dlp_dictionary_id: Optional[str] = None,
                            scopetype: Optional[str] = None,
                            uuid: Optional[str] = None)
    func NewObjectDlpDictionary(ctx *Context, name string, args *ObjectDlpDictionaryArgs, opts ...ResourceOption) (*ObjectDlpDictionary, error)
    public ObjectDlpDictionary(string name, ObjectDlpDictionaryArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectDlpDictionary(String name, ObjectDlpDictionaryArgs args)
    public ObjectDlpDictionary(String name, ObjectDlpDictionaryArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectDlpDictionary
    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 ObjectDlpDictionaryArgs
    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 ObjectDlpDictionaryArgs
    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 ObjectDlpDictionaryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectDlpDictionaryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectDlpDictionaryArgs
    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 objectDlpDictionaryResource = new Fortimanager.ObjectDlpDictionary("objectDlpDictionaryResource", new()
    {
        Adom = "string",
        Comment = "string",
        DynamicSortSubtable = "string",
        Entries = new[]
        {
            new Fortimanager.Inputs.ObjectDlpDictionaryEntryArgs
            {
                Comment = "string",
                Id = 0,
                IgnoreCase = "string",
                Pattern = "string",
                Repeat = "string",
                Status = "string",
                Type = "string",
            },
        },
        FgdId = 0,
        MatchAround = "string",
        MatchType = "string",
        Name = "string",
        ObjectDlpDictionaryId = "string",
        Scopetype = "string",
        Uuid = "string",
    });
    
    example, err := fortimanager.NewObjectDlpDictionary(ctx, "objectDlpDictionaryResource", &fortimanager.ObjectDlpDictionaryArgs{
    Adom: pulumi.String("string"),
    Comment: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Entries: .ObjectDlpDictionaryEntryArray{
    &.ObjectDlpDictionaryEntryArgs{
    Comment: pulumi.String("string"),
    Id: pulumi.Float64(0),
    IgnoreCase: pulumi.String("string"),
    Pattern: pulumi.String("string"),
    Repeat: pulumi.String("string"),
    Status: pulumi.String("string"),
    Type: pulumi.String("string"),
    },
    },
    FgdId: pulumi.Float64(0),
    MatchAround: pulumi.String("string"),
    MatchType: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectDlpDictionaryId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Uuid: pulumi.String("string"),
    })
    
    var objectDlpDictionaryResource = new ObjectDlpDictionary("objectDlpDictionaryResource", ObjectDlpDictionaryArgs.builder()
        .adom("string")
        .comment("string")
        .dynamicSortSubtable("string")
        .entries(ObjectDlpDictionaryEntryArgs.builder()
            .comment("string")
            .id(0)
            .ignoreCase("string")
            .pattern("string")
            .repeat("string")
            .status("string")
            .type("string")
            .build())
        .fgdId(0)
        .matchAround("string")
        .matchType("string")
        .name("string")
        .objectDlpDictionaryId("string")
        .scopetype("string")
        .uuid("string")
        .build());
    
    object_dlp_dictionary_resource = fortimanager.ObjectDlpDictionary("objectDlpDictionaryResource",
        adom="string",
        comment="string",
        dynamic_sort_subtable="string",
        entries=[{
            "comment": "string",
            "id": 0,
            "ignore_case": "string",
            "pattern": "string",
            "repeat": "string",
            "status": "string",
            "type": "string",
        }],
        fgd_id=0,
        match_around="string",
        match_type="string",
        name="string",
        object_dlp_dictionary_id="string",
        scopetype="string",
        uuid="string")
    
    const objectDlpDictionaryResource = new fortimanager.ObjectDlpDictionary("objectDlpDictionaryResource", {
        adom: "string",
        comment: "string",
        dynamicSortSubtable: "string",
        entries: [{
            comment: "string",
            id: 0,
            ignoreCase: "string",
            pattern: "string",
            repeat: "string",
            status: "string",
            type: "string",
        }],
        fgdId: 0,
        matchAround: "string",
        matchType: "string",
        name: "string",
        objectDlpDictionaryId: "string",
        scopetype: "string",
        uuid: "string",
    });
    
    type: fortimanager:ObjectDlpDictionary
    properties:
        adom: string
        comment: string
        dynamicSortSubtable: string
        entries:
            - comment: string
              id: 0
              ignoreCase: string
              pattern: string
              repeat: string
              status: string
              type: string
        fgdId: 0
        matchAround: string
        matchType: string
        name: string
        objectDlpDictionaryId: string
        scopetype: string
        uuid: string
    

    ObjectDlpDictionary 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 ObjectDlpDictionary 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.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Entries List<ObjectDlpDictionaryEntry>
    Entries. The structure of entries block is documented below.
    FgdId double
    ID of object in FortiGuard database.
    MatchAround string
    Enable/disable match-around support. Valid values: disable, enable.
    MatchType string
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    Name string
    Name of table containing the dictionary.
    ObjectDlpDictionaryId string
    an identifier for the resource with format {{name}}.
    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.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Entries []ObjectDlpDictionaryEntryArgs
    Entries. The structure of entries block is documented below.
    FgdId float64
    ID of object in FortiGuard database.
    MatchAround string
    Enable/disable match-around support. Valid values: disable, enable.
    MatchType string
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    Name string
    Name of table containing the dictionary.
    ObjectDlpDictionaryId string
    an identifier for the resource with format {{name}}.
    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.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entries List<ObjectDlpDictionaryEntry>
    Entries. The structure of entries block is documented below.
    fgdId Double
    ID of object in FortiGuard database.
    matchAround String
    Enable/disable match-around support. Valid values: disable, enable.
    matchType String
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name String
    Name of table containing the dictionary.
    objectDlpDictionaryId String
    an identifier for the resource with format {{name}}.
    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.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entries ObjectDlpDictionaryEntry[]
    Entries. The structure of entries block is documented below.
    fgdId number
    ID of object in FortiGuard database.
    matchAround string
    Enable/disable match-around support. Valid values: disable, enable.
    matchType string
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name string
    Name of table containing the dictionary.
    objectDlpDictionaryId string
    an identifier for the resource with format {{name}}.
    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.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entries Sequence[ObjectDlpDictionaryEntryArgs]
    Entries. The structure of entries block is documented below.
    fgd_id float
    ID of object in FortiGuard database.
    match_around str
    Enable/disable match-around support. Valid values: disable, enable.
    match_type str
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name str
    Name of table containing the dictionary.
    object_dlp_dictionary_id str
    an identifier for the resource with format {{name}}.
    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.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entries List<Property Map>
    Entries. The structure of entries block is documented below.
    fgdId Number
    ID of object in FortiGuard database.
    matchAround String
    Enable/disable match-around support. Valid values: disable, enable.
    matchType String
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name String
    Name of table containing the dictionary.
    objectDlpDictionaryId String
    an identifier for the resource with format {{name}}.
    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.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).

    Outputs

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

    Get an existing ObjectDlpDictionary 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?: ObjectDlpDictionaryState, opts?: CustomResourceOptions): ObjectDlpDictionary
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            comment: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            entries: Optional[Sequence[ObjectDlpDictionaryEntryArgs]] = None,
            fgd_id: Optional[float] = None,
            match_around: Optional[str] = None,
            match_type: Optional[str] = None,
            name: Optional[str] = None,
            object_dlp_dictionary_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            uuid: Optional[str] = None) -> ObjectDlpDictionary
    func GetObjectDlpDictionary(ctx *Context, name string, id IDInput, state *ObjectDlpDictionaryState, opts ...ResourceOption) (*ObjectDlpDictionary, error)
    public static ObjectDlpDictionary Get(string name, Input<string> id, ObjectDlpDictionaryState? state, CustomResourceOptions? opts = null)
    public static ObjectDlpDictionary get(String name, Output<String> id, ObjectDlpDictionaryState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectDlpDictionary    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.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Entries List<ObjectDlpDictionaryEntry>
    Entries. The structure of entries block is documented below.
    FgdId double
    ID of object in FortiGuard database.
    MatchAround string
    Enable/disable match-around support. Valid values: disable, enable.
    MatchType string
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    Name string
    Name of table containing the dictionary.
    ObjectDlpDictionaryId string
    an identifier for the resource with format {{name}}.
    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.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Entries []ObjectDlpDictionaryEntryArgs
    Entries. The structure of entries block is documented below.
    FgdId float64
    ID of object in FortiGuard database.
    MatchAround string
    Enable/disable match-around support. Valid values: disable, enable.
    MatchType string
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    Name string
    Name of table containing the dictionary.
    ObjectDlpDictionaryId string
    an identifier for the resource with format {{name}}.
    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.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entries List<ObjectDlpDictionaryEntry>
    Entries. The structure of entries block is documented below.
    fgdId Double
    ID of object in FortiGuard database.
    matchAround String
    Enable/disable match-around support. Valid values: disable, enable.
    matchType String
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name String
    Name of table containing the dictionary.
    objectDlpDictionaryId String
    an identifier for the resource with format {{name}}.
    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.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entries ObjectDlpDictionaryEntry[]
    Entries. The structure of entries block is documented below.
    fgdId number
    ID of object in FortiGuard database.
    matchAround string
    Enable/disable match-around support. Valid values: disable, enable.
    matchType string
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name string
    Name of table containing the dictionary.
    objectDlpDictionaryId string
    an identifier for the resource with format {{name}}.
    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.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entries Sequence[ObjectDlpDictionaryEntryArgs]
    Entries. The structure of entries block is documented below.
    fgd_id float
    ID of object in FortiGuard database.
    match_around str
    Enable/disable match-around support. Valid values: disable, enable.
    match_type str
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name str
    Name of table containing the dictionary.
    object_dlp_dictionary_id str
    an identifier for the resource with format {{name}}.
    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.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    entries List<Property Map>
    Entries. The structure of entries block is documented below.
    fgdId Number
    ID of object in FortiGuard database.
    matchAround String
    Enable/disable match-around support. Valid values: disable, enable.
    matchType String
    Logical relation between entries (default = match-any). Valid values: match-all, match-any.
    name String
    Name of table containing the dictionary.
    objectDlpDictionaryId String
    an identifier for the resource with format {{name}}.
    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.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).

    Supporting Types

    ObjectDlpDictionaryEntry, ObjectDlpDictionaryEntryArgs

    Comment string
    Optional comments.
    Id double
    ID.
    IgnoreCase string
    Enable/disable ignore case. Valid values: disable, enable.
    Pattern string
    Pattern to match.
    Repeat string
    Enable/disable repeat match. Valid values: disable, enable.
    Status string
    Enable/disable this pattern. Valid values: disable, enable.
    Type string
    Pattern type to match.
    Comment string
    Optional comments.
    Id float64
    ID.
    IgnoreCase string
    Enable/disable ignore case. Valid values: disable, enable.
    Pattern string
    Pattern to match.
    Repeat string
    Enable/disable repeat match. Valid values: disable, enable.
    Status string
    Enable/disable this pattern. Valid values: disable, enable.
    Type string
    Pattern type to match.
    comment String
    Optional comments.
    id Double
    ID.
    ignoreCase String
    Enable/disable ignore case. Valid values: disable, enable.
    pattern String
    Pattern to match.
    repeat String
    Enable/disable repeat match. Valid values: disable, enable.
    status String
    Enable/disable this pattern. Valid values: disable, enable.
    type String
    Pattern type to match.
    comment string
    Optional comments.
    id number
    ID.
    ignoreCase string
    Enable/disable ignore case. Valid values: disable, enable.
    pattern string
    Pattern to match.
    repeat string
    Enable/disable repeat match. Valid values: disable, enable.
    status string
    Enable/disable this pattern. Valid values: disable, enable.
    type string
    Pattern type to match.
    comment str
    Optional comments.
    id float
    ID.
    ignore_case str
    Enable/disable ignore case. Valid values: disable, enable.
    pattern str
    Pattern to match.
    repeat str
    Enable/disable repeat match. Valid values: disable, enable.
    status str
    Enable/disable this pattern. Valid values: disable, enable.
    type str
    Pattern type to match.
    comment String
    Optional comments.
    id Number
    ID.
    ignoreCase String
    Enable/disable ignore case. Valid values: disable, enable.
    pattern String
    Pattern to match.
    repeat String
    Enable/disable repeat match. Valid values: disable, enable.
    status String
    Enable/disable this pattern. Valid values: disable, enable.
    type String
    Pattern type to match.

    Import

    ObjectDlp Dictionary can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectDlpDictionary:ObjectDlpDictionary 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