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

fortimanager.DvmCmdAddDevlist

Explore with Pulumi AI

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

    Import

    Dvm CmdAddDevList can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/dvmCmdAddDevlist:DvmCmdAddDevlist labelname DvmCmdAddDevList
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    Create DvmCmdAddDevlist Resource

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

    Constructor syntax

    new DvmCmdAddDevlist(name: string, args?: DvmCmdAddDevlistArgs, opts?: CustomResourceOptions);
    @overload
    def DvmCmdAddDevlist(resource_name: str,
                         args: Optional[DvmCmdAddDevlistArgs] = None,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def DvmCmdAddDevlist(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         add_dev_lists: Optional[Sequence[DvmCmdAddDevlistAddDevListArgs]] = None,
                         dvm_cmd_add_devlist_id: Optional[str] = None,
                         dynamic_sort_subtable: Optional[str] = None,
                         flags: Optional[Sequence[str]] = None,
                         fmgadom: Optional[str] = None,
                         force_recreate: Optional[str] = None)
    func NewDvmCmdAddDevlist(ctx *Context, name string, args *DvmCmdAddDevlistArgs, opts ...ResourceOption) (*DvmCmdAddDevlist, error)
    public DvmCmdAddDevlist(string name, DvmCmdAddDevlistArgs? args = null, CustomResourceOptions? opts = null)
    public DvmCmdAddDevlist(String name, DvmCmdAddDevlistArgs args)
    public DvmCmdAddDevlist(String name, DvmCmdAddDevlistArgs args, CustomResourceOptions options)
    
    type: fortimanager:DvmCmdAddDevlist
    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 DvmCmdAddDevlistArgs
    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 DvmCmdAddDevlistArgs
    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 DvmCmdAddDevlistArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DvmCmdAddDevlistArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DvmCmdAddDevlistArgs
    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 dvmCmdAddDevlistResource = new Fortimanager.DvmCmdAddDevlist("dvmCmdAddDevlistResource", new()
    {
        AddDevLists = new[]
        {
            new Fortimanager.Inputs.DvmCmdAddDevlistAddDevListArgs
            {
                AdmPasses = new[]
                {
                    "string",
                },
                AdmUsr = "string",
                Authorizationtemplate = "string",
                Desc = "string",
                Deviceaction = "string",
                Deviceblueprint = "string",
                Fazquota = 0,
                Ip = "string",
                Metafields = "string",
                MgmtMode = "string",
                Mr = 0,
                Name = "string",
                OsType = "string",
                OsVer = "string",
                Patch = 0,
                PlatformStr = "string",
                Sn = "string",
            },
        },
        DvmCmdAddDevlistId = "string",
        DynamicSortSubtable = "string",
        Flags = new[]
        {
            "string",
        },
        Fmgadom = "string",
        ForceRecreate = "string",
    });
    
    example, err := fortimanager.NewDvmCmdAddDevlist(ctx, "dvmCmdAddDevlistResource", &fortimanager.DvmCmdAddDevlistArgs{
    AddDevLists: .DvmCmdAddDevlistAddDevListArray{
    &.DvmCmdAddDevlistAddDevListArgs{
    AdmPasses: pulumi.StringArray{
    pulumi.String("string"),
    },
    AdmUsr: pulumi.String("string"),
    Authorizationtemplate: pulumi.String("string"),
    Desc: pulumi.String("string"),
    Deviceaction: pulumi.String("string"),
    Deviceblueprint: pulumi.String("string"),
    Fazquota: pulumi.Float64(0),
    Ip: pulumi.String("string"),
    Metafields: pulumi.String("string"),
    MgmtMode: pulumi.String("string"),
    Mr: pulumi.Float64(0),
    Name: pulumi.String("string"),
    OsType: pulumi.String("string"),
    OsVer: pulumi.String("string"),
    Patch: pulumi.Float64(0),
    PlatformStr: pulumi.String("string"),
    Sn: pulumi.String("string"),
    },
    },
    DvmCmdAddDevlistId: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Flags: pulumi.StringArray{
    pulumi.String("string"),
    },
    Fmgadom: pulumi.String("string"),
    ForceRecreate: pulumi.String("string"),
    })
    
    var dvmCmdAddDevlistResource = new DvmCmdAddDevlist("dvmCmdAddDevlistResource", DvmCmdAddDevlistArgs.builder()
        .addDevLists(DvmCmdAddDevlistAddDevListArgs.builder()
            .admPasses("string")
            .admUsr("string")
            .authorizationtemplate("string")
            .desc("string")
            .deviceaction("string")
            .deviceblueprint("string")
            .fazquota(0)
            .ip("string")
            .metafields("string")
            .mgmtMode("string")
            .mr(0)
            .name("string")
            .osType("string")
            .osVer("string")
            .patch(0)
            .platformStr("string")
            .sn("string")
            .build())
        .dvmCmdAddDevlistId("string")
        .dynamicSortSubtable("string")
        .flags("string")
        .fmgadom("string")
        .forceRecreate("string")
        .build());
    
    dvm_cmd_add_devlist_resource = fortimanager.DvmCmdAddDevlist("dvmCmdAddDevlistResource",
        add_dev_lists=[{
            "adm_passes": ["string"],
            "adm_usr": "string",
            "authorizationtemplate": "string",
            "desc": "string",
            "deviceaction": "string",
            "deviceblueprint": "string",
            "fazquota": 0,
            "ip": "string",
            "metafields": "string",
            "mgmt_mode": "string",
            "mr": 0,
            "name": "string",
            "os_type": "string",
            "os_ver": "string",
            "patch": 0,
            "platform_str": "string",
            "sn": "string",
        }],
        dvm_cmd_add_devlist_id="string",
        dynamic_sort_subtable="string",
        flags=["string"],
        fmgadom="string",
        force_recreate="string")
    
    const dvmCmdAddDevlistResource = new fortimanager.DvmCmdAddDevlist("dvmCmdAddDevlistResource", {
        addDevLists: [{
            admPasses: ["string"],
            admUsr: "string",
            authorizationtemplate: "string",
            desc: "string",
            deviceaction: "string",
            deviceblueprint: "string",
            fazquota: 0,
            ip: "string",
            metafields: "string",
            mgmtMode: "string",
            mr: 0,
            name: "string",
            osType: "string",
            osVer: "string",
            patch: 0,
            platformStr: "string",
            sn: "string",
        }],
        dvmCmdAddDevlistId: "string",
        dynamicSortSubtable: "string",
        flags: ["string"],
        fmgadom: "string",
        forceRecreate: "string",
    });
    
    type: fortimanager:DvmCmdAddDevlist
    properties:
        addDevLists:
            - admPasses:
                - string
              admUsr: string
              authorizationtemplate: string
              desc: string
              deviceaction: string
              deviceblueprint: string
              fazquota: 0
              ip: string
              metafields: string
              mgmtMode: string
              mr: 0
              name: string
              osType: string
              osVer: string
              patch: 0
              platformStr: string
              sn: string
        dvmCmdAddDevlistId: string
        dynamicSortSubtable: string
        flags:
            - string
        fmgadom: string
        forceRecreate: string
    

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

    AddDevLists List<DvmCmdAddDevlistAddDevList>
    A list of device objects to be added. Refer to device action attribute to select different type of add operation. The structure of add_dev_list block is documented below.
    DvmCmdAddDevlistId string
    an identifier for the resource.
    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.
    Flags List<string>
    create_task - Create a new task in task manager database. nonblocking - The API will return immediately in for non-blocking call. This flag will be set automatically when the adding, importing, updating, and deleting a list of devices. Valid values: none, create_task, nonblocking, log_dev.
    Fmgadom string
    Name or ID of the ADOM where the command is to be executed on.
    ForceRecreate string
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    AddDevLists []DvmCmdAddDevlistAddDevListArgs
    A list of device objects to be added. Refer to device action attribute to select different type of add operation. The structure of add_dev_list block is documented below.
    DvmCmdAddDevlistId string
    an identifier for the resource.
    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.
    Flags []string
    create_task - Create a new task in task manager database. nonblocking - The API will return immediately in for non-blocking call. This flag will be set automatically when the adding, importing, updating, and deleting a list of devices. Valid values: none, create_task, nonblocking, log_dev.
    Fmgadom string
    Name or ID of the ADOM where the command is to be executed on.
    ForceRecreate string
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    addDevLists List<DvmCmdAddDevlistAddDevList>
    A list of device objects to be added. Refer to device action attribute to select different type of add operation. The structure of add_dev_list block is documented below.
    dvmCmdAddDevlistId String
    an identifier for the resource.
    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.
    flags List<String>
    create_task - Create a new task in task manager database. nonblocking - The API will return immediately in for non-blocking call. This flag will be set automatically when the adding, importing, updating, and deleting a list of devices. Valid values: none, create_task, nonblocking, log_dev.
    fmgadom String
    Name or ID of the ADOM where the command is to be executed on.
    forceRecreate String
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    addDevLists DvmCmdAddDevlistAddDevList[]
    A list of device objects to be added. Refer to device action attribute to select different type of add operation. The structure of add_dev_list block is documented below.
    dvmCmdAddDevlistId string
    an identifier for the resource.
    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.
    flags string[]
    create_task - Create a new task in task manager database. nonblocking - The API will return immediately in for non-blocking call. This flag will be set automatically when the adding, importing, updating, and deleting a list of devices. Valid values: none, create_task, nonblocking, log_dev.
    fmgadom string
    Name or ID of the ADOM where the command is to be executed on.
    forceRecreate string
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    add_dev_lists Sequence[DvmCmdAddDevlistAddDevListArgs]
    A list of device objects to be added. Refer to device action attribute to select different type of add operation. The structure of add_dev_list block is documented below.
    dvm_cmd_add_devlist_id str
    an identifier for the resource.
    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.
    flags Sequence[str]
    create_task - Create a new task in task manager database. nonblocking - The API will return immediately in for non-blocking call. This flag will be set automatically when the adding, importing, updating, and deleting a list of devices. Valid values: none, create_task, nonblocking, log_dev.
    fmgadom str
    Name or ID of the ADOM where the command is to be executed on.
    force_recreate str
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    addDevLists List<Property Map>
    A list of device objects to be added. Refer to device action attribute to select different type of add operation. The structure of add_dev_list block is documented below.
    dvmCmdAddDevlistId String
    an identifier for the resource.
    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.
    flags List<String>
    create_task - Create a new task in task manager database. nonblocking - The API will return immediately in for non-blocking call. This flag will be set automatically when the adding, importing, updating, and deleting a list of devices. Valid values: none, create_task, nonblocking, log_dev.
    fmgadom String
    Name or ID of the ADOM where the command is to be executed on.
    forceRecreate String
    The argument is optional, if it is set, when the value changes, the resource will be re-created.

    Outputs

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

    Get an existing DvmCmdAddDevlist 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?: DvmCmdAddDevlistState, opts?: CustomResourceOptions): DvmCmdAddDevlist
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            add_dev_lists: Optional[Sequence[DvmCmdAddDevlistAddDevListArgs]] = None,
            dvm_cmd_add_devlist_id: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            flags: Optional[Sequence[str]] = None,
            fmgadom: Optional[str] = None,
            force_recreate: Optional[str] = None) -> DvmCmdAddDevlist
    func GetDvmCmdAddDevlist(ctx *Context, name string, id IDInput, state *DvmCmdAddDevlistState, opts ...ResourceOption) (*DvmCmdAddDevlist, error)
    public static DvmCmdAddDevlist Get(string name, Input<string> id, DvmCmdAddDevlistState? state, CustomResourceOptions? opts = null)
    public static DvmCmdAddDevlist get(String name, Output<String> id, DvmCmdAddDevlistState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:DvmCmdAddDevlist    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:
    AddDevLists List<DvmCmdAddDevlistAddDevList>
    A list of device objects to be added. Refer to device action attribute to select different type of add operation. The structure of add_dev_list block is documented below.
    DvmCmdAddDevlistId string
    an identifier for the resource.
    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.
    Flags List<string>
    create_task - Create a new task in task manager database. nonblocking - The API will return immediately in for non-blocking call. This flag will be set automatically when the adding, importing, updating, and deleting a list of devices. Valid values: none, create_task, nonblocking, log_dev.
    Fmgadom string
    Name or ID of the ADOM where the command is to be executed on.
    ForceRecreate string
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    AddDevLists []DvmCmdAddDevlistAddDevListArgs
    A list of device objects to be added. Refer to device action attribute to select different type of add operation. The structure of add_dev_list block is documented below.
    DvmCmdAddDevlistId string
    an identifier for the resource.
    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.
    Flags []string
    create_task - Create a new task in task manager database. nonblocking - The API will return immediately in for non-blocking call. This flag will be set automatically when the adding, importing, updating, and deleting a list of devices. Valid values: none, create_task, nonblocking, log_dev.
    Fmgadom string
    Name or ID of the ADOM where the command is to be executed on.
    ForceRecreate string
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    addDevLists List<DvmCmdAddDevlistAddDevList>
    A list of device objects to be added. Refer to device action attribute to select different type of add operation. The structure of add_dev_list block is documented below.
    dvmCmdAddDevlistId String
    an identifier for the resource.
    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.
    flags List<String>
    create_task - Create a new task in task manager database. nonblocking - The API will return immediately in for non-blocking call. This flag will be set automatically when the adding, importing, updating, and deleting a list of devices. Valid values: none, create_task, nonblocking, log_dev.
    fmgadom String
    Name or ID of the ADOM where the command is to be executed on.
    forceRecreate String
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    addDevLists DvmCmdAddDevlistAddDevList[]
    A list of device objects to be added. Refer to device action attribute to select different type of add operation. The structure of add_dev_list block is documented below.
    dvmCmdAddDevlistId string
    an identifier for the resource.
    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.
    flags string[]
    create_task - Create a new task in task manager database. nonblocking - The API will return immediately in for non-blocking call. This flag will be set automatically when the adding, importing, updating, and deleting a list of devices. Valid values: none, create_task, nonblocking, log_dev.
    fmgadom string
    Name or ID of the ADOM where the command is to be executed on.
    forceRecreate string
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    add_dev_lists Sequence[DvmCmdAddDevlistAddDevListArgs]
    A list of device objects to be added. Refer to device action attribute to select different type of add operation. The structure of add_dev_list block is documented below.
    dvm_cmd_add_devlist_id str
    an identifier for the resource.
    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.
    flags Sequence[str]
    create_task - Create a new task in task manager database. nonblocking - The API will return immediately in for non-blocking call. This flag will be set automatically when the adding, importing, updating, and deleting a list of devices. Valid values: none, create_task, nonblocking, log_dev.
    fmgadom str
    Name or ID of the ADOM where the command is to be executed on.
    force_recreate str
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    addDevLists List<Property Map>
    A list of device objects to be added. Refer to device action attribute to select different type of add operation. The structure of add_dev_list block is documented below.
    dvmCmdAddDevlistId String
    an identifier for the resource.
    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.
    flags List<String>
    create_task - Create a new task in task manager database. nonblocking - The API will return immediately in for non-blocking call. This flag will be set automatically when the adding, importing, updating, and deleting a list of devices. Valid values: none, create_task, nonblocking, log_dev.
    fmgadom String
    Name or ID of the ADOM where the command is to be executed on.
    forceRecreate String
    The argument is optional, if it is set, when the value changes, the resource will be re-created.

    Supporting Types

    DvmCmdAddDevlistAddDevList, DvmCmdAddDevlistAddDevListArgs

    AdmPasses List<string>
    add real and promote device.
    AdmUsr string
    add real and promote device.
    Authorizationtemplate string
    add model device only. Fabric Authorization Template to auto genreate for the new model device upon creation.
    Desc string
    available for all operations.
    Deviceaction string
    Specify add device operations, or leave blank to add real device:"add_model" - add a model device."promote_unreg" - promote an unregistered device to be managed by FortiManager using information from database.
    Deviceblueprint string
    add model device only. Device blueprint to apply to the new model device.
    Fazquota double
    available for all operations.
    Ip string
    add real device only. Add device will probe with this IP using the log in credential specified.
    Metafields string
    add real and model device.
    MgmtMode string
    add real and model device. Valid values: unreg, fmg, faz, fmgfaz.
    Mr double
    add model device only.
    Name string
    required for all operations. Unique name for the device.
    OsType string
    add model device only. Valid values: unknown, fos, fsw, foc, fml, faz, fwb, fch, fct, log, fmg, fsa, fdd, fac, fpx, fna.
    OsVer string
    add model device only. Valid values: unknown, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0.
    Patch double
    add model device only.
    PlatformStr string
    add model device only. Required for determine the platform for VM platforms.
    Sn string
    add model device only. This attribute will be used to determine the device platform, except for VM platforms, where platform_str is also required.
    AdmPasses []string
    add real and promote device.
    AdmUsr string
    add real and promote device.
    Authorizationtemplate string
    add model device only. Fabric Authorization Template to auto genreate for the new model device upon creation.
    Desc string
    available for all operations.
    Deviceaction string
    Specify add device operations, or leave blank to add real device:"add_model" - add a model device."promote_unreg" - promote an unregistered device to be managed by FortiManager using information from database.
    Deviceblueprint string
    add model device only. Device blueprint to apply to the new model device.
    Fazquota float64
    available for all operations.
    Ip string
    add real device only. Add device will probe with this IP using the log in credential specified.
    Metafields string
    add real and model device.
    MgmtMode string
    add real and model device. Valid values: unreg, fmg, faz, fmgfaz.
    Mr float64
    add model device only.
    Name string
    required for all operations. Unique name for the device.
    OsType string
    add model device only. Valid values: unknown, fos, fsw, foc, fml, faz, fwb, fch, fct, log, fmg, fsa, fdd, fac, fpx, fna.
    OsVer string
    add model device only. Valid values: unknown, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0.
    Patch float64
    add model device only.
    PlatformStr string
    add model device only. Required for determine the platform for VM platforms.
    Sn string
    add model device only. This attribute will be used to determine the device platform, except for VM platforms, where platform_str is also required.
    admPasses List<String>
    add real and promote device.
    admUsr String
    add real and promote device.
    authorizationtemplate String
    add model device only. Fabric Authorization Template to auto genreate for the new model device upon creation.
    desc String
    available for all operations.
    deviceaction String
    Specify add device operations, or leave blank to add real device:"add_model" - add a model device."promote_unreg" - promote an unregistered device to be managed by FortiManager using information from database.
    deviceblueprint String
    add model device only. Device blueprint to apply to the new model device.
    fazquota Double
    available for all operations.
    ip String
    add real device only. Add device will probe with this IP using the log in credential specified.
    metafields String
    add real and model device.
    mgmtMode String
    add real and model device. Valid values: unreg, fmg, faz, fmgfaz.
    mr Double
    add model device only.
    name String
    required for all operations. Unique name for the device.
    osType String
    add model device only. Valid values: unknown, fos, fsw, foc, fml, faz, fwb, fch, fct, log, fmg, fsa, fdd, fac, fpx, fna.
    osVer String
    add model device only. Valid values: unknown, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0.
    patch Double
    add model device only.
    platformStr String
    add model device only. Required for determine the platform for VM platforms.
    sn String
    add model device only. This attribute will be used to determine the device platform, except for VM platforms, where platform_str is also required.
    admPasses string[]
    add real and promote device.
    admUsr string
    add real and promote device.
    authorizationtemplate string
    add model device only. Fabric Authorization Template to auto genreate for the new model device upon creation.
    desc string
    available for all operations.
    deviceaction string
    Specify add device operations, or leave blank to add real device:"add_model" - add a model device."promote_unreg" - promote an unregistered device to be managed by FortiManager using information from database.
    deviceblueprint string
    add model device only. Device blueprint to apply to the new model device.
    fazquota number
    available for all operations.
    ip string
    add real device only. Add device will probe with this IP using the log in credential specified.
    metafields string
    add real and model device.
    mgmtMode string
    add real and model device. Valid values: unreg, fmg, faz, fmgfaz.
    mr number
    add model device only.
    name string
    required for all operations. Unique name for the device.
    osType string
    add model device only. Valid values: unknown, fos, fsw, foc, fml, faz, fwb, fch, fct, log, fmg, fsa, fdd, fac, fpx, fna.
    osVer string
    add model device only. Valid values: unknown, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0.
    patch number
    add model device only.
    platformStr string
    add model device only. Required for determine the platform for VM platforms.
    sn string
    add model device only. This attribute will be used to determine the device platform, except for VM platforms, where platform_str is also required.
    adm_passes Sequence[str]
    add real and promote device.
    adm_usr str
    add real and promote device.
    authorizationtemplate str
    add model device only. Fabric Authorization Template to auto genreate for the new model device upon creation.
    desc str
    available for all operations.
    deviceaction str
    Specify add device operations, or leave blank to add real device:"add_model" - add a model device."promote_unreg" - promote an unregistered device to be managed by FortiManager using information from database.
    deviceblueprint str
    add model device only. Device blueprint to apply to the new model device.
    fazquota float
    available for all operations.
    ip str
    add real device only. Add device will probe with this IP using the log in credential specified.
    metafields str
    add real and model device.
    mgmt_mode str
    add real and model device. Valid values: unreg, fmg, faz, fmgfaz.
    mr float
    add model device only.
    name str
    required for all operations. Unique name for the device.
    os_type str
    add model device only. Valid values: unknown, fos, fsw, foc, fml, faz, fwb, fch, fct, log, fmg, fsa, fdd, fac, fpx, fna.
    os_ver str
    add model device only. Valid values: unknown, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0.
    patch float
    add model device only.
    platform_str str
    add model device only. Required for determine the platform for VM platforms.
    sn str
    add model device only. This attribute will be used to determine the device platform, except for VM platforms, where platform_str is also required.
    admPasses List<String>
    add real and promote device.
    admUsr String
    add real and promote device.
    authorizationtemplate String
    add model device only. Fabric Authorization Template to auto genreate for the new model device upon creation.
    desc String
    available for all operations.
    deviceaction String
    Specify add device operations, or leave blank to add real device:"add_model" - add a model device."promote_unreg" - promote an unregistered device to be managed by FortiManager using information from database.
    deviceblueprint String
    add model device only. Device blueprint to apply to the new model device.
    fazquota Number
    available for all operations.
    ip String
    add real device only. Add device will probe with this IP using the log in credential specified.
    metafields String
    add real and model device.
    mgmtMode String
    add real and model device. Valid values: unreg, fmg, faz, fmgfaz.
    mr Number
    add model device only.
    name String
    required for all operations. Unique name for the device.
    osType String
    add model device only. Valid values: unknown, fos, fsw, foc, fml, faz, fwb, fch, fct, log, fmg, fsa, fdd, fac, fpx, fna.
    osVer String
    add model device only. Valid values: unknown, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0.
    patch Number
    add model device only.
    platformStr String
    add model device only. Required for determine the platform for VM platforms.
    sn String
    add model device only. This attribute will be used to determine the device platform, except for VM platforms, where platform_str is also required.

    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