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

fortimanager.SecurityconsoleReinstallPackage

Explore with Pulumi AI

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

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/securityconsoleReinstallPackage:SecurityconsoleReinstallPackage labelname SecurityconsoleReinstallPackage
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    Create SecurityconsoleReinstallPackage Resource

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

    Constructor syntax

    new SecurityconsoleReinstallPackage(name: string, args?: SecurityconsoleReinstallPackageArgs, opts?: CustomResourceOptions);
    @overload
    def SecurityconsoleReinstallPackage(resource_name: str,
                                        args: Optional[SecurityconsoleReinstallPackageArgs] = None,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def SecurityconsoleReinstallPackage(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        dynamic_sort_subtable: Optional[str] = None,
                                        flags: Optional[Sequence[str]] = None,
                                        fmgadom: Optional[str] = None,
                                        force_recreate: Optional[str] = None,
                                        securityconsole_reinstall_package_id: Optional[str] = None,
                                        targets: Optional[Sequence[SecurityconsoleReinstallPackageTargetArgs]] = None)
    func NewSecurityconsoleReinstallPackage(ctx *Context, name string, args *SecurityconsoleReinstallPackageArgs, opts ...ResourceOption) (*SecurityconsoleReinstallPackage, error)
    public SecurityconsoleReinstallPackage(string name, SecurityconsoleReinstallPackageArgs? args = null, CustomResourceOptions? opts = null)
    public SecurityconsoleReinstallPackage(String name, SecurityconsoleReinstallPackageArgs args)
    public SecurityconsoleReinstallPackage(String name, SecurityconsoleReinstallPackageArgs args, CustomResourceOptions options)
    
    type: fortimanager:SecurityconsoleReinstallPackage
    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 SecurityconsoleReinstallPackageArgs
    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 SecurityconsoleReinstallPackageArgs
    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 SecurityconsoleReinstallPackageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SecurityconsoleReinstallPackageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SecurityconsoleReinstallPackageArgs
    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 securityconsoleReinstallPackageResource = new Fortimanager.SecurityconsoleReinstallPackage("securityconsoleReinstallPackageResource", new()
    {
        DynamicSortSubtable = "string",
        Flags = new[]
        {
            "string",
        },
        Fmgadom = "string",
        ForceRecreate = "string",
        SecurityconsoleReinstallPackageId = "string",
        Targets = new[]
        {
            new Fortimanager.Inputs.SecurityconsoleReinstallPackageTargetArgs
            {
                Pkg = "string",
                Scopes = new[]
                {
                    new Fortimanager.Inputs.SecurityconsoleReinstallPackageTargetScopeArgs
                    {
                        Name = "string",
                        Vdom = "string",
                    },
                },
            },
        },
    });
    
    example, err := fortimanager.NewSecurityconsoleReinstallPackage(ctx, "securityconsoleReinstallPackageResource", &fortimanager.SecurityconsoleReinstallPackageArgs{
    DynamicSortSubtable: pulumi.String("string"),
    Flags: pulumi.StringArray{
    pulumi.String("string"),
    },
    Fmgadom: pulumi.String("string"),
    ForceRecreate: pulumi.String("string"),
    SecurityconsoleReinstallPackageId: pulumi.String("string"),
    Targets: .SecurityconsoleReinstallPackageTargetArray{
    &.SecurityconsoleReinstallPackageTargetArgs{
    Pkg: pulumi.String("string"),
    Scopes: .SecurityconsoleReinstallPackageTargetScopeArray{
    &.SecurityconsoleReinstallPackageTargetScopeArgs{
    Name: pulumi.String("string"),
    Vdom: pulumi.String("string"),
    },
    },
    },
    },
    })
    
    var securityconsoleReinstallPackageResource = new SecurityconsoleReinstallPackage("securityconsoleReinstallPackageResource", SecurityconsoleReinstallPackageArgs.builder()
        .dynamicSortSubtable("string")
        .flags("string")
        .fmgadom("string")
        .forceRecreate("string")
        .securityconsoleReinstallPackageId("string")
        .targets(SecurityconsoleReinstallPackageTargetArgs.builder()
            .pkg("string")
            .scopes(SecurityconsoleReinstallPackageTargetScopeArgs.builder()
                .name("string")
                .vdom("string")
                .build())
            .build())
        .build());
    
    securityconsole_reinstall_package_resource = fortimanager.SecurityconsoleReinstallPackage("securityconsoleReinstallPackageResource",
        dynamic_sort_subtable="string",
        flags=["string"],
        fmgadom="string",
        force_recreate="string",
        securityconsole_reinstall_package_id="string",
        targets=[{
            "pkg": "string",
            "scopes": [{
                "name": "string",
                "vdom": "string",
            }],
        }])
    
    const securityconsoleReinstallPackageResource = new fortimanager.SecurityconsoleReinstallPackage("securityconsoleReinstallPackageResource", {
        dynamicSortSubtable: "string",
        flags: ["string"],
        fmgadom: "string",
        forceRecreate: "string",
        securityconsoleReinstallPackageId: "string",
        targets: [{
            pkg: "string",
            scopes: [{
                name: "string",
                vdom: "string",
            }],
        }],
    });
    
    type: fortimanager:SecurityconsoleReinstallPackage
    properties:
        dynamicSortSubtable: string
        flags:
            - string
        fmgadom: string
        forceRecreate: string
        securityconsoleReinstallPackageId: string
        targets:
            - pkg: string
              scopes:
                - name: string
                  vdom: string
    

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

    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>
    cp_all_objs - Assign all objects during global policy assignment. preview - Generate preview cache only. generate_rev - Generate new ADOM revision before install. copy_assigned_pkg - For global policy assignment - copy assigned package from ADOM to device. unassign - Remove global policy from ADOM. ifpolicy_only - Only install interface policies. no_ifpolicy - Install regular policies only - do not install interface policies. objs_only - Install object(s) only - do not install any policies. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. copy_only - Only copy to device db. Valid values: none, cp_all_objs, preview, generate_rev, copy_assigned_pkg, unassign, ifpolicy_only, no_ifpolicy, objs_only, auto_lock_ws, check_pkg_st, copy_only.
    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.
    SecurityconsoleReinstallPackageId string
    an identifier for the resource.
    Targets List<SecurityconsoleReinstallPackageTarget>
    Target. The structure of target block is documented below.
    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
    cp_all_objs - Assign all objects during global policy assignment. preview - Generate preview cache only. generate_rev - Generate new ADOM revision before install. copy_assigned_pkg - For global policy assignment - copy assigned package from ADOM to device. unassign - Remove global policy from ADOM. ifpolicy_only - Only install interface policies. no_ifpolicy - Install regular policies only - do not install interface policies. objs_only - Install object(s) only - do not install any policies. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. copy_only - Only copy to device db. Valid values: none, cp_all_objs, preview, generate_rev, copy_assigned_pkg, unassign, ifpolicy_only, no_ifpolicy, objs_only, auto_lock_ws, check_pkg_st, copy_only.
    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.
    SecurityconsoleReinstallPackageId string
    an identifier for the resource.
    Targets []SecurityconsoleReinstallPackageTargetArgs
    Target. The structure of target block is documented below.
    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>
    cp_all_objs - Assign all objects during global policy assignment. preview - Generate preview cache only. generate_rev - Generate new ADOM revision before install. copy_assigned_pkg - For global policy assignment - copy assigned package from ADOM to device. unassign - Remove global policy from ADOM. ifpolicy_only - Only install interface policies. no_ifpolicy - Install regular policies only - do not install interface policies. objs_only - Install object(s) only - do not install any policies. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. copy_only - Only copy to device db. Valid values: none, cp_all_objs, preview, generate_rev, copy_assigned_pkg, unassign, ifpolicy_only, no_ifpolicy, objs_only, auto_lock_ws, check_pkg_st, copy_only.
    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.
    securityconsoleReinstallPackageId String
    an identifier for the resource.
    targets List<SecurityconsoleReinstallPackageTarget>
    Target. The structure of target block is documented below.
    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[]
    cp_all_objs - Assign all objects during global policy assignment. preview - Generate preview cache only. generate_rev - Generate new ADOM revision before install. copy_assigned_pkg - For global policy assignment - copy assigned package from ADOM to device. unassign - Remove global policy from ADOM. ifpolicy_only - Only install interface policies. no_ifpolicy - Install regular policies only - do not install interface policies. objs_only - Install object(s) only - do not install any policies. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. copy_only - Only copy to device db. Valid values: none, cp_all_objs, preview, generate_rev, copy_assigned_pkg, unassign, ifpolicy_only, no_ifpolicy, objs_only, auto_lock_ws, check_pkg_st, copy_only.
    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.
    securityconsoleReinstallPackageId string
    an identifier for the resource.
    targets SecurityconsoleReinstallPackageTarget[]
    Target. The structure of target block is documented below.
    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]
    cp_all_objs - Assign all objects during global policy assignment. preview - Generate preview cache only. generate_rev - Generate new ADOM revision before install. copy_assigned_pkg - For global policy assignment - copy assigned package from ADOM to device. unassign - Remove global policy from ADOM. ifpolicy_only - Only install interface policies. no_ifpolicy - Install regular policies only - do not install interface policies. objs_only - Install object(s) only - do not install any policies. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. copy_only - Only copy to device db. Valid values: none, cp_all_objs, preview, generate_rev, copy_assigned_pkg, unassign, ifpolicy_only, no_ifpolicy, objs_only, auto_lock_ws, check_pkg_st, copy_only.
    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.
    securityconsole_reinstall_package_id str
    an identifier for the resource.
    targets Sequence[SecurityconsoleReinstallPackageTargetArgs]
    Target. The structure of target block is documented below.
    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>
    cp_all_objs - Assign all objects during global policy assignment. preview - Generate preview cache only. generate_rev - Generate new ADOM revision before install. copy_assigned_pkg - For global policy assignment - copy assigned package from ADOM to device. unassign - Remove global policy from ADOM. ifpolicy_only - Only install interface policies. no_ifpolicy - Install regular policies only - do not install interface policies. objs_only - Install object(s) only - do not install any policies. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. copy_only - Only copy to device db. Valid values: none, cp_all_objs, preview, generate_rev, copy_assigned_pkg, unassign, ifpolicy_only, no_ifpolicy, objs_only, auto_lock_ws, check_pkg_st, copy_only.
    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.
    securityconsoleReinstallPackageId String
    an identifier for the resource.
    targets List<Property Map>
    Target. The structure of target block is documented below.

    Outputs

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

    Get an existing SecurityconsoleReinstallPackage 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?: SecurityconsoleReinstallPackageState, opts?: CustomResourceOptions): SecurityconsoleReinstallPackage
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dynamic_sort_subtable: Optional[str] = None,
            flags: Optional[Sequence[str]] = None,
            fmgadom: Optional[str] = None,
            force_recreate: Optional[str] = None,
            securityconsole_reinstall_package_id: Optional[str] = None,
            targets: Optional[Sequence[SecurityconsoleReinstallPackageTargetArgs]] = None) -> SecurityconsoleReinstallPackage
    func GetSecurityconsoleReinstallPackage(ctx *Context, name string, id IDInput, state *SecurityconsoleReinstallPackageState, opts ...ResourceOption) (*SecurityconsoleReinstallPackage, error)
    public static SecurityconsoleReinstallPackage Get(string name, Input<string> id, SecurityconsoleReinstallPackageState? state, CustomResourceOptions? opts = null)
    public static SecurityconsoleReinstallPackage get(String name, Output<String> id, SecurityconsoleReinstallPackageState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SecurityconsoleReinstallPackage    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:
    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>
    cp_all_objs - Assign all objects during global policy assignment. preview - Generate preview cache only. generate_rev - Generate new ADOM revision before install. copy_assigned_pkg - For global policy assignment - copy assigned package from ADOM to device. unassign - Remove global policy from ADOM. ifpolicy_only - Only install interface policies. no_ifpolicy - Install regular policies only - do not install interface policies. objs_only - Install object(s) only - do not install any policies. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. copy_only - Only copy to device db. Valid values: none, cp_all_objs, preview, generate_rev, copy_assigned_pkg, unassign, ifpolicy_only, no_ifpolicy, objs_only, auto_lock_ws, check_pkg_st, copy_only.
    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.
    SecurityconsoleReinstallPackageId string
    an identifier for the resource.
    Targets List<SecurityconsoleReinstallPackageTarget>
    Target. The structure of target block is documented below.
    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
    cp_all_objs - Assign all objects during global policy assignment. preview - Generate preview cache only. generate_rev - Generate new ADOM revision before install. copy_assigned_pkg - For global policy assignment - copy assigned package from ADOM to device. unassign - Remove global policy from ADOM. ifpolicy_only - Only install interface policies. no_ifpolicy - Install regular policies only - do not install interface policies. objs_only - Install object(s) only - do not install any policies. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. copy_only - Only copy to device db. Valid values: none, cp_all_objs, preview, generate_rev, copy_assigned_pkg, unassign, ifpolicy_only, no_ifpolicy, objs_only, auto_lock_ws, check_pkg_st, copy_only.
    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.
    SecurityconsoleReinstallPackageId string
    an identifier for the resource.
    Targets []SecurityconsoleReinstallPackageTargetArgs
    Target. The structure of target block is documented below.
    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>
    cp_all_objs - Assign all objects during global policy assignment. preview - Generate preview cache only. generate_rev - Generate new ADOM revision before install. copy_assigned_pkg - For global policy assignment - copy assigned package from ADOM to device. unassign - Remove global policy from ADOM. ifpolicy_only - Only install interface policies. no_ifpolicy - Install regular policies only - do not install interface policies. objs_only - Install object(s) only - do not install any policies. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. copy_only - Only copy to device db. Valid values: none, cp_all_objs, preview, generate_rev, copy_assigned_pkg, unassign, ifpolicy_only, no_ifpolicy, objs_only, auto_lock_ws, check_pkg_st, copy_only.
    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.
    securityconsoleReinstallPackageId String
    an identifier for the resource.
    targets List<SecurityconsoleReinstallPackageTarget>
    Target. The structure of target block is documented below.
    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[]
    cp_all_objs - Assign all objects during global policy assignment. preview - Generate preview cache only. generate_rev - Generate new ADOM revision before install. copy_assigned_pkg - For global policy assignment - copy assigned package from ADOM to device. unassign - Remove global policy from ADOM. ifpolicy_only - Only install interface policies. no_ifpolicy - Install regular policies only - do not install interface policies. objs_only - Install object(s) only - do not install any policies. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. copy_only - Only copy to device db. Valid values: none, cp_all_objs, preview, generate_rev, copy_assigned_pkg, unassign, ifpolicy_only, no_ifpolicy, objs_only, auto_lock_ws, check_pkg_st, copy_only.
    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.
    securityconsoleReinstallPackageId string
    an identifier for the resource.
    targets SecurityconsoleReinstallPackageTarget[]
    Target. The structure of target block is documented below.
    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]
    cp_all_objs - Assign all objects during global policy assignment. preview - Generate preview cache only. generate_rev - Generate new ADOM revision before install. copy_assigned_pkg - For global policy assignment - copy assigned package from ADOM to device. unassign - Remove global policy from ADOM. ifpolicy_only - Only install interface policies. no_ifpolicy - Install regular policies only - do not install interface policies. objs_only - Install object(s) only - do not install any policies. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. copy_only - Only copy to device db. Valid values: none, cp_all_objs, preview, generate_rev, copy_assigned_pkg, unassign, ifpolicy_only, no_ifpolicy, objs_only, auto_lock_ws, check_pkg_st, copy_only.
    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.
    securityconsole_reinstall_package_id str
    an identifier for the resource.
    targets Sequence[SecurityconsoleReinstallPackageTargetArgs]
    Target. The structure of target block is documented below.
    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>
    cp_all_objs - Assign all objects during global policy assignment. preview - Generate preview cache only. generate_rev - Generate new ADOM revision before install. copy_assigned_pkg - For global policy assignment - copy assigned package from ADOM to device. unassign - Remove global policy from ADOM. ifpolicy_only - Only install interface policies. no_ifpolicy - Install regular policies only - do not install interface policies. objs_only - Install object(s) only - do not install any policies. auto_lock_ws - Automatically lock and unlock workspace when performing security console task. copy_only - Only copy to device db. Valid values: none, cp_all_objs, preview, generate_rev, copy_assigned_pkg, unassign, ifpolicy_only, no_ifpolicy, objs_only, auto_lock_ws, check_pkg_st, copy_only.
    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.
    securityconsoleReinstallPackageId String
    an identifier for the resource.
    targets List<Property Map>
    Target. The structure of target block is documented below.

    Supporting Types

    SecurityconsoleReinstallPackageTarget, SecurityconsoleReinstallPackageTargetArgs

    Pkg string
    Source package path and name.
    Scopes List<SecurityconsoleReinstallPackageTargetScope>
    Scope. The structure of scope block is documented below.
    Pkg string
    Source package path and name.
    Scopes []SecurityconsoleReinstallPackageTargetScope
    Scope. The structure of scope block is documented below.
    pkg String
    Source package path and name.
    scopes List<SecurityconsoleReinstallPackageTargetScope>
    Scope. The structure of scope block is documented below.
    pkg string
    Source package path and name.
    scopes SecurityconsoleReinstallPackageTargetScope[]
    Scope. The structure of scope block is documented below.
    pkg str
    Source package path and name.
    scopes Sequence[SecurityconsoleReinstallPackageTargetScope]
    Scope. The structure of scope block is documented below.
    pkg String
    Source package path and name.
    scopes List<Property Map>
    Scope. The structure of scope block is documented below.

    SecurityconsoleReinstallPackageTargetScope, SecurityconsoleReinstallPackageTargetScopeArgs

    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