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

fortimanager.ObjectEmailfilterMheaderEntries

Explore with Pulumi AI

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

    Spam filter mime header content.

    This resource is a sub resource for variable entries of resource fortimanager.ObjectEmailfilterMheader. 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 trnameObjectEmailfilterMheader = new fortimanager.ObjectEmailfilterMheader("trnameObjectEmailfilterMheader", {
        comment: "This is a Terraform example",
        fosid: 1,
    });
    const trnameObjectEmailfilterMheaderEntries = new fortimanager.ObjectEmailfilterMheaderEntries("trnameObjectEmailfilterMheaderEntries", {
        mheader: trnameObjectEmailfilterMheader.fosid,
        action: "spam",
        fieldbody: "body",
        fieldname: "name",
        fosid: 1,
    }, {
        dependsOn: [trnameObjectEmailfilterMheader],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_emailfilter_mheader = fortimanager.ObjectEmailfilterMheader("trnameObjectEmailfilterMheader",
        comment="This is a Terraform example",
        fosid=1)
    trname_object_emailfilter_mheader_entries = fortimanager.ObjectEmailfilterMheaderEntries("trnameObjectEmailfilterMheaderEntries",
        mheader=trname_object_emailfilter_mheader.fosid,
        action="spam",
        fieldbody="body",
        fieldname="name",
        fosid=1,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_emailfilter_mheader]))
    
    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 {
    		trnameObjectEmailfilterMheader, err := fortimanager.NewObjectEmailfilterMheader(ctx, "trnameObjectEmailfilterMheader", &fortimanager.ObjectEmailfilterMheaderArgs{
    			Comment: pulumi.String("This is a Terraform example"),
    			Fosid:   pulumi.Float64(1),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectEmailfilterMheaderEntries(ctx, "trnameObjectEmailfilterMheaderEntries", &fortimanager.ObjectEmailfilterMheaderEntriesArgs{
    			Mheader:   trnameObjectEmailfilterMheader.Fosid,
    			Action:    pulumi.String("spam"),
    			Fieldbody: pulumi.String("body"),
    			Fieldname: pulumi.String("name"),
    			Fosid:     pulumi.Float64(1),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectEmailfilterMheader,
    		}))
    		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 trnameObjectEmailfilterMheader = new Fortimanager.ObjectEmailfilterMheader("trnameObjectEmailfilterMheader", new()
        {
            Comment = "This is a Terraform example",
            Fosid = 1,
        });
    
        var trnameObjectEmailfilterMheaderEntries = new Fortimanager.ObjectEmailfilterMheaderEntries("trnameObjectEmailfilterMheaderEntries", new()
        {
            Mheader = trnameObjectEmailfilterMheader.Fosid,
            Action = "spam",
            Fieldbody = "body",
            Fieldname = "name",
            Fosid = 1,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectEmailfilterMheader,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectEmailfilterMheader;
    import com.pulumi.fortimanager.ObjectEmailfilterMheaderArgs;
    import com.pulumi.fortimanager.ObjectEmailfilterMheaderEntries;
    import com.pulumi.fortimanager.ObjectEmailfilterMheaderEntriesArgs;
    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 trnameObjectEmailfilterMheader = new ObjectEmailfilterMheader("trnameObjectEmailfilterMheader", ObjectEmailfilterMheaderArgs.builder()
                .comment("This is a Terraform example")
                .fosid(1)
                .build());
    
            var trnameObjectEmailfilterMheaderEntries = new ObjectEmailfilterMheaderEntries("trnameObjectEmailfilterMheaderEntries", ObjectEmailfilterMheaderEntriesArgs.builder()
                .mheader(trnameObjectEmailfilterMheader.fosid())
                .action("spam")
                .fieldbody("body")
                .fieldname("name")
                .fosid(1)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectEmailfilterMheader)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectEmailfilterMheaderEntries:
        type: fortimanager:ObjectEmailfilterMheaderEntries
        properties:
          mheader: ${trnameObjectEmailfilterMheader.fosid}
          action: spam
          fieldbody: body
          fieldname: name
          fosid: 1
        options:
          dependsOn:
            - ${trnameObjectEmailfilterMheader}
      trnameObjectEmailfilterMheader:
        type: fortimanager:ObjectEmailfilterMheader
        properties:
          comment: This is a Terraform example
          fosid: 1
    

    Create ObjectEmailfilterMheaderEntries Resource

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

    Constructor syntax

    new ObjectEmailfilterMheaderEntries(name: string, args: ObjectEmailfilterMheaderEntriesArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectEmailfilterMheaderEntries(resource_name: str,
                                        args: ObjectEmailfilterMheaderEntriesArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectEmailfilterMheaderEntries(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        mheader: Optional[str] = None,
                                        action: Optional[str] = None,
                                        adom: Optional[str] = None,
                                        fieldbody: Optional[str] = None,
                                        fieldname: Optional[str] = None,
                                        fosid: Optional[float] = None,
                                        object_emailfilter_mheader_entries_id: Optional[str] = None,
                                        pattern_type: Optional[str] = None,
                                        scopetype: Optional[str] = None,
                                        status: Optional[str] = None)
    func NewObjectEmailfilterMheaderEntries(ctx *Context, name string, args ObjectEmailfilterMheaderEntriesArgs, opts ...ResourceOption) (*ObjectEmailfilterMheaderEntries, error)
    public ObjectEmailfilterMheaderEntries(string name, ObjectEmailfilterMheaderEntriesArgs args, CustomResourceOptions? opts = null)
    public ObjectEmailfilterMheaderEntries(String name, ObjectEmailfilterMheaderEntriesArgs args)
    public ObjectEmailfilterMheaderEntries(String name, ObjectEmailfilterMheaderEntriesArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectEmailfilterMheaderEntries
    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 ObjectEmailfilterMheaderEntriesArgs
    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 ObjectEmailfilterMheaderEntriesArgs
    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 ObjectEmailfilterMheaderEntriesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectEmailfilterMheaderEntriesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectEmailfilterMheaderEntriesArgs
    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 objectEmailfilterMheaderEntriesResource = new Fortimanager.ObjectEmailfilterMheaderEntries("objectEmailfilterMheaderEntriesResource", new()
    {
        Mheader = "string",
        Action = "string",
        Adom = "string",
        Fieldbody = "string",
        Fieldname = "string",
        Fosid = 0,
        ObjectEmailfilterMheaderEntriesId = "string",
        PatternType = "string",
        Scopetype = "string",
        Status = "string",
    });
    
    example, err := fortimanager.NewObjectEmailfilterMheaderEntries(ctx, "objectEmailfilterMheaderEntriesResource", &fortimanager.ObjectEmailfilterMheaderEntriesArgs{
    Mheader: pulumi.String("string"),
    Action: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Fieldbody: pulumi.String("string"),
    Fieldname: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    ObjectEmailfilterMheaderEntriesId: pulumi.String("string"),
    PatternType: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Status: pulumi.String("string"),
    })
    
    var objectEmailfilterMheaderEntriesResource = new ObjectEmailfilterMheaderEntries("objectEmailfilterMheaderEntriesResource", ObjectEmailfilterMheaderEntriesArgs.builder()
        .mheader("string")
        .action("string")
        .adom("string")
        .fieldbody("string")
        .fieldname("string")
        .fosid(0)
        .objectEmailfilterMheaderEntriesId("string")
        .patternType("string")
        .scopetype("string")
        .status("string")
        .build());
    
    object_emailfilter_mheader_entries_resource = fortimanager.ObjectEmailfilterMheaderEntries("objectEmailfilterMheaderEntriesResource",
        mheader="string",
        action="string",
        adom="string",
        fieldbody="string",
        fieldname="string",
        fosid=0,
        object_emailfilter_mheader_entries_id="string",
        pattern_type="string",
        scopetype="string",
        status="string")
    
    const objectEmailfilterMheaderEntriesResource = new fortimanager.ObjectEmailfilterMheaderEntries("objectEmailfilterMheaderEntriesResource", {
        mheader: "string",
        action: "string",
        adom: "string",
        fieldbody: "string",
        fieldname: "string",
        fosid: 0,
        objectEmailfilterMheaderEntriesId: "string",
        patternType: "string",
        scopetype: "string",
        status: "string",
    });
    
    type: fortimanager:ObjectEmailfilterMheaderEntries
    properties:
        action: string
        adom: string
        fieldbody: string
        fieldname: string
        fosid: 0
        mheader: string
        objectEmailfilterMheaderEntriesId: string
        patternType: string
        scopetype: string
        status: string
    

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

    Mheader string
    Mheader.
    Action string
    Mark spam or good. Valid values: spam, clear.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fieldbody string
    Pattern for the header field body.
    Fieldname string
    Pattern for header field name.
    Fosid double
    Mime header entry ID.
    ObjectEmailfilterMheaderEntriesId string
    an identifier for the resource with format {{fosid}}.
    PatternType string
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    Status string
    Enable/disable status. Valid values: disable, enable.
    Mheader string
    Mheader.
    Action string
    Mark spam or good. Valid values: spam, clear.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fieldbody string
    Pattern for the header field body.
    Fieldname string
    Pattern for header field name.
    Fosid float64
    Mime header entry ID.
    ObjectEmailfilterMheaderEntriesId string
    an identifier for the resource with format {{fosid}}.
    PatternType string
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    Status string
    Enable/disable status. Valid values: disable, enable.
    mheader String
    Mheader.
    action String
    Mark spam or good. Valid values: spam, clear.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fieldbody String
    Pattern for the header field body.
    fieldname String
    Pattern for header field name.
    fosid Double
    Mime header entry ID.
    objectEmailfilterMheaderEntriesId String
    an identifier for the resource with format {{fosid}}.
    patternType String
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    status String
    Enable/disable status. Valid values: disable, enable.
    mheader string
    Mheader.
    action string
    Mark spam or good. Valid values: spam, clear.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fieldbody string
    Pattern for the header field body.
    fieldname string
    Pattern for header field name.
    fosid number
    Mime header entry ID.
    objectEmailfilterMheaderEntriesId string
    an identifier for the resource with format {{fosid}}.
    patternType string
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    status string
    Enable/disable status. Valid values: disable, enable.
    mheader str
    Mheader.
    action str
    Mark spam or good. Valid values: spam, clear.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fieldbody str
    Pattern for the header field body.
    fieldname str
    Pattern for header field name.
    fosid float
    Mime header entry ID.
    object_emailfilter_mheader_entries_id str
    an identifier for the resource with format {{fosid}}.
    pattern_type str
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    status str
    Enable/disable status. Valid values: disable, enable.
    mheader String
    Mheader.
    action String
    Mark spam or good. Valid values: spam, clear.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fieldbody String
    Pattern for the header field body.
    fieldname String
    Pattern for header field name.
    fosid Number
    Mime header entry ID.
    objectEmailfilterMheaderEntriesId String
    an identifier for the resource with format {{fosid}}.
    patternType String
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    status String
    Enable/disable status. Valid values: disable, enable.

    Outputs

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

    Get an existing ObjectEmailfilterMheaderEntries 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?: ObjectEmailfilterMheaderEntriesState, opts?: CustomResourceOptions): ObjectEmailfilterMheaderEntries
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            fieldbody: Optional[str] = None,
            fieldname: Optional[str] = None,
            fosid: Optional[float] = None,
            mheader: Optional[str] = None,
            object_emailfilter_mheader_entries_id: Optional[str] = None,
            pattern_type: Optional[str] = None,
            scopetype: Optional[str] = None,
            status: Optional[str] = None) -> ObjectEmailfilterMheaderEntries
    func GetObjectEmailfilterMheaderEntries(ctx *Context, name string, id IDInput, state *ObjectEmailfilterMheaderEntriesState, opts ...ResourceOption) (*ObjectEmailfilterMheaderEntries, error)
    public static ObjectEmailfilterMheaderEntries Get(string name, Input<string> id, ObjectEmailfilterMheaderEntriesState? state, CustomResourceOptions? opts = null)
    public static ObjectEmailfilterMheaderEntries get(String name, Output<String> id, ObjectEmailfilterMheaderEntriesState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectEmailfilterMheaderEntries    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Action string
    Mark spam or good. Valid values: spam, clear.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fieldbody string
    Pattern for the header field body.
    Fieldname string
    Pattern for header field name.
    Fosid double
    Mime header entry ID.
    Mheader string
    Mheader.
    ObjectEmailfilterMheaderEntriesId string
    an identifier for the resource with format {{fosid}}.
    PatternType string
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    Status string
    Enable/disable status. Valid values: disable, enable.
    Action string
    Mark spam or good. Valid values: spam, clear.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fieldbody string
    Pattern for the header field body.
    Fieldname string
    Pattern for header field name.
    Fosid float64
    Mime header entry ID.
    Mheader string
    Mheader.
    ObjectEmailfilterMheaderEntriesId string
    an identifier for the resource with format {{fosid}}.
    PatternType string
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    Status string
    Enable/disable status. Valid values: disable, enable.
    action String
    Mark spam or good. Valid values: spam, clear.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fieldbody String
    Pattern for the header field body.
    fieldname String
    Pattern for header field name.
    fosid Double
    Mime header entry ID.
    mheader String
    Mheader.
    objectEmailfilterMheaderEntriesId String
    an identifier for the resource with format {{fosid}}.
    patternType String
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    status String
    Enable/disable status. Valid values: disable, enable.
    action string
    Mark spam or good. Valid values: spam, clear.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fieldbody string
    Pattern for the header field body.
    fieldname string
    Pattern for header field name.
    fosid number
    Mime header entry ID.
    mheader string
    Mheader.
    objectEmailfilterMheaderEntriesId string
    an identifier for the resource with format {{fosid}}.
    patternType string
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    status string
    Enable/disable status. Valid values: disable, enable.
    action str
    Mark spam or good. Valid values: spam, clear.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fieldbody str
    Pattern for the header field body.
    fieldname str
    Pattern for header field name.
    fosid float
    Mime header entry ID.
    mheader str
    Mheader.
    object_emailfilter_mheader_entries_id str
    an identifier for the resource with format {{fosid}}.
    pattern_type str
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    status str
    Enable/disable status. Valid values: disable, enable.
    action String
    Mark spam or good. Valid values: spam, clear.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fieldbody String
    Pattern for the header field body.
    fieldname String
    Pattern for header field name.
    fosid Number
    Mime header entry ID.
    mheader String
    Mheader.
    objectEmailfilterMheaderEntriesId String
    an identifier for the resource with format {{fosid}}.
    patternType String
    Wildcard pattern or regular expression. Valid values: wildcard, regexp.
    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.
    status String
    Enable/disable status. Valid values: disable, enable.

    Import

    ObjectEmailfilter MheaderEntries can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectEmailfilterMheaderEntries:ObjectEmailfilterMheaderEntries labelname {{fosid}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev