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

fortimanager.PackagesUserNacpolicy

Explore with Pulumi AI

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

    Configure NAC policy matching pattern to identify matching NAC devices.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.PackagesUserNacpolicy("trname", {
        category: "device",
        description: "This is a Terraform example",
        pkg: "default",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.PackagesUserNacpolicy("trname",
        category="device",
        description="This is a Terraform example",
        pkg="default")
    
    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.NewPackagesUserNacpolicy(ctx, "trname", &fortimanager.PackagesUserNacpolicyArgs{
    			Category:    pulumi.String("device"),
    			Description: pulumi.String("This is a Terraform example"),
    			Pkg:         pulumi.String("default"),
    		})
    		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.PackagesUserNacpolicy("trname", new()
        {
            Category = "device",
            Description = "This is a Terraform example",
            Pkg = "default",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.PackagesUserNacpolicy;
    import com.pulumi.fortimanager.PackagesUserNacpolicyArgs;
    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 PackagesUserNacpolicy("trname", PackagesUserNacpolicyArgs.builder()
                .category("device")
                .description("This is a Terraform example")
                .pkg("default")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:PackagesUserNacpolicy
        properties:
          category: device
          description: This is a Terraform example
          pkg: default
    

    Create PackagesUserNacpolicy Resource

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

    Constructor syntax

    new PackagesUserNacpolicy(name: string, args: PackagesUserNacpolicyArgs, opts?: CustomResourceOptions);
    @overload
    def PackagesUserNacpolicy(resource_name: str,
                              args: PackagesUserNacpolicyArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def PackagesUserNacpolicy(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              pkg: Optional[str] = None,
                              os: Optional[str] = None,
                              ems_tag: Optional[str] = None,
                              category: Optional[str] = None,
                              family: Optional[str] = None,
                              firewall_addresses: Optional[Sequence[str]] = None,
                              fortivoice_tags: Optional[Sequence[str]] = None,
                              host: Optional[str] = None,
                              hw_vendor: Optional[str] = None,
                              hw_version: Optional[str] = None,
                              mac: Optional[str] = None,
                              match_period: Optional[float] = None,
                              match_type: Optional[str] = None,
                              name: Optional[str] = None,
                              adom: Optional[str] = None,
                              user_group: Optional[str] = None,
                              description: Optional[str] = None,
                              pkg_folder_path: Optional[str] = None,
                              scopetype: Optional[str] = None,
                              severities: Optional[Sequence[float]] = None,
                              src: Optional[str] = None,
                              ssid_policy: Optional[str] = None,
                              status: Optional[str] = None,
                              sw_version: Optional[str] = None,
                              switch_fortilinks: Optional[Sequence[str]] = None,
                              switch_groups: Optional[Sequence[str]] = None,
                              switch_mac_policies: Optional[Sequence[str]] = None,
                              switch_scopes: Optional[Sequence[str]] = None,
                              type: Optional[str] = None,
                              user: Optional[str] = None,
                              packages_user_nacpolicy_id: Optional[str] = None)
    func NewPackagesUserNacpolicy(ctx *Context, name string, args PackagesUserNacpolicyArgs, opts ...ResourceOption) (*PackagesUserNacpolicy, error)
    public PackagesUserNacpolicy(string name, PackagesUserNacpolicyArgs args, CustomResourceOptions? opts = null)
    public PackagesUserNacpolicy(String name, PackagesUserNacpolicyArgs args)
    public PackagesUserNacpolicy(String name, PackagesUserNacpolicyArgs args, CustomResourceOptions options)
    
    type: fortimanager:PackagesUserNacpolicy
    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 PackagesUserNacpolicyArgs
    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 PackagesUserNacpolicyArgs
    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 PackagesUserNacpolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PackagesUserNacpolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PackagesUserNacpolicyArgs
    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 packagesUserNacpolicyResource = new Fortimanager.PackagesUserNacpolicy("packagesUserNacpolicyResource", new()
    {
        Pkg = "string",
        Os = "string",
        EmsTag = "string",
        Category = "string",
        Family = "string",
        FirewallAddresses = new[]
        {
            "string",
        },
        FortivoiceTags = new[]
        {
            "string",
        },
        Host = "string",
        HwVendor = "string",
        HwVersion = "string",
        Mac = "string",
        MatchPeriod = 0,
        MatchType = "string",
        Name = "string",
        Adom = "string",
        UserGroup = "string",
        Description = "string",
        PkgFolderPath = "string",
        Scopetype = "string",
        Severities = new[]
        {
            0,
        },
        Src = "string",
        SsidPolicy = "string",
        Status = "string",
        SwVersion = "string",
        SwitchFortilinks = new[]
        {
            "string",
        },
        SwitchGroups = new[]
        {
            "string",
        },
        SwitchMacPolicies = new[]
        {
            "string",
        },
        SwitchScopes = new[]
        {
            "string",
        },
        Type = "string",
        User = "string",
        PackagesUserNacpolicyId = "string",
    });
    
    example, err := fortimanager.NewPackagesUserNacpolicy(ctx, "packagesUserNacpolicyResource", &fortimanager.PackagesUserNacpolicyArgs{
    Pkg: pulumi.String("string"),
    Os: pulumi.String("string"),
    EmsTag: pulumi.String("string"),
    Category: pulumi.String("string"),
    Family: pulumi.String("string"),
    FirewallAddresses: pulumi.StringArray{
    pulumi.String("string"),
    },
    FortivoiceTags: pulumi.StringArray{
    pulumi.String("string"),
    },
    Host: pulumi.String("string"),
    HwVendor: pulumi.String("string"),
    HwVersion: pulumi.String("string"),
    Mac: pulumi.String("string"),
    MatchPeriod: pulumi.Float64(0),
    MatchType: pulumi.String("string"),
    Name: pulumi.String("string"),
    Adom: pulumi.String("string"),
    UserGroup: pulumi.String("string"),
    Description: pulumi.String("string"),
    PkgFolderPath: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Severities: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    Src: pulumi.String("string"),
    SsidPolicy: pulumi.String("string"),
    Status: pulumi.String("string"),
    SwVersion: pulumi.String("string"),
    SwitchFortilinks: pulumi.StringArray{
    pulumi.String("string"),
    },
    SwitchGroups: pulumi.StringArray{
    pulumi.String("string"),
    },
    SwitchMacPolicies: pulumi.StringArray{
    pulumi.String("string"),
    },
    SwitchScopes: pulumi.StringArray{
    pulumi.String("string"),
    },
    Type: pulumi.String("string"),
    User: pulumi.String("string"),
    PackagesUserNacpolicyId: pulumi.String("string"),
    })
    
    var packagesUserNacpolicyResource = new PackagesUserNacpolicy("packagesUserNacpolicyResource", PackagesUserNacpolicyArgs.builder()
        .pkg("string")
        .os("string")
        .emsTag("string")
        .category("string")
        .family("string")
        .firewallAddresses("string")
        .fortivoiceTags("string")
        .host("string")
        .hwVendor("string")
        .hwVersion("string")
        .mac("string")
        .matchPeriod(0)
        .matchType("string")
        .name("string")
        .adom("string")
        .userGroup("string")
        .description("string")
        .pkgFolderPath("string")
        .scopetype("string")
        .severities(0)
        .src("string")
        .ssidPolicy("string")
        .status("string")
        .swVersion("string")
        .switchFortilinks("string")
        .switchGroups("string")
        .switchMacPolicies("string")
        .switchScopes("string")
        .type("string")
        .user("string")
        .packagesUserNacpolicyId("string")
        .build());
    
    packages_user_nacpolicy_resource = fortimanager.PackagesUserNacpolicy("packagesUserNacpolicyResource",
        pkg="string",
        os="string",
        ems_tag="string",
        category="string",
        family="string",
        firewall_addresses=["string"],
        fortivoice_tags=["string"],
        host="string",
        hw_vendor="string",
        hw_version="string",
        mac="string",
        match_period=0,
        match_type="string",
        name="string",
        adom="string",
        user_group="string",
        description="string",
        pkg_folder_path="string",
        scopetype="string",
        severities=[0],
        src="string",
        ssid_policy="string",
        status="string",
        sw_version="string",
        switch_fortilinks=["string"],
        switch_groups=["string"],
        switch_mac_policies=["string"],
        switch_scopes=["string"],
        type="string",
        user="string",
        packages_user_nacpolicy_id="string")
    
    const packagesUserNacpolicyResource = new fortimanager.PackagesUserNacpolicy("packagesUserNacpolicyResource", {
        pkg: "string",
        os: "string",
        emsTag: "string",
        category: "string",
        family: "string",
        firewallAddresses: ["string"],
        fortivoiceTags: ["string"],
        host: "string",
        hwVendor: "string",
        hwVersion: "string",
        mac: "string",
        matchPeriod: 0,
        matchType: "string",
        name: "string",
        adom: "string",
        userGroup: "string",
        description: "string",
        pkgFolderPath: "string",
        scopetype: "string",
        severities: [0],
        src: "string",
        ssidPolicy: "string",
        status: "string",
        swVersion: "string",
        switchFortilinks: ["string"],
        switchGroups: ["string"],
        switchMacPolicies: ["string"],
        switchScopes: ["string"],
        type: "string",
        user: "string",
        packagesUserNacpolicyId: "string",
    });
    
    type: fortimanager:PackagesUserNacpolicy
    properties:
        adom: string
        category: string
        description: string
        emsTag: string
        family: string
        firewallAddresses:
            - string
        fortivoiceTags:
            - string
        host: string
        hwVendor: string
        hwVersion: string
        mac: string
        matchPeriod: 0
        matchType: string
        name: string
        os: string
        packagesUserNacpolicyId: string
        pkg: string
        pkgFolderPath: string
        scopetype: string
        severities:
            - 0
        src: string
        ssidPolicy: string
        status: string
        swVersion: string
        switchFortilinks:
            - string
        switchGroups:
            - string
        switchMacPolicies:
            - string
        switchScopes:
            - string
        type: string
        user: string
        userGroup: string
    

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

    Pkg string
    Package.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Category string
    Category of NAC policy. Valid values: device, firewall-user, ems-tag.
    Description string
    Description for the NAC policy matching pattern.
    EmsTag string
    NAC policy matching EMS tag.
    Family string
    NAC policy matching family.
    FirewallAddresses List<string>
    Dynamic firewall address to associate MAC which match this policy.
    FortivoiceTags List<string>
    NAC policy matching FortiVoice tag.
    Host string
    NAC policy matching host.
    HwVendor string
    NAC policy matching hardware vendor.
    HwVersion string
    NAC policy matching hardware version.
    Mac string
    NAC policy matching MAC address.
    MatchPeriod double
    Number of days the matched devices will be retained (0 - always retain)
    MatchType string
    Match and retain the devices based on the type. Valid values: dynamic, override.
    Name string
    NAC policy name.
    Os string
    NAC policy matching operating system.
    PackagesUserNacpolicyId string
    an identifier for the resource with format {{name}}.
    PkgFolderPath string
    Pkg Folder Path.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Severities List<double>
    NAC policy matching devices vulnerability severity lists.
    Src string
    NAC policy matching source.
    SsidPolicy string
    SSID policy to be applied on the matched NAC policy.
    Status string
    Enable/disable NAC policy. Valid values: disable, enable.
    SwVersion string
    NAC policy matching software version.
    SwitchFortilinks List<string>
    Support meta variable FortiLink interface for which this NAC policy belongs to.
    SwitchGroups List<string>
    Support meta variable List of managed FortiSwitch groups on which NAC policy can be applied.
    SwitchMacPolicies List<string>
    Switch MAC policy action to be applied on the matched NAC policy.
    SwitchScopes List<string>
    List of managed FortiSwitches on which NAC policy can be applied.
    Type string
    NAC policy matching type.
    User string
    NAC policy matching user.
    UserGroup string
    NAC policy matching user group.
    Pkg string
    Package.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Category string
    Category of NAC policy. Valid values: device, firewall-user, ems-tag.
    Description string
    Description for the NAC policy matching pattern.
    EmsTag string
    NAC policy matching EMS tag.
    Family string
    NAC policy matching family.
    FirewallAddresses []string
    Dynamic firewall address to associate MAC which match this policy.
    FortivoiceTags []string
    NAC policy matching FortiVoice tag.
    Host string
    NAC policy matching host.
    HwVendor string
    NAC policy matching hardware vendor.
    HwVersion string
    NAC policy matching hardware version.
    Mac string
    NAC policy matching MAC address.
    MatchPeriod float64
    Number of days the matched devices will be retained (0 - always retain)
    MatchType string
    Match and retain the devices based on the type. Valid values: dynamic, override.
    Name string
    NAC policy name.
    Os string
    NAC policy matching operating system.
    PackagesUserNacpolicyId string
    an identifier for the resource with format {{name}}.
    PkgFolderPath string
    Pkg Folder Path.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Severities []float64
    NAC policy matching devices vulnerability severity lists.
    Src string
    NAC policy matching source.
    SsidPolicy string
    SSID policy to be applied on the matched NAC policy.
    Status string
    Enable/disable NAC policy. Valid values: disable, enable.
    SwVersion string
    NAC policy matching software version.
    SwitchFortilinks []string
    Support meta variable FortiLink interface for which this NAC policy belongs to.
    SwitchGroups []string
    Support meta variable List of managed FortiSwitch groups on which NAC policy can be applied.
    SwitchMacPolicies []string
    Switch MAC policy action to be applied on the matched NAC policy.
    SwitchScopes []string
    List of managed FortiSwitches on which NAC policy can be applied.
    Type string
    NAC policy matching type.
    User string
    NAC policy matching user.
    UserGroup string
    NAC policy matching user group.
    pkg String
    Package.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category String
    Category of NAC policy. Valid values: device, firewall-user, ems-tag.
    description String
    Description for the NAC policy matching pattern.
    emsTag String
    NAC policy matching EMS tag.
    family String
    NAC policy matching family.
    firewallAddresses List<String>
    Dynamic firewall address to associate MAC which match this policy.
    fortivoiceTags List<String>
    NAC policy matching FortiVoice tag.
    host String
    NAC policy matching host.
    hwVendor String
    NAC policy matching hardware vendor.
    hwVersion String
    NAC policy matching hardware version.
    mac String
    NAC policy matching MAC address.
    matchPeriod Double
    Number of days the matched devices will be retained (0 - always retain)
    matchType String
    Match and retain the devices based on the type. Valid values: dynamic, override.
    name String
    NAC policy name.
    os String
    NAC policy matching operating system.
    packagesUserNacpolicyId String
    an identifier for the resource with format {{name}}.
    pkgFolderPath String
    Pkg Folder Path.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severities List<Double>
    NAC policy matching devices vulnerability severity lists.
    src String
    NAC policy matching source.
    ssidPolicy String
    SSID policy to be applied on the matched NAC policy.
    status String
    Enable/disable NAC policy. Valid values: disable, enable.
    swVersion String
    NAC policy matching software version.
    switchFortilinks List<String>
    Support meta variable FortiLink interface for which this NAC policy belongs to.
    switchGroups List<String>
    Support meta variable List of managed FortiSwitch groups on which NAC policy can be applied.
    switchMacPolicies List<String>
    Switch MAC policy action to be applied on the matched NAC policy.
    switchScopes List<String>
    List of managed FortiSwitches on which NAC policy can be applied.
    type String
    NAC policy matching type.
    user String
    NAC policy matching user.
    userGroup String
    NAC policy matching user group.
    pkg string
    Package.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category string
    Category of NAC policy. Valid values: device, firewall-user, ems-tag.
    description string
    Description for the NAC policy matching pattern.
    emsTag string
    NAC policy matching EMS tag.
    family string
    NAC policy matching family.
    firewallAddresses string[]
    Dynamic firewall address to associate MAC which match this policy.
    fortivoiceTags string[]
    NAC policy matching FortiVoice tag.
    host string
    NAC policy matching host.
    hwVendor string
    NAC policy matching hardware vendor.
    hwVersion string
    NAC policy matching hardware version.
    mac string
    NAC policy matching MAC address.
    matchPeriod number
    Number of days the matched devices will be retained (0 - always retain)
    matchType string
    Match and retain the devices based on the type. Valid values: dynamic, override.
    name string
    NAC policy name.
    os string
    NAC policy matching operating system.
    packagesUserNacpolicyId string
    an identifier for the resource with format {{name}}.
    pkgFolderPath string
    Pkg Folder Path.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severities number[]
    NAC policy matching devices vulnerability severity lists.
    src string
    NAC policy matching source.
    ssidPolicy string
    SSID policy to be applied on the matched NAC policy.
    status string
    Enable/disable NAC policy. Valid values: disable, enable.
    swVersion string
    NAC policy matching software version.
    switchFortilinks string[]
    Support meta variable FortiLink interface for which this NAC policy belongs to.
    switchGroups string[]
    Support meta variable List of managed FortiSwitch groups on which NAC policy can be applied.
    switchMacPolicies string[]
    Switch MAC policy action to be applied on the matched NAC policy.
    switchScopes string[]
    List of managed FortiSwitches on which NAC policy can be applied.
    type string
    NAC policy matching type.
    user string
    NAC policy matching user.
    userGroup string
    NAC policy matching user group.
    pkg str
    Package.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category str
    Category of NAC policy. Valid values: device, firewall-user, ems-tag.
    description str
    Description for the NAC policy matching pattern.
    ems_tag str
    NAC policy matching EMS tag.
    family str
    NAC policy matching family.
    firewall_addresses Sequence[str]
    Dynamic firewall address to associate MAC which match this policy.
    fortivoice_tags Sequence[str]
    NAC policy matching FortiVoice tag.
    host str
    NAC policy matching host.
    hw_vendor str
    NAC policy matching hardware vendor.
    hw_version str
    NAC policy matching hardware version.
    mac str
    NAC policy matching MAC address.
    match_period float
    Number of days the matched devices will be retained (0 - always retain)
    match_type str
    Match and retain the devices based on the type. Valid values: dynamic, override.
    name str
    NAC policy name.
    os str
    NAC policy matching operating system.
    packages_user_nacpolicy_id str
    an identifier for the resource with format {{name}}.
    pkg_folder_path str
    Pkg Folder Path.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severities Sequence[float]
    NAC policy matching devices vulnerability severity lists.
    src str
    NAC policy matching source.
    ssid_policy str
    SSID policy to be applied on the matched NAC policy.
    status str
    Enable/disable NAC policy. Valid values: disable, enable.
    sw_version str
    NAC policy matching software version.
    switch_fortilinks Sequence[str]
    Support meta variable FortiLink interface for which this NAC policy belongs to.
    switch_groups Sequence[str]
    Support meta variable List of managed FortiSwitch groups on which NAC policy can be applied.
    switch_mac_policies Sequence[str]
    Switch MAC policy action to be applied on the matched NAC policy.
    switch_scopes Sequence[str]
    List of managed FortiSwitches on which NAC policy can be applied.
    type str
    NAC policy matching type.
    user str
    NAC policy matching user.
    user_group str
    NAC policy matching user group.
    pkg String
    Package.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category String
    Category of NAC policy. Valid values: device, firewall-user, ems-tag.
    description String
    Description for the NAC policy matching pattern.
    emsTag String
    NAC policy matching EMS tag.
    family String
    NAC policy matching family.
    firewallAddresses List<String>
    Dynamic firewall address to associate MAC which match this policy.
    fortivoiceTags List<String>
    NAC policy matching FortiVoice tag.
    host String
    NAC policy matching host.
    hwVendor String
    NAC policy matching hardware vendor.
    hwVersion String
    NAC policy matching hardware version.
    mac String
    NAC policy matching MAC address.
    matchPeriod Number
    Number of days the matched devices will be retained (0 - always retain)
    matchType String
    Match and retain the devices based on the type. Valid values: dynamic, override.
    name String
    NAC policy name.
    os String
    NAC policy matching operating system.
    packagesUserNacpolicyId String
    an identifier for the resource with format {{name}}.
    pkgFolderPath String
    Pkg Folder Path.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severities List<Number>
    NAC policy matching devices vulnerability severity lists.
    src String
    NAC policy matching source.
    ssidPolicy String
    SSID policy to be applied on the matched NAC policy.
    status String
    Enable/disable NAC policy. Valid values: disable, enable.
    swVersion String
    NAC policy matching software version.
    switchFortilinks List<String>
    Support meta variable FortiLink interface for which this NAC policy belongs to.
    switchGroups List<String>
    Support meta variable List of managed FortiSwitch groups on which NAC policy can be applied.
    switchMacPolicies List<String>
    Switch MAC policy action to be applied on the matched NAC policy.
    switchScopes List<String>
    List of managed FortiSwitches on which NAC policy can be applied.
    type String
    NAC policy matching type.
    user String
    NAC policy matching user.
    userGroup String
    NAC policy matching user group.

    Outputs

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

    Get an existing PackagesUserNacpolicy 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?: PackagesUserNacpolicyState, opts?: CustomResourceOptions): PackagesUserNacpolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            category: Optional[str] = None,
            description: Optional[str] = None,
            ems_tag: Optional[str] = None,
            family: Optional[str] = None,
            firewall_addresses: Optional[Sequence[str]] = None,
            fortivoice_tags: Optional[Sequence[str]] = None,
            host: Optional[str] = None,
            hw_vendor: Optional[str] = None,
            hw_version: Optional[str] = None,
            mac: Optional[str] = None,
            match_period: Optional[float] = None,
            match_type: Optional[str] = None,
            name: Optional[str] = None,
            os: Optional[str] = None,
            packages_user_nacpolicy_id: Optional[str] = None,
            pkg: Optional[str] = None,
            pkg_folder_path: Optional[str] = None,
            scopetype: Optional[str] = None,
            severities: Optional[Sequence[float]] = None,
            src: Optional[str] = None,
            ssid_policy: Optional[str] = None,
            status: Optional[str] = None,
            sw_version: Optional[str] = None,
            switch_fortilinks: Optional[Sequence[str]] = None,
            switch_groups: Optional[Sequence[str]] = None,
            switch_mac_policies: Optional[Sequence[str]] = None,
            switch_scopes: Optional[Sequence[str]] = None,
            type: Optional[str] = None,
            user: Optional[str] = None,
            user_group: Optional[str] = None) -> PackagesUserNacpolicy
    func GetPackagesUserNacpolicy(ctx *Context, name string, id IDInput, state *PackagesUserNacpolicyState, opts ...ResourceOption) (*PackagesUserNacpolicy, error)
    public static PackagesUserNacpolicy Get(string name, Input<string> id, PackagesUserNacpolicyState? state, CustomResourceOptions? opts = null)
    public static PackagesUserNacpolicy get(String name, Output<String> id, PackagesUserNacpolicyState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:PackagesUserNacpolicy    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.
    Category string
    Category of NAC policy. Valid values: device, firewall-user, ems-tag.
    Description string
    Description for the NAC policy matching pattern.
    EmsTag string
    NAC policy matching EMS tag.
    Family string
    NAC policy matching family.
    FirewallAddresses List<string>
    Dynamic firewall address to associate MAC which match this policy.
    FortivoiceTags List<string>
    NAC policy matching FortiVoice tag.
    Host string
    NAC policy matching host.
    HwVendor string
    NAC policy matching hardware vendor.
    HwVersion string
    NAC policy matching hardware version.
    Mac string
    NAC policy matching MAC address.
    MatchPeriod double
    Number of days the matched devices will be retained (0 - always retain)
    MatchType string
    Match and retain the devices based on the type. Valid values: dynamic, override.
    Name string
    NAC policy name.
    Os string
    NAC policy matching operating system.
    PackagesUserNacpolicyId string
    an identifier for the resource with format {{name}}.
    Pkg string
    Package.
    PkgFolderPath string
    Pkg Folder Path.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Severities List<double>
    NAC policy matching devices vulnerability severity lists.
    Src string
    NAC policy matching source.
    SsidPolicy string
    SSID policy to be applied on the matched NAC policy.
    Status string
    Enable/disable NAC policy. Valid values: disable, enable.
    SwVersion string
    NAC policy matching software version.
    SwitchFortilinks List<string>
    Support meta variable FortiLink interface for which this NAC policy belongs to.
    SwitchGroups List<string>
    Support meta variable List of managed FortiSwitch groups on which NAC policy can be applied.
    SwitchMacPolicies List<string>
    Switch MAC policy action to be applied on the matched NAC policy.
    SwitchScopes List<string>
    List of managed FortiSwitches on which NAC policy can be applied.
    Type string
    NAC policy matching type.
    User string
    NAC policy matching user.
    UserGroup string
    NAC policy matching user group.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Category string
    Category of NAC policy. Valid values: device, firewall-user, ems-tag.
    Description string
    Description for the NAC policy matching pattern.
    EmsTag string
    NAC policy matching EMS tag.
    Family string
    NAC policy matching family.
    FirewallAddresses []string
    Dynamic firewall address to associate MAC which match this policy.
    FortivoiceTags []string
    NAC policy matching FortiVoice tag.
    Host string
    NAC policy matching host.
    HwVendor string
    NAC policy matching hardware vendor.
    HwVersion string
    NAC policy matching hardware version.
    Mac string
    NAC policy matching MAC address.
    MatchPeriod float64
    Number of days the matched devices will be retained (0 - always retain)
    MatchType string
    Match and retain the devices based on the type. Valid values: dynamic, override.
    Name string
    NAC policy name.
    Os string
    NAC policy matching operating system.
    PackagesUserNacpolicyId string
    an identifier for the resource with format {{name}}.
    Pkg string
    Package.
    PkgFolderPath string
    Pkg Folder Path.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Severities []float64
    NAC policy matching devices vulnerability severity lists.
    Src string
    NAC policy matching source.
    SsidPolicy string
    SSID policy to be applied on the matched NAC policy.
    Status string
    Enable/disable NAC policy. Valid values: disable, enable.
    SwVersion string
    NAC policy matching software version.
    SwitchFortilinks []string
    Support meta variable FortiLink interface for which this NAC policy belongs to.
    SwitchGroups []string
    Support meta variable List of managed FortiSwitch groups on which NAC policy can be applied.
    SwitchMacPolicies []string
    Switch MAC policy action to be applied on the matched NAC policy.
    SwitchScopes []string
    List of managed FortiSwitches on which NAC policy can be applied.
    Type string
    NAC policy matching type.
    User string
    NAC policy matching user.
    UserGroup string
    NAC policy matching user group.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category String
    Category of NAC policy. Valid values: device, firewall-user, ems-tag.
    description String
    Description for the NAC policy matching pattern.
    emsTag String
    NAC policy matching EMS tag.
    family String
    NAC policy matching family.
    firewallAddresses List<String>
    Dynamic firewall address to associate MAC which match this policy.
    fortivoiceTags List<String>
    NAC policy matching FortiVoice tag.
    host String
    NAC policy matching host.
    hwVendor String
    NAC policy matching hardware vendor.
    hwVersion String
    NAC policy matching hardware version.
    mac String
    NAC policy matching MAC address.
    matchPeriod Double
    Number of days the matched devices will be retained (0 - always retain)
    matchType String
    Match and retain the devices based on the type. Valid values: dynamic, override.
    name String
    NAC policy name.
    os String
    NAC policy matching operating system.
    packagesUserNacpolicyId String
    an identifier for the resource with format {{name}}.
    pkg String
    Package.
    pkgFolderPath String
    Pkg Folder Path.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severities List<Double>
    NAC policy matching devices vulnerability severity lists.
    src String
    NAC policy matching source.
    ssidPolicy String
    SSID policy to be applied on the matched NAC policy.
    status String
    Enable/disable NAC policy. Valid values: disable, enable.
    swVersion String
    NAC policy matching software version.
    switchFortilinks List<String>
    Support meta variable FortiLink interface for which this NAC policy belongs to.
    switchGroups List<String>
    Support meta variable List of managed FortiSwitch groups on which NAC policy can be applied.
    switchMacPolicies List<String>
    Switch MAC policy action to be applied on the matched NAC policy.
    switchScopes List<String>
    List of managed FortiSwitches on which NAC policy can be applied.
    type String
    NAC policy matching type.
    user String
    NAC policy matching user.
    userGroup String
    NAC policy matching user group.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category string
    Category of NAC policy. Valid values: device, firewall-user, ems-tag.
    description string
    Description for the NAC policy matching pattern.
    emsTag string
    NAC policy matching EMS tag.
    family string
    NAC policy matching family.
    firewallAddresses string[]
    Dynamic firewall address to associate MAC which match this policy.
    fortivoiceTags string[]
    NAC policy matching FortiVoice tag.
    host string
    NAC policy matching host.
    hwVendor string
    NAC policy matching hardware vendor.
    hwVersion string
    NAC policy matching hardware version.
    mac string
    NAC policy matching MAC address.
    matchPeriod number
    Number of days the matched devices will be retained (0 - always retain)
    matchType string
    Match and retain the devices based on the type. Valid values: dynamic, override.
    name string
    NAC policy name.
    os string
    NAC policy matching operating system.
    packagesUserNacpolicyId string
    an identifier for the resource with format {{name}}.
    pkg string
    Package.
    pkgFolderPath string
    Pkg Folder Path.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severities number[]
    NAC policy matching devices vulnerability severity lists.
    src string
    NAC policy matching source.
    ssidPolicy string
    SSID policy to be applied on the matched NAC policy.
    status string
    Enable/disable NAC policy. Valid values: disable, enable.
    swVersion string
    NAC policy matching software version.
    switchFortilinks string[]
    Support meta variable FortiLink interface for which this NAC policy belongs to.
    switchGroups string[]
    Support meta variable List of managed FortiSwitch groups on which NAC policy can be applied.
    switchMacPolicies string[]
    Switch MAC policy action to be applied on the matched NAC policy.
    switchScopes string[]
    List of managed FortiSwitches on which NAC policy can be applied.
    type string
    NAC policy matching type.
    user string
    NAC policy matching user.
    userGroup string
    NAC policy matching user group.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category str
    Category of NAC policy. Valid values: device, firewall-user, ems-tag.
    description str
    Description for the NAC policy matching pattern.
    ems_tag str
    NAC policy matching EMS tag.
    family str
    NAC policy matching family.
    firewall_addresses Sequence[str]
    Dynamic firewall address to associate MAC which match this policy.
    fortivoice_tags Sequence[str]
    NAC policy matching FortiVoice tag.
    host str
    NAC policy matching host.
    hw_vendor str
    NAC policy matching hardware vendor.
    hw_version str
    NAC policy matching hardware version.
    mac str
    NAC policy matching MAC address.
    match_period float
    Number of days the matched devices will be retained (0 - always retain)
    match_type str
    Match and retain the devices based on the type. Valid values: dynamic, override.
    name str
    NAC policy name.
    os str
    NAC policy matching operating system.
    packages_user_nacpolicy_id str
    an identifier for the resource with format {{name}}.
    pkg str
    Package.
    pkg_folder_path str
    Pkg Folder Path.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severities Sequence[float]
    NAC policy matching devices vulnerability severity lists.
    src str
    NAC policy matching source.
    ssid_policy str
    SSID policy to be applied on the matched NAC policy.
    status str
    Enable/disable NAC policy. Valid values: disable, enable.
    sw_version str
    NAC policy matching software version.
    switch_fortilinks Sequence[str]
    Support meta variable FortiLink interface for which this NAC policy belongs to.
    switch_groups Sequence[str]
    Support meta variable List of managed FortiSwitch groups on which NAC policy can be applied.
    switch_mac_policies Sequence[str]
    Switch MAC policy action to be applied on the matched NAC policy.
    switch_scopes Sequence[str]
    List of managed FortiSwitches on which NAC policy can be applied.
    type str
    NAC policy matching type.
    user str
    NAC policy matching user.
    user_group str
    NAC policy matching user group.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category String
    Category of NAC policy. Valid values: device, firewall-user, ems-tag.
    description String
    Description for the NAC policy matching pattern.
    emsTag String
    NAC policy matching EMS tag.
    family String
    NAC policy matching family.
    firewallAddresses List<String>
    Dynamic firewall address to associate MAC which match this policy.
    fortivoiceTags List<String>
    NAC policy matching FortiVoice tag.
    host String
    NAC policy matching host.
    hwVendor String
    NAC policy matching hardware vendor.
    hwVersion String
    NAC policy matching hardware version.
    mac String
    NAC policy matching MAC address.
    matchPeriod Number
    Number of days the matched devices will be retained (0 - always retain)
    matchType String
    Match and retain the devices based on the type. Valid values: dynamic, override.
    name String
    NAC policy name.
    os String
    NAC policy matching operating system.
    packagesUserNacpolicyId String
    an identifier for the resource with format {{name}}.
    pkg String
    Package.
    pkgFolderPath String
    Pkg Folder Path.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    severities List<Number>
    NAC policy matching devices vulnerability severity lists.
    src String
    NAC policy matching source.
    ssidPolicy String
    SSID policy to be applied on the matched NAC policy.
    status String
    Enable/disable NAC policy. Valid values: disable, enable.
    swVersion String
    NAC policy matching software version.
    switchFortilinks List<String>
    Support meta variable FortiLink interface for which this NAC policy belongs to.
    switchGroups List<String>
    Support meta variable List of managed FortiSwitch groups on which NAC policy can be applied.
    switchMacPolicies List<String>
    Switch MAC policy action to be applied on the matched NAC policy.
    switchScopes List<String>
    List of managed FortiSwitches on which NAC policy can be applied.
    type String
    NAC policy matching type.
    user String
    NAC policy matching user.
    userGroup String
    NAC policy matching user group.

    Import

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

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/packagesUserNacpolicy:PackagesUserNacpolicy 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