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

fortimanager.SecurityconsoleInstallDevice

Explore with Pulumi AI

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

    Import

    Securityconsole InstallDevice can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/securityconsoleInstallDevice:SecurityconsoleInstallDevice labelname SecurityconsoleInstallDevice
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    Create SecurityconsoleInstallDevice Resource

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

    Constructor syntax

    new SecurityconsoleInstallDevice(name: string, args?: SecurityconsoleInstallDeviceArgs, opts?: CustomResourceOptions);
    @overload
    def SecurityconsoleInstallDevice(resource_name: str,
                                     args: Optional[SecurityconsoleInstallDeviceArgs] = None,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def SecurityconsoleInstallDevice(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     dev_rev_comments: Optional[str] = None,
                                     dynamic_sort_subtable: Optional[str] = None,
                                     flags: Optional[Sequence[str]] = None,
                                     fmgadom: Optional[str] = None,
                                     force_recreate: Optional[str] = None,
                                     scopes: Optional[Sequence[SecurityconsoleInstallDeviceScopeArgs]] = None,
                                     securityconsole_install_device_id: Optional[str] = None)
    func NewSecurityconsoleInstallDevice(ctx *Context, name string, args *SecurityconsoleInstallDeviceArgs, opts ...ResourceOption) (*SecurityconsoleInstallDevice, error)
    public SecurityconsoleInstallDevice(string name, SecurityconsoleInstallDeviceArgs? args = null, CustomResourceOptions? opts = null)
    public SecurityconsoleInstallDevice(String name, SecurityconsoleInstallDeviceArgs args)
    public SecurityconsoleInstallDevice(String name, SecurityconsoleInstallDeviceArgs args, CustomResourceOptions options)
    
    type: fortimanager:SecurityconsoleInstallDevice
    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 SecurityconsoleInstallDeviceArgs
    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 SecurityconsoleInstallDeviceArgs
    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 SecurityconsoleInstallDeviceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SecurityconsoleInstallDeviceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SecurityconsoleInstallDeviceArgs
    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 securityconsoleInstallDeviceResource = new Fortimanager.SecurityconsoleInstallDevice("securityconsoleInstallDeviceResource", new()
    {
        DevRevComments = "string",
        DynamicSortSubtable = "string",
        Flags = new[]
        {
            "string",
        },
        Fmgadom = "string",
        ForceRecreate = "string",
        Scopes = new[]
        {
            new Fortimanager.Inputs.SecurityconsoleInstallDeviceScopeArgs
            {
                Name = "string",
                Vdom = "string",
            },
        },
        SecurityconsoleInstallDeviceId = "string",
    });
    
    example, err := fortimanager.NewSecurityconsoleInstallDevice(ctx, "securityconsoleInstallDeviceResource", &fortimanager.SecurityconsoleInstallDeviceArgs{
    DevRevComments: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Flags: pulumi.StringArray{
    pulumi.String("string"),
    },
    Fmgadom: pulumi.String("string"),
    ForceRecreate: pulumi.String("string"),
    Scopes: .SecurityconsoleInstallDeviceScopeArray{
    &.SecurityconsoleInstallDeviceScopeArgs{
    Name: pulumi.String("string"),
    Vdom: pulumi.String("string"),
    },
    },
    SecurityconsoleInstallDeviceId: pulumi.String("string"),
    })
    
    var securityconsoleInstallDeviceResource = new SecurityconsoleInstallDevice("securityconsoleInstallDeviceResource", SecurityconsoleInstallDeviceArgs.builder()
        .devRevComments("string")
        .dynamicSortSubtable("string")
        .flags("string")
        .fmgadom("string")
        .forceRecreate("string")
        .scopes(SecurityconsoleInstallDeviceScopeArgs.builder()
            .name("string")
            .vdom("string")
            .build())
        .securityconsoleInstallDeviceId("string")
        .build());
    
    securityconsole_install_device_resource = fortimanager.SecurityconsoleInstallDevice("securityconsoleInstallDeviceResource",
        dev_rev_comments="string",
        dynamic_sort_subtable="string",
        flags=["string"],
        fmgadom="string",
        force_recreate="string",
        scopes=[{
            "name": "string",
            "vdom": "string",
        }],
        securityconsole_install_device_id="string")
    
    const securityconsoleInstallDeviceResource = new fortimanager.SecurityconsoleInstallDevice("securityconsoleInstallDeviceResource", {
        devRevComments: "string",
        dynamicSortSubtable: "string",
        flags: ["string"],
        fmgadom: "string",
        forceRecreate: "string",
        scopes: [{
            name: "string",
            vdom: "string",
        }],
        securityconsoleInstallDeviceId: "string",
    });
    
    type: fortimanager:SecurityconsoleInstallDevice
    properties:
        devRevComments: string
        dynamicSortSubtable: string
        flags:
            - string
        fmgadom: string
        forceRecreate: string
        scopes:
            - name: string
              vdom: string
        securityconsoleInstallDeviceId: string
    

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

    DevRevComments string
    Dev_Rev_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.
    Flags List<string>
    preview - Generate preview cache only. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. Valid values: none, preview, auto_lock_ws.
    Fmgadom string
    Source ADOM name.
    ForceRecreate string
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    Scopes List<SecurityconsoleInstallDeviceScope>
    Scope. The structure of scope block is documented below.
    SecurityconsoleInstallDeviceId string
    an identifier for the resource.
    DevRevComments string
    Dev_Rev_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.
    Flags []string
    preview - Generate preview cache only. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. Valid values: none, preview, auto_lock_ws.
    Fmgadom string
    Source ADOM name.
    ForceRecreate string
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    Scopes []SecurityconsoleInstallDeviceScopeArgs
    Scope. The structure of scope block is documented below.
    SecurityconsoleInstallDeviceId string
    an identifier for the resource.
    devRevComments String
    Dev_Rev_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.
    flags List<String>
    preview - Generate preview cache only. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. Valid values: none, preview, auto_lock_ws.
    fmgadom String
    Source ADOM name.
    forceRecreate String
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    scopes List<SecurityconsoleInstallDeviceScope>
    Scope. The structure of scope block is documented below.
    securityconsoleInstallDeviceId String
    an identifier for the resource.
    devRevComments string
    Dev_Rev_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.
    flags string[]
    preview - Generate preview cache only. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. Valid values: none, preview, auto_lock_ws.
    fmgadom string
    Source ADOM name.
    forceRecreate string
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    scopes SecurityconsoleInstallDeviceScope[]
    Scope. The structure of scope block is documented below.
    securityconsoleInstallDeviceId string
    an identifier for the resource.
    dev_rev_comments str
    Dev_Rev_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.
    flags Sequence[str]
    preview - Generate preview cache only. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. Valid values: none, preview, auto_lock_ws.
    fmgadom str
    Source ADOM name.
    force_recreate str
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    scopes Sequence[SecurityconsoleInstallDeviceScopeArgs]
    Scope. The structure of scope block is documented below.
    securityconsole_install_device_id str
    an identifier for the resource.
    devRevComments String
    Dev_Rev_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.
    flags List<String>
    preview - Generate preview cache only. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. Valid values: none, preview, auto_lock_ws.
    fmgadom String
    Source ADOM name.
    forceRecreate String
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    scopes List<Property Map>
    Scope. The structure of scope block is documented below.
    securityconsoleInstallDeviceId String
    an identifier for the resource.

    Outputs

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

    Get an existing SecurityconsoleInstallDevice 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?: SecurityconsoleInstallDeviceState, opts?: CustomResourceOptions): SecurityconsoleInstallDevice
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dev_rev_comments: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            flags: Optional[Sequence[str]] = None,
            fmgadom: Optional[str] = None,
            force_recreate: Optional[str] = None,
            scopes: Optional[Sequence[SecurityconsoleInstallDeviceScopeArgs]] = None,
            securityconsole_install_device_id: Optional[str] = None) -> SecurityconsoleInstallDevice
    func GetSecurityconsoleInstallDevice(ctx *Context, name string, id IDInput, state *SecurityconsoleInstallDeviceState, opts ...ResourceOption) (*SecurityconsoleInstallDevice, error)
    public static SecurityconsoleInstallDevice Get(string name, Input<string> id, SecurityconsoleInstallDeviceState? state, CustomResourceOptions? opts = null)
    public static SecurityconsoleInstallDevice get(String name, Output<String> id, SecurityconsoleInstallDeviceState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SecurityconsoleInstallDevice    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:
    DevRevComments string
    Dev_Rev_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.
    Flags List<string>
    preview - Generate preview cache only. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. Valid values: none, preview, auto_lock_ws.
    Fmgadom string
    Source ADOM name.
    ForceRecreate string
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    Scopes List<SecurityconsoleInstallDeviceScope>
    Scope. The structure of scope block is documented below.
    SecurityconsoleInstallDeviceId string
    an identifier for the resource.
    DevRevComments string
    Dev_Rev_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.
    Flags []string
    preview - Generate preview cache only. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. Valid values: none, preview, auto_lock_ws.
    Fmgadom string
    Source ADOM name.
    ForceRecreate string
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    Scopes []SecurityconsoleInstallDeviceScopeArgs
    Scope. The structure of scope block is documented below.
    SecurityconsoleInstallDeviceId string
    an identifier for the resource.
    devRevComments String
    Dev_Rev_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.
    flags List<String>
    preview - Generate preview cache only. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. Valid values: none, preview, auto_lock_ws.
    fmgadom String
    Source ADOM name.
    forceRecreate String
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    scopes List<SecurityconsoleInstallDeviceScope>
    Scope. The structure of scope block is documented below.
    securityconsoleInstallDeviceId String
    an identifier for the resource.
    devRevComments string
    Dev_Rev_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.
    flags string[]
    preview - Generate preview cache only. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. Valid values: none, preview, auto_lock_ws.
    fmgadom string
    Source ADOM name.
    forceRecreate string
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    scopes SecurityconsoleInstallDeviceScope[]
    Scope. The structure of scope block is documented below.
    securityconsoleInstallDeviceId string
    an identifier for the resource.
    dev_rev_comments str
    Dev_Rev_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.
    flags Sequence[str]
    preview - Generate preview cache only. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. Valid values: none, preview, auto_lock_ws.
    fmgadom str
    Source ADOM name.
    force_recreate str
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    scopes Sequence[SecurityconsoleInstallDeviceScopeArgs]
    Scope. The structure of scope block is documented below.
    securityconsole_install_device_id str
    an identifier for the resource.
    devRevComments String
    Dev_Rev_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.
    flags List<String>
    preview - Generate preview cache only. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. Valid values: none, preview, auto_lock_ws.
    fmgadom String
    Source ADOM name.
    forceRecreate String
    The argument is optional, if it is set, when the value changes, the resource will be re-created.
    scopes List<Property Map>
    Scope. The structure of scope block is documented below.
    securityconsoleInstallDeviceId String
    an identifier for the resource.

    Supporting Types

    SecurityconsoleInstallDeviceScope, SecurityconsoleInstallDeviceScopeArgs

    Name string
    Name.
    Vdom string
    Vdom.
    Name string
    Name.
    Vdom string
    Vdom.
    name String
    Name.
    vdom String
    Vdom.
    name string
    Name.
    vdom string
    Vdom.
    name str
    Name.
    vdom str
    Vdom.
    name String
    Name.
    vdom String
    Vdom.

    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