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

fortimanager.PackagesPkg

Explore with Pulumi AI

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

    Packages Pkg

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.PackagesPkg("trname", {type: "pkg"});
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.PackagesPkg("trname", type="pkg")
    
    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 {
    		_, err := fortimanager.NewPackagesPkg(ctx, "trname", &fortimanager.PackagesPkgArgs{
    			Type: pulumi.String("pkg"),
    		})
    		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 trname = new Fortimanager.PackagesPkg("trname", new()
        {
            Type = "pkg",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.PackagesPkg;
    import com.pulumi.fortimanager.PackagesPkgArgs;
    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 trname = new PackagesPkg("trname", PackagesPkgArgs.builder()
                .type("pkg")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:PackagesPkg
        properties:
          type: pkg
    

    Create PackagesPkg Resource

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

    Constructor syntax

    new PackagesPkg(name: string, args?: PackagesPkgArgs, opts?: CustomResourceOptions);
    @overload
    def PackagesPkg(resource_name: str,
                    args: Optional[PackagesPkgArgs] = None,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def PackagesPkg(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    adom: Optional[str] = None,
                    dynamic_sort_subtable: Optional[str] = None,
                    name: Optional[str] = None,
                    objver: Optional[float] = None,
                    oid: Optional[float] = None,
                    packages_pkg_id: Optional[str] = None,
                    packagesetting: Optional[PackagesPkgPackagesettingArgs] = None,
                    packagesettings: Optional[PackagesPkgPackagesettingsArgs] = None,
                    pkg_folder_path: Optional[str] = None,
                    scopemembers: Optional[Sequence[PackagesPkgScopememberArgs]] = None,
                    scopetype: Optional[str] = None,
                    type: Optional[str] = None)
    func NewPackagesPkg(ctx *Context, name string, args *PackagesPkgArgs, opts ...ResourceOption) (*PackagesPkg, error)
    public PackagesPkg(string name, PackagesPkgArgs? args = null, CustomResourceOptions? opts = null)
    public PackagesPkg(String name, PackagesPkgArgs args)
    public PackagesPkg(String name, PackagesPkgArgs args, CustomResourceOptions options)
    
    type: fortimanager:PackagesPkg
    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 PackagesPkgArgs
    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 PackagesPkgArgs
    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 PackagesPkgArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PackagesPkgArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PackagesPkgArgs
    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 packagesPkgResource = new Fortimanager.PackagesPkg("packagesPkgResource", new()
    {
        Adom = "string",
        DynamicSortSubtable = "string",
        Name = "string",
        Objver = 0,
        Oid = 0,
        PackagesPkgId = "string",
        Packagesetting = new Fortimanager.Inputs.PackagesPkgPackagesettingArgs
        {
            CentralNat = "string",
            ConsolidatedFirewallMode = "string",
            Fwpolicy6ImplicitLog = "string",
            FwpolicyImplicitLog = "string",
            InspectionMode = "string",
            NgfwMode = "string",
            SslSshProfile = "string",
        },
        Packagesettings = new Fortimanager.Inputs.PackagesPkgPackagesettingsArgs
        {
            CentralNat = "string",
            ConsolidatedFirewallMode = "string",
            Fwpolicy6ImplicitLog = "string",
            FwpolicyImplicitLog = "string",
            InspectionMode = "string",
            NgfwMode = "string",
            PolicyOffloadLevel = "string",
            SslSshProfile = "string",
        },
        PkgFolderPath = "string",
        Scopemembers = new[]
        {
            new Fortimanager.Inputs.PackagesPkgScopememberArgs
            {
                Name = "string",
                Vdom = "string",
            },
        },
        Scopetype = "string",
        Type = "string",
    });
    
    example, err := fortimanager.NewPackagesPkg(ctx, "packagesPkgResource", &fortimanager.PackagesPkgArgs{
    Adom: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Name: pulumi.String("string"),
    Objver: pulumi.Float64(0),
    Oid: pulumi.Float64(0),
    PackagesPkgId: pulumi.String("string"),
    Packagesetting: &.PackagesPkgPackagesettingArgs{
    CentralNat: pulumi.String("string"),
    ConsolidatedFirewallMode: pulumi.String("string"),
    Fwpolicy6ImplicitLog: pulumi.String("string"),
    FwpolicyImplicitLog: pulumi.String("string"),
    InspectionMode: pulumi.String("string"),
    NgfwMode: pulumi.String("string"),
    SslSshProfile: pulumi.String("string"),
    },
    Packagesettings: &.PackagesPkgPackagesettingsArgs{
    CentralNat: pulumi.String("string"),
    ConsolidatedFirewallMode: pulumi.String("string"),
    Fwpolicy6ImplicitLog: pulumi.String("string"),
    FwpolicyImplicitLog: pulumi.String("string"),
    InspectionMode: pulumi.String("string"),
    NgfwMode: pulumi.String("string"),
    PolicyOffloadLevel: pulumi.String("string"),
    SslSshProfile: pulumi.String("string"),
    },
    PkgFolderPath: pulumi.String("string"),
    Scopemembers: .PackagesPkgScopememberArray{
    &.PackagesPkgScopememberArgs{
    Name: pulumi.String("string"),
    Vdom: pulumi.String("string"),
    },
    },
    Scopetype: pulumi.String("string"),
    Type: pulumi.String("string"),
    })
    
    var packagesPkgResource = new PackagesPkg("packagesPkgResource", PackagesPkgArgs.builder()
        .adom("string")
        .dynamicSortSubtable("string")
        .name("string")
        .objver(0)
        .oid(0)
        .packagesPkgId("string")
        .packagesetting(PackagesPkgPackagesettingArgs.builder()
            .centralNat("string")
            .consolidatedFirewallMode("string")
            .fwpolicy6ImplicitLog("string")
            .fwpolicyImplicitLog("string")
            .inspectionMode("string")
            .ngfwMode("string")
            .sslSshProfile("string")
            .build())
        .packagesettings(PackagesPkgPackagesettingsArgs.builder()
            .centralNat("string")
            .consolidatedFirewallMode("string")
            .fwpolicy6ImplicitLog("string")
            .fwpolicyImplicitLog("string")
            .inspectionMode("string")
            .ngfwMode("string")
            .policyOffloadLevel("string")
            .sslSshProfile("string")
            .build())
        .pkgFolderPath("string")
        .scopemembers(PackagesPkgScopememberArgs.builder()
            .name("string")
            .vdom("string")
            .build())
        .scopetype("string")
        .type("string")
        .build());
    
    packages_pkg_resource = fortimanager.PackagesPkg("packagesPkgResource",
        adom="string",
        dynamic_sort_subtable="string",
        name="string",
        objver=0,
        oid=0,
        packages_pkg_id="string",
        packagesetting={
            "central_nat": "string",
            "consolidated_firewall_mode": "string",
            "fwpolicy6_implicit_log": "string",
            "fwpolicy_implicit_log": "string",
            "inspection_mode": "string",
            "ngfw_mode": "string",
            "ssl_ssh_profile": "string",
        },
        packagesettings={
            "central_nat": "string",
            "consolidated_firewall_mode": "string",
            "fwpolicy6_implicit_log": "string",
            "fwpolicy_implicit_log": "string",
            "inspection_mode": "string",
            "ngfw_mode": "string",
            "policy_offload_level": "string",
            "ssl_ssh_profile": "string",
        },
        pkg_folder_path="string",
        scopemembers=[{
            "name": "string",
            "vdom": "string",
        }],
        scopetype="string",
        type="string")
    
    const packagesPkgResource = new fortimanager.PackagesPkg("packagesPkgResource", {
        adom: "string",
        dynamicSortSubtable: "string",
        name: "string",
        objver: 0,
        oid: 0,
        packagesPkgId: "string",
        packagesetting: {
            centralNat: "string",
            consolidatedFirewallMode: "string",
            fwpolicy6ImplicitLog: "string",
            fwpolicyImplicitLog: "string",
            inspectionMode: "string",
            ngfwMode: "string",
            sslSshProfile: "string",
        },
        packagesettings: {
            centralNat: "string",
            consolidatedFirewallMode: "string",
            fwpolicy6ImplicitLog: "string",
            fwpolicyImplicitLog: "string",
            inspectionMode: "string",
            ngfwMode: "string",
            policyOffloadLevel: "string",
            sslSshProfile: "string",
        },
        pkgFolderPath: "string",
        scopemembers: [{
            name: "string",
            vdom: "string",
        }],
        scopetype: "string",
        type: "string",
    });
    
    type: fortimanager:PackagesPkg
    properties:
        adom: string
        dynamicSortSubtable: string
        name: string
        objver: 0
        oid: 0
        packagesPkgId: string
        packagesetting:
            centralNat: string
            consolidatedFirewallMode: string
            fwpolicy6ImplicitLog: string
            fwpolicyImplicitLog: string
            inspectionMode: string
            ngfwMode: string
            sslSshProfile: string
        packagesettings:
            centralNat: string
            consolidatedFirewallMode: string
            fwpolicy6ImplicitLog: string
            fwpolicyImplicitLog: string
            inspectionMode: string
            ngfwMode: string
            policyOffloadLevel: string
            sslSshProfile: string
        pkgFolderPath: string
        scopemembers:
            - name: string
              vdom: string
        scopetype: string
        type: string
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    Name string
    Name.
    Objver double
    Obj Ver.
    Oid double
    Oid.
    PackagesPkgId string
    an identifier for the resource with format {{name}}.
    Packagesetting PackagesPkgPackagesetting
    Package Setting. The structure of packagesetting block is documented below.
    Packagesettings PackagesPkgPackagesettings
    Package Settings. The structure of packagesettings block is documented below.
    PkgFolderPath string
    Pkg Folder Path.
    Scopemembers List<PackagesPkgScopemember>
    Scope Member. The structure of scopemember block is documented below.
    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.
    Type string
    Type. Valid values: pkg, folder.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    Name string
    Name.
    Objver float64
    Obj Ver.
    Oid float64
    Oid.
    PackagesPkgId string
    an identifier for the resource with format {{name}}.
    Packagesetting PackagesPkgPackagesettingArgs
    Package Setting. The structure of packagesetting block is documented below.
    Packagesettings PackagesPkgPackagesettingsArgs
    Package Settings. The structure of packagesettings block is documented below.
    PkgFolderPath string
    Pkg Folder Path.
    Scopemembers []PackagesPkgScopememberArgs
    Scope Member. The structure of scopemember block is documented below.
    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.
    Type string
    Type. Valid values: pkg, folder.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    name String
    Name.
    objver Double
    Obj Ver.
    oid Double
    Oid.
    packagesPkgId String
    an identifier for the resource with format {{name}}.
    packagesetting PackagesPkgPackagesetting
    Package Setting. The structure of packagesetting block is documented below.
    packagesettings PackagesPkgPackagesettings
    Package Settings. The structure of packagesettings block is documented below.
    pkgFolderPath String
    Pkg Folder Path.
    scopemembers List<PackagesPkgScopemember>
    Scope Member. The structure of scopemember block is documented below.
    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.
    type String
    Type. Valid values: pkg, folder.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    name string
    Name.
    objver number
    Obj Ver.
    oid number
    Oid.
    packagesPkgId string
    an identifier for the resource with format {{name}}.
    packagesetting PackagesPkgPackagesetting
    Package Setting. The structure of packagesetting block is documented below.
    packagesettings PackagesPkgPackagesettings
    Package Settings. The structure of packagesettings block is documented below.
    pkgFolderPath string
    Pkg Folder Path.
    scopemembers PackagesPkgScopemember[]
    Scope Member. The structure of scopemember block is documented below.
    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.
    type string
    Type. Valid values: pkg, folder.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    name str
    Name.
    objver float
    Obj Ver.
    oid float
    Oid.
    packages_pkg_id str
    an identifier for the resource with format {{name}}.
    packagesetting PackagesPkgPackagesettingArgs
    Package Setting. The structure of packagesetting block is documented below.
    packagesettings PackagesPkgPackagesettingsArgs
    Package Settings. The structure of packagesettings block is documented below.
    pkg_folder_path str
    Pkg Folder Path.
    scopemembers Sequence[PackagesPkgScopememberArgs]
    Scope Member. The structure of scopemember block is documented below.
    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.
    type str
    Type. Valid values: pkg, folder.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    name String
    Name.
    objver Number
    Obj Ver.
    oid Number
    Oid.
    packagesPkgId String
    an identifier for the resource with format {{name}}.
    packagesetting Property Map
    Package Setting. The structure of packagesetting block is documented below.
    packagesettings Property Map
    Package Settings. The structure of packagesettings block is documented below.
    pkgFolderPath String
    Pkg Folder Path.
    scopemembers List<Property Map>
    Scope Member. The structure of scopemember block is documented below.
    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.
    type String
    Type. Valid values: pkg, folder.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PackagesPkg resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    OutputFolderPath string
    Folder path of the package..
    OutputPkgName string
    Package name. The value will be empty string if the type of the resource is folder..
    Id string
    The provider-assigned unique ID for this managed resource.
    OutputFolderPath string
    Folder path of the package..
    OutputPkgName string
    Package name. The value will be empty string if the type of the resource is folder..
    id String
    The provider-assigned unique ID for this managed resource.
    outputFolderPath String
    Folder path of the package..
    outputPkgName String
    Package name. The value will be empty string if the type of the resource is folder..
    id string
    The provider-assigned unique ID for this managed resource.
    outputFolderPath string
    Folder path of the package..
    outputPkgName string
    Package name. The value will be empty string if the type of the resource is folder..
    id str
    The provider-assigned unique ID for this managed resource.
    output_folder_path str
    Folder path of the package..
    output_pkg_name str
    Package name. The value will be empty string if the type of the resource is folder..
    id String
    The provider-assigned unique ID for this managed resource.
    outputFolderPath String
    Folder path of the package..
    outputPkgName String
    Package name. The value will be empty string if the type of the resource is folder..

    Look up Existing PackagesPkg Resource

    Get an existing PackagesPkg 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?: PackagesPkgState, opts?: CustomResourceOptions): PackagesPkg
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            name: Optional[str] = None,
            objver: Optional[float] = None,
            oid: Optional[float] = None,
            output_folder_path: Optional[str] = None,
            output_pkg_name: Optional[str] = None,
            packages_pkg_id: Optional[str] = None,
            packagesetting: Optional[PackagesPkgPackagesettingArgs] = None,
            packagesettings: Optional[PackagesPkgPackagesettingsArgs] = None,
            pkg_folder_path: Optional[str] = None,
            scopemembers: Optional[Sequence[PackagesPkgScopememberArgs]] = None,
            scopetype: Optional[str] = None,
            type: Optional[str] = None) -> PackagesPkg
    func GetPackagesPkg(ctx *Context, name string, id IDInput, state *PackagesPkgState, opts ...ResourceOption) (*PackagesPkg, error)
    public static PackagesPkg Get(string name, Input<string> id, PackagesPkgState? state, CustomResourceOptions? opts = null)
    public static PackagesPkg get(String name, Output<String> id, PackagesPkgState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:PackagesPkg    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    Name string
    Name.
    Objver double
    Obj Ver.
    Oid double
    Oid.
    OutputFolderPath string
    Folder path of the package..
    OutputPkgName string
    Package name. The value will be empty string if the type of the resource is folder..
    PackagesPkgId string
    an identifier for the resource with format {{name}}.
    Packagesetting PackagesPkgPackagesetting
    Package Setting. The structure of packagesetting block is documented below.
    Packagesettings PackagesPkgPackagesettings
    Package Settings. The structure of packagesettings block is documented below.
    PkgFolderPath string
    Pkg Folder Path.
    Scopemembers List<PackagesPkgScopemember>
    Scope Member. The structure of scopemember block is documented below.
    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.
    Type string
    Type. Valid values: pkg, folder.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    Name string
    Name.
    Objver float64
    Obj Ver.
    Oid float64
    Oid.
    OutputFolderPath string
    Folder path of the package..
    OutputPkgName string
    Package name. The value will be empty string if the type of the resource is folder..
    PackagesPkgId string
    an identifier for the resource with format {{name}}.
    Packagesetting PackagesPkgPackagesettingArgs
    Package Setting. The structure of packagesetting block is documented below.
    Packagesettings PackagesPkgPackagesettingsArgs
    Package Settings. The structure of packagesettings block is documented below.
    PkgFolderPath string
    Pkg Folder Path.
    Scopemembers []PackagesPkgScopememberArgs
    Scope Member. The structure of scopemember block is documented below.
    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.
    Type string
    Type. Valid values: pkg, folder.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    name String
    Name.
    objver Double
    Obj Ver.
    oid Double
    Oid.
    outputFolderPath String
    Folder path of the package..
    outputPkgName String
    Package name. The value will be empty string if the type of the resource is folder..
    packagesPkgId String
    an identifier for the resource with format {{name}}.
    packagesetting PackagesPkgPackagesetting
    Package Setting. The structure of packagesetting block is documented below.
    packagesettings PackagesPkgPackagesettings
    Package Settings. The structure of packagesettings block is documented below.
    pkgFolderPath String
    Pkg Folder Path.
    scopemembers List<PackagesPkgScopemember>
    Scope Member. The structure of scopemember block is documented below.
    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.
    type String
    Type. Valid values: pkg, folder.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    name string
    Name.
    objver number
    Obj Ver.
    oid number
    Oid.
    outputFolderPath string
    Folder path of the package..
    outputPkgName string
    Package name. The value will be empty string if the type of the resource is folder..
    packagesPkgId string
    an identifier for the resource with format {{name}}.
    packagesetting PackagesPkgPackagesetting
    Package Setting. The structure of packagesetting block is documented below.
    packagesettings PackagesPkgPackagesettings
    Package Settings. The structure of packagesettings block is documented below.
    pkgFolderPath string
    Pkg Folder Path.
    scopemembers PackagesPkgScopemember[]
    Scope Member. The structure of scopemember block is documented below.
    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.
    type string
    Type. Valid values: pkg, folder.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    name str
    Name.
    objver float
    Obj Ver.
    oid float
    Oid.
    output_folder_path str
    Folder path of the package..
    output_pkg_name str
    Package name. The value will be empty string if the type of the resource is folder..
    packages_pkg_id str
    an identifier for the resource with format {{name}}.
    packagesetting PackagesPkgPackagesettingArgs
    Package Setting. The structure of packagesetting block is documented below.
    packagesettings PackagesPkgPackagesettingsArgs
    Package Settings. The structure of packagesettings block is documented below.
    pkg_folder_path str
    Pkg Folder Path.
    scopemembers Sequence[PackagesPkgScopememberArgs]
    Scope Member. The structure of scopemember block is documented below.
    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.
    type str
    Type. Valid values: pkg, folder.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    name String
    Name.
    objver Number
    Obj Ver.
    oid Number
    Oid.
    outputFolderPath String
    Folder path of the package..
    outputPkgName String
    Package name. The value will be empty string if the type of the resource is folder..
    packagesPkgId String
    an identifier for the resource with format {{name}}.
    packagesetting Property Map
    Package Setting. The structure of packagesetting block is documented below.
    packagesettings Property Map
    Package Settings. The structure of packagesettings block is documented below.
    pkgFolderPath String
    Pkg Folder Path.
    scopemembers List<Property Map>
    Scope Member. The structure of scopemember block is documented below.
    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.
    type String
    Type. Valid values: pkg, folder.

    Supporting Types

    PackagesPkgPackagesetting, PackagesPkgPackagesettingArgs

    CentralNat string
    Central-Nat. Valid values: disable, enable.
    ConsolidatedFirewallMode string
    Consolidated-Firewall-Mode. Valid values: disable, enable.
    Fwpolicy6ImplicitLog string
    Fwpolicy6-Implicit-Log. Valid values: disable, enable.
    FwpolicyImplicitLog string
    Fwpolicy-Implicit-Log. Valid values: disable, enable.
    InspectionMode string
    Inspection-Mode. Valid values: proxy, flow.
    NgfwMode string
    Ngfw-Mode. Valid values: profile-based, policy-based.
    SslSshProfile string
    Ssl-Ssh-Profile.
    CentralNat string
    Central-Nat. Valid values: disable, enable.
    ConsolidatedFirewallMode string
    Consolidated-Firewall-Mode. Valid values: disable, enable.
    Fwpolicy6ImplicitLog string
    Fwpolicy6-Implicit-Log. Valid values: disable, enable.
    FwpolicyImplicitLog string
    Fwpolicy-Implicit-Log. Valid values: disable, enable.
    InspectionMode string
    Inspection-Mode. Valid values: proxy, flow.
    NgfwMode string
    Ngfw-Mode. Valid values: profile-based, policy-based.
    SslSshProfile string
    Ssl-Ssh-Profile.
    centralNat String
    Central-Nat. Valid values: disable, enable.
    consolidatedFirewallMode String
    Consolidated-Firewall-Mode. Valid values: disable, enable.
    fwpolicy6ImplicitLog String
    Fwpolicy6-Implicit-Log. Valid values: disable, enable.
    fwpolicyImplicitLog String
    Fwpolicy-Implicit-Log. Valid values: disable, enable.
    inspectionMode String
    Inspection-Mode. Valid values: proxy, flow.
    ngfwMode String
    Ngfw-Mode. Valid values: profile-based, policy-based.
    sslSshProfile String
    Ssl-Ssh-Profile.
    centralNat string
    Central-Nat. Valid values: disable, enable.
    consolidatedFirewallMode string
    Consolidated-Firewall-Mode. Valid values: disable, enable.
    fwpolicy6ImplicitLog string
    Fwpolicy6-Implicit-Log. Valid values: disable, enable.
    fwpolicyImplicitLog string
    Fwpolicy-Implicit-Log. Valid values: disable, enable.
    inspectionMode string
    Inspection-Mode. Valid values: proxy, flow.
    ngfwMode string
    Ngfw-Mode. Valid values: profile-based, policy-based.
    sslSshProfile string
    Ssl-Ssh-Profile.
    central_nat str
    Central-Nat. Valid values: disable, enable.
    consolidated_firewall_mode str
    Consolidated-Firewall-Mode. Valid values: disable, enable.
    fwpolicy6_implicit_log str
    Fwpolicy6-Implicit-Log. Valid values: disable, enable.
    fwpolicy_implicit_log str
    Fwpolicy-Implicit-Log. Valid values: disable, enable.
    inspection_mode str
    Inspection-Mode. Valid values: proxy, flow.
    ngfw_mode str
    Ngfw-Mode. Valid values: profile-based, policy-based.
    ssl_ssh_profile str
    Ssl-Ssh-Profile.
    centralNat String
    Central-Nat. Valid values: disable, enable.
    consolidatedFirewallMode String
    Consolidated-Firewall-Mode. Valid values: disable, enable.
    fwpolicy6ImplicitLog String
    Fwpolicy6-Implicit-Log. Valid values: disable, enable.
    fwpolicyImplicitLog String
    Fwpolicy-Implicit-Log. Valid values: disable, enable.
    inspectionMode String
    Inspection-Mode. Valid values: proxy, flow.
    ngfwMode String
    Ngfw-Mode. Valid values: profile-based, policy-based.
    sslSshProfile String
    Ssl-Ssh-Profile.

    PackagesPkgPackagesettings, PackagesPkgPackagesettingsArgs

    CentralNat string
    Central-Nat. Valid values: disable, enable.
    ConsolidatedFirewallMode string
    Consolidated-Firewall-Mode. Valid values: disable, enable.
    Fwpolicy6ImplicitLog string
    Fwpolicy6-Implicit-Log. Valid values: disable, enable.
    FwpolicyImplicitLog string
    Fwpolicy-Implicit-Log. Valid values: disable, enable.
    InspectionMode string
    Inspection-Mode. Valid values: proxy, flow.
    NgfwMode string
    Ngfw-Mode. Valid values: profile-based, policy-based.
    PolicyOffloadLevel string
    Policy-Offload-Level. Valid values: disable, default, dos-offload, full-offload.
    SslSshProfile string
    Ssl-Ssh-Profile.
    CentralNat string
    Central-Nat. Valid values: disable, enable.
    ConsolidatedFirewallMode string
    Consolidated-Firewall-Mode. Valid values: disable, enable.
    Fwpolicy6ImplicitLog string
    Fwpolicy6-Implicit-Log. Valid values: disable, enable.
    FwpolicyImplicitLog string
    Fwpolicy-Implicit-Log. Valid values: disable, enable.
    InspectionMode string
    Inspection-Mode. Valid values: proxy, flow.
    NgfwMode string
    Ngfw-Mode. Valid values: profile-based, policy-based.
    PolicyOffloadLevel string
    Policy-Offload-Level. Valid values: disable, default, dos-offload, full-offload.
    SslSshProfile string
    Ssl-Ssh-Profile.
    centralNat String
    Central-Nat. Valid values: disable, enable.
    consolidatedFirewallMode String
    Consolidated-Firewall-Mode. Valid values: disable, enable.
    fwpolicy6ImplicitLog String
    Fwpolicy6-Implicit-Log. Valid values: disable, enable.
    fwpolicyImplicitLog String
    Fwpolicy-Implicit-Log. Valid values: disable, enable.
    inspectionMode String
    Inspection-Mode. Valid values: proxy, flow.
    ngfwMode String
    Ngfw-Mode. Valid values: profile-based, policy-based.
    policyOffloadLevel String
    Policy-Offload-Level. Valid values: disable, default, dos-offload, full-offload.
    sslSshProfile String
    Ssl-Ssh-Profile.
    centralNat string
    Central-Nat. Valid values: disable, enable.
    consolidatedFirewallMode string
    Consolidated-Firewall-Mode. Valid values: disable, enable.
    fwpolicy6ImplicitLog string
    Fwpolicy6-Implicit-Log. Valid values: disable, enable.
    fwpolicyImplicitLog string
    Fwpolicy-Implicit-Log. Valid values: disable, enable.
    inspectionMode string
    Inspection-Mode. Valid values: proxy, flow.
    ngfwMode string
    Ngfw-Mode. Valid values: profile-based, policy-based.
    policyOffloadLevel string
    Policy-Offload-Level. Valid values: disable, default, dos-offload, full-offload.
    sslSshProfile string
    Ssl-Ssh-Profile.
    central_nat str
    Central-Nat. Valid values: disable, enable.
    consolidated_firewall_mode str
    Consolidated-Firewall-Mode. Valid values: disable, enable.
    fwpolicy6_implicit_log str
    Fwpolicy6-Implicit-Log. Valid values: disable, enable.
    fwpolicy_implicit_log str
    Fwpolicy-Implicit-Log. Valid values: disable, enable.
    inspection_mode str
    Inspection-Mode. Valid values: proxy, flow.
    ngfw_mode str
    Ngfw-Mode. Valid values: profile-based, policy-based.
    policy_offload_level str
    Policy-Offload-Level. Valid values: disable, default, dos-offload, full-offload.
    ssl_ssh_profile str
    Ssl-Ssh-Profile.
    centralNat String
    Central-Nat. Valid values: disable, enable.
    consolidatedFirewallMode String
    Consolidated-Firewall-Mode. Valid values: disable, enable.
    fwpolicy6ImplicitLog String
    Fwpolicy6-Implicit-Log. Valid values: disable, enable.
    fwpolicyImplicitLog String
    Fwpolicy-Implicit-Log. Valid values: disable, enable.
    inspectionMode String
    Inspection-Mode. Valid values: proxy, flow.
    ngfwMode String
    Ngfw-Mode. Valid values: profile-based, policy-based.
    policyOffloadLevel String
    Policy-Offload-Level. Valid values: disable, default, dos-offload, full-offload.
    sslSshProfile String
    Ssl-Ssh-Profile.

    PackagesPkgScopemember, PackagesPkgScopememberArgs

    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.

    Import

    Packages Pkg can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/packagesPkg:PackagesPkg labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

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

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

    Package Details

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