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

fortimanager.PackagesFirewallPolicy64

Explore with Pulumi AI

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

    Configure IPv6 to IPv4 policies.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const labelname = new fortimanager.PackagesFirewallPolicy64("labelname", {
        action: "deny",
        dstaddrs: ["all"],
        dstintfs: ["any"],
        fixedport: "disable",
        ippool: "disable",
        logtraffic: "disable",
        logtrafficStart: "disable",
        permitAnyHost: "disable",
        pkg: "default",
        policyid: 1,
        schedule: "always",
        services: ["ALL"],
        srcaddrs: ["all"],
        srcintfs: ["any"],
        status: "enable",
        tcpMssReceiver: 0,
        tcpMssSender: 0,
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    labelname = fortimanager.PackagesFirewallPolicy64("labelname",
        action="deny",
        dstaddrs=["all"],
        dstintfs=["any"],
        fixedport="disable",
        ippool="disable",
        logtraffic="disable",
        logtraffic_start="disable",
        permit_any_host="disable",
        pkg="default",
        policyid=1,
        schedule="always",
        services=["ALL"],
        srcaddrs=["all"],
        srcintfs=["any"],
        status="enable",
        tcp_mss_receiver=0,
        tcp_mss_sender=0)
    
    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.NewPackagesFirewallPolicy64(ctx, "labelname", &fortimanager.PackagesFirewallPolicy64Args{
    			Action: pulumi.String("deny"),
    			Dstaddrs: pulumi.StringArray{
    				pulumi.String("all"),
    			},
    			Dstintfs: pulumi.StringArray{
    				pulumi.String("any"),
    			},
    			Fixedport:       pulumi.String("disable"),
    			Ippool:          pulumi.String("disable"),
    			Logtraffic:      pulumi.String("disable"),
    			LogtrafficStart: pulumi.String("disable"),
    			PermitAnyHost:   pulumi.String("disable"),
    			Pkg:             pulumi.String("default"),
    			Policyid:        pulumi.Float64(1),
    			Schedule:        pulumi.String("always"),
    			Services: pulumi.StringArray{
    				pulumi.String("ALL"),
    			},
    			Srcaddrs: pulumi.StringArray{
    				pulumi.String("all"),
    			},
    			Srcintfs: pulumi.StringArray{
    				pulumi.String("any"),
    			},
    			Status:         pulumi.String("enable"),
    			TcpMssReceiver: pulumi.Float64(0),
    			TcpMssSender:   pulumi.Float64(0),
    		})
    		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 labelname = new Fortimanager.PackagesFirewallPolicy64("labelname", new()
        {
            Action = "deny",
            Dstaddrs = new[]
            {
                "all",
            },
            Dstintfs = new[]
            {
                "any",
            },
            Fixedport = "disable",
            Ippool = "disable",
            Logtraffic = "disable",
            LogtrafficStart = "disable",
            PermitAnyHost = "disable",
            Pkg = "default",
            Policyid = 1,
            Schedule = "always",
            Services = new[]
            {
                "ALL",
            },
            Srcaddrs = new[]
            {
                "all",
            },
            Srcintfs = new[]
            {
                "any",
            },
            Status = "enable",
            TcpMssReceiver = 0,
            TcpMssSender = 0,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.PackagesFirewallPolicy64;
    import com.pulumi.fortimanager.PackagesFirewallPolicy64Args;
    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 labelname = new PackagesFirewallPolicy64("labelname", PackagesFirewallPolicy64Args.builder()
                .action("deny")
                .dstaddrs("all")
                .dstintfs("any")
                .fixedport("disable")
                .ippool("disable")
                .logtraffic("disable")
                .logtrafficStart("disable")
                .permitAnyHost("disable")
                .pkg("default")
                .policyid(1)
                .schedule("always")
                .services("ALL")
                .srcaddrs("all")
                .srcintfs("any")
                .status("enable")
                .tcpMssReceiver(0)
                .tcpMssSender(0)
                .build());
    
        }
    }
    
    resources:
      labelname:
        type: fortimanager:PackagesFirewallPolicy64
        properties:
          action: deny
          dstaddrs:
            - all
          dstintfs:
            - any
          fixedport: disable
          ippool: disable
          logtraffic: disable
          logtrafficStart: disable
          permitAnyHost: disable
          pkg: default
          policyid: 1
          schedule: always
          services:
            - ALL
          srcaddrs:
            - all
          srcintfs:
            - any
          status: enable
          tcpMssReceiver: 0
          tcpMssSender: 0
    

    Create PackagesFirewallPolicy64 Resource

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

    Constructor syntax

    new PackagesFirewallPolicy64(name: string, args: PackagesFirewallPolicy64Args, opts?: CustomResourceOptions);
    @overload
    def PackagesFirewallPolicy64(resource_name: str,
                                 args: PackagesFirewallPolicy64Args,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def PackagesFirewallPolicy64(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 pkg: Optional[str] = None,
                                 per_ip_shaper: Optional[str] = None,
                                 dstaddrs: Optional[Sequence[str]] = None,
                                 cgn_eim: Optional[str] = None,
                                 permit_any_host: Optional[str] = None,
                                 cgn_resource_quota: Optional[float] = None,
                                 cgn_session_quota: Optional[float] = None,
                                 comments: Optional[str] = None,
                                 adom: Optional[str] = None,
                                 dstintfs: Optional[Sequence[str]] = None,
                                 fixedport: Optional[str] = None,
                                 ippool: Optional[str] = None,
                                 logtraffic: Optional[str] = None,
                                 logtraffic_start: Optional[str] = None,
                                 pkg_folder_path: Optional[str] = None,
                                 packages_firewall_policy64_id: Optional[str] = None,
                                 action: Optional[str] = None,
                                 cgn_log_server_grp: Optional[str] = None,
                                 cgn_eif: Optional[str] = None,
                                 name: Optional[str] = None,
                                 policy_offload: Optional[str] = None,
                                 policyid: Optional[float] = None,
                                 poolnames: Optional[Sequence[str]] = None,
                                 schedule: Optional[str] = None,
                                 scopetype: Optional[str] = None,
                                 services: Optional[Sequence[str]] = None,
                                 srcaddrs: Optional[Sequence[str]] = None,
                                 srcintfs: Optional[Sequence[str]] = None,
                                 status: Optional[str] = None,
                                 tcp_mss_receiver: Optional[float] = None,
                                 tcp_mss_sender: Optional[float] = None,
                                 traffic_shaper: Optional[str] = None,
                                 traffic_shaper_reverse: Optional[str] = None,
                                 uuid: Optional[str] = None)
    func NewPackagesFirewallPolicy64(ctx *Context, name string, args PackagesFirewallPolicy64Args, opts ...ResourceOption) (*PackagesFirewallPolicy64, error)
    public PackagesFirewallPolicy64(string name, PackagesFirewallPolicy64Args args, CustomResourceOptions? opts = null)
    public PackagesFirewallPolicy64(String name, PackagesFirewallPolicy64Args args)
    public PackagesFirewallPolicy64(String name, PackagesFirewallPolicy64Args args, CustomResourceOptions options)
    
    type: fortimanager:PackagesFirewallPolicy64
    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 PackagesFirewallPolicy64Args
    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 PackagesFirewallPolicy64Args
    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 PackagesFirewallPolicy64Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PackagesFirewallPolicy64Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PackagesFirewallPolicy64Args
    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 packagesFirewallPolicy64Resource = new Fortimanager.PackagesFirewallPolicy64("packagesFirewallPolicy64Resource", new()
    {
        Pkg = "string",
        PerIpShaper = "string",
        Dstaddrs = new[]
        {
            "string",
        },
        CgnEim = "string",
        PermitAnyHost = "string",
        CgnResourceQuota = 0,
        CgnSessionQuota = 0,
        Comments = "string",
        Adom = "string",
        Dstintfs = new[]
        {
            "string",
        },
        Fixedport = "string",
        Ippool = "string",
        Logtraffic = "string",
        LogtrafficStart = "string",
        PkgFolderPath = "string",
        PackagesFirewallPolicy64Id = "string",
        Action = "string",
        CgnLogServerGrp = "string",
        CgnEif = "string",
        Name = "string",
        PolicyOffload = "string",
        Policyid = 0,
        Poolnames = new[]
        {
            "string",
        },
        Schedule = "string",
        Scopetype = "string",
        Services = new[]
        {
            "string",
        },
        Srcaddrs = new[]
        {
            "string",
        },
        Srcintfs = new[]
        {
            "string",
        },
        Status = "string",
        TcpMssReceiver = 0,
        TcpMssSender = 0,
        TrafficShaper = "string",
        TrafficShaperReverse = "string",
        Uuid = "string",
    });
    
    example, err := fortimanager.NewPackagesFirewallPolicy64(ctx, "packagesFirewallPolicy64Resource", &fortimanager.PackagesFirewallPolicy64Args{
    Pkg: pulumi.String("string"),
    PerIpShaper: pulumi.String("string"),
    Dstaddrs: pulumi.StringArray{
    pulumi.String("string"),
    },
    CgnEim: pulumi.String("string"),
    PermitAnyHost: pulumi.String("string"),
    CgnResourceQuota: pulumi.Float64(0),
    CgnSessionQuota: pulumi.Float64(0),
    Comments: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Dstintfs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Fixedport: pulumi.String("string"),
    Ippool: pulumi.String("string"),
    Logtraffic: pulumi.String("string"),
    LogtrafficStart: pulumi.String("string"),
    PkgFolderPath: pulumi.String("string"),
    PackagesFirewallPolicy64Id: pulumi.String("string"),
    Action: pulumi.String("string"),
    CgnLogServerGrp: pulumi.String("string"),
    CgnEif: pulumi.String("string"),
    Name: pulumi.String("string"),
    PolicyOffload: pulumi.String("string"),
    Policyid: pulumi.Float64(0),
    Poolnames: pulumi.StringArray{
    pulumi.String("string"),
    },
    Schedule: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Services: pulumi.StringArray{
    pulumi.String("string"),
    },
    Srcaddrs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Srcintfs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Status: pulumi.String("string"),
    TcpMssReceiver: pulumi.Float64(0),
    TcpMssSender: pulumi.Float64(0),
    TrafficShaper: pulumi.String("string"),
    TrafficShaperReverse: pulumi.String("string"),
    Uuid: pulumi.String("string"),
    })
    
    var packagesFirewallPolicy64Resource = new PackagesFirewallPolicy64("packagesFirewallPolicy64Resource", PackagesFirewallPolicy64Args.builder()
        .pkg("string")
        .perIpShaper("string")
        .dstaddrs("string")
        .cgnEim("string")
        .permitAnyHost("string")
        .cgnResourceQuota(0)
        .cgnSessionQuota(0)
        .comments("string")
        .adom("string")
        .dstintfs("string")
        .fixedport("string")
        .ippool("string")
        .logtraffic("string")
        .logtrafficStart("string")
        .pkgFolderPath("string")
        .packagesFirewallPolicy64Id("string")
        .action("string")
        .cgnLogServerGrp("string")
        .cgnEif("string")
        .name("string")
        .policyOffload("string")
        .policyid(0)
        .poolnames("string")
        .schedule("string")
        .scopetype("string")
        .services("string")
        .srcaddrs("string")
        .srcintfs("string")
        .status("string")
        .tcpMssReceiver(0)
        .tcpMssSender(0)
        .trafficShaper("string")
        .trafficShaperReverse("string")
        .uuid("string")
        .build());
    
    packages_firewall_policy64_resource = fortimanager.PackagesFirewallPolicy64("packagesFirewallPolicy64Resource",
        pkg="string",
        per_ip_shaper="string",
        dstaddrs=["string"],
        cgn_eim="string",
        permit_any_host="string",
        cgn_resource_quota=0,
        cgn_session_quota=0,
        comments="string",
        adom="string",
        dstintfs=["string"],
        fixedport="string",
        ippool="string",
        logtraffic="string",
        logtraffic_start="string",
        pkg_folder_path="string",
        packages_firewall_policy64_id="string",
        action="string",
        cgn_log_server_grp="string",
        cgn_eif="string",
        name="string",
        policy_offload="string",
        policyid=0,
        poolnames=["string"],
        schedule="string",
        scopetype="string",
        services=["string"],
        srcaddrs=["string"],
        srcintfs=["string"],
        status="string",
        tcp_mss_receiver=0,
        tcp_mss_sender=0,
        traffic_shaper="string",
        traffic_shaper_reverse="string",
        uuid="string")
    
    const packagesFirewallPolicy64Resource = new fortimanager.PackagesFirewallPolicy64("packagesFirewallPolicy64Resource", {
        pkg: "string",
        perIpShaper: "string",
        dstaddrs: ["string"],
        cgnEim: "string",
        permitAnyHost: "string",
        cgnResourceQuota: 0,
        cgnSessionQuota: 0,
        comments: "string",
        adom: "string",
        dstintfs: ["string"],
        fixedport: "string",
        ippool: "string",
        logtraffic: "string",
        logtrafficStart: "string",
        pkgFolderPath: "string",
        packagesFirewallPolicy64Id: "string",
        action: "string",
        cgnLogServerGrp: "string",
        cgnEif: "string",
        name: "string",
        policyOffload: "string",
        policyid: 0,
        poolnames: ["string"],
        schedule: "string",
        scopetype: "string",
        services: ["string"],
        srcaddrs: ["string"],
        srcintfs: ["string"],
        status: "string",
        tcpMssReceiver: 0,
        tcpMssSender: 0,
        trafficShaper: "string",
        trafficShaperReverse: "string",
        uuid: "string",
    });
    
    type: fortimanager:PackagesFirewallPolicy64
    properties:
        action: string
        adom: string
        cgnEif: string
        cgnEim: string
        cgnLogServerGrp: string
        cgnResourceQuota: 0
        cgnSessionQuota: 0
        comments: string
        dstaddrs:
            - string
        dstintfs:
            - string
        fixedport: string
        ippool: string
        logtraffic: string
        logtrafficStart: string
        name: string
        packagesFirewallPolicy64Id: string
        perIpShaper: string
        permitAnyHost: string
        pkg: string
        pkgFolderPath: string
        policyOffload: string
        policyid: 0
        poolnames:
            - string
        schedule: string
        scopetype: string
        services:
            - string
        srcaddrs:
            - string
        srcintfs:
            - string
        status: string
        tcpMssReceiver: 0
        tcpMssSender: 0
        trafficShaper: string
        trafficShaperReverse: string
        uuid: string
    

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

    Pkg string
    Package.
    Action string
    Policy action. Valid values: deny, accept.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    CgnEif string
    Enable/disable CGN endpoint independent filtering. Valid values: disable, enable.
    CgnEim string
    Enable/disable CGN endpoint independent mapping. Valid values: disable, enable.
    CgnLogServerGrp string
    NP log server group name
    CgnResourceQuota double
    resource quota
    CgnSessionQuota double
    session quota
    Comments string
    Comment.
    Dstaddrs List<string>
    Destination address name.
    Dstintfs List<string>
    Destination interface name.
    Fixedport string
    Enable/disable policy fixed port. Valid values: disable, enable.
    Ippool string
    Enable/disable policy64 IP pool. Valid values: disable, enable.
    Logtraffic string
    Enable/disable policy log traffic. Valid values: disable, enable.
    LogtrafficStart string
    Record logs when a session starts and ends. Valid values: disable, enable.
    Name string
    Policy name.
    PackagesFirewallPolicy64Id string
    an identifier for the resource with format {{policyid}}.
    PerIpShaper string
    Per-IP traffic shaper.
    PermitAnyHost string
    Enable/disable permit any host in. Valid values: disable, enable.
    PkgFolderPath string
    Pkg Folder Path.
    PolicyOffload string
    Enable/disable hardware session setup for CGNAT. Valid values: disable, enable.
    Policyid double
    Policy ID (0 - 4294967294).
    Poolnames List<string>
    Policy IP pool names.
    Schedule string
    Schedule name.
    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.
    Services List<string>
    Service name.
    Srcaddrs List<string>
    Source address name.
    Srcintfs List<string>
    Source interface name.
    Status string
    Enable/disable policy status. Valid values: disable, enable.
    TcpMssReceiver double
    TCP MSS value of receiver.
    TcpMssSender double
    TCP MSS value of sender.
    TrafficShaper string
    Traffic shaper.
    TrafficShaperReverse string
    Reverse traffic shaper.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Pkg string
    Package.
    Action string
    Policy action. Valid values: deny, accept.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    CgnEif string
    Enable/disable CGN endpoint independent filtering. Valid values: disable, enable.
    CgnEim string
    Enable/disable CGN endpoint independent mapping. Valid values: disable, enable.
    CgnLogServerGrp string
    NP log server group name
    CgnResourceQuota float64
    resource quota
    CgnSessionQuota float64
    session quota
    Comments string
    Comment.
    Dstaddrs []string
    Destination address name.
    Dstintfs []string
    Destination interface name.
    Fixedport string
    Enable/disable policy fixed port. Valid values: disable, enable.
    Ippool string
    Enable/disable policy64 IP pool. Valid values: disable, enable.
    Logtraffic string
    Enable/disable policy log traffic. Valid values: disable, enable.
    LogtrafficStart string
    Record logs when a session starts and ends. Valid values: disable, enable.
    Name string
    Policy name.
    PackagesFirewallPolicy64Id string
    an identifier for the resource with format {{policyid}}.
    PerIpShaper string
    Per-IP traffic shaper.
    PermitAnyHost string
    Enable/disable permit any host in. Valid values: disable, enable.
    PkgFolderPath string
    Pkg Folder Path.
    PolicyOffload string
    Enable/disable hardware session setup for CGNAT. Valid values: disable, enable.
    Policyid float64
    Policy ID (0 - 4294967294).
    Poolnames []string
    Policy IP pool names.
    Schedule string
    Schedule name.
    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.
    Services []string
    Service name.
    Srcaddrs []string
    Source address name.
    Srcintfs []string
    Source interface name.
    Status string
    Enable/disable policy status. Valid values: disable, enable.
    TcpMssReceiver float64
    TCP MSS value of receiver.
    TcpMssSender float64
    TCP MSS value of sender.
    TrafficShaper string
    Traffic shaper.
    TrafficShaperReverse string
    Reverse traffic shaper.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    pkg String
    Package.
    action String
    Policy action. Valid values: deny, accept.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    cgnEif String
    Enable/disable CGN endpoint independent filtering. Valid values: disable, enable.
    cgnEim String
    Enable/disable CGN endpoint independent mapping. Valid values: disable, enable.
    cgnLogServerGrp String
    NP log server group name
    cgnResourceQuota Double
    resource quota
    cgnSessionQuota Double
    session quota
    comments String
    Comment.
    dstaddrs List<String>
    Destination address name.
    dstintfs List<String>
    Destination interface name.
    fixedport String
    Enable/disable policy fixed port. Valid values: disable, enable.
    ippool String
    Enable/disable policy64 IP pool. Valid values: disable, enable.
    logtraffic String
    Enable/disable policy log traffic. Valid values: disable, enable.
    logtrafficStart String
    Record logs when a session starts and ends. Valid values: disable, enable.
    name String
    Policy name.
    packagesFirewallPolicy64Id String
    an identifier for the resource with format {{policyid}}.
    perIpShaper String
    Per-IP traffic shaper.
    permitAnyHost String
    Enable/disable permit any host in. Valid values: disable, enable.
    pkgFolderPath String
    Pkg Folder Path.
    policyOffload String
    Enable/disable hardware session setup for CGNAT. Valid values: disable, enable.
    policyid Double
    Policy ID (0 - 4294967294).
    poolnames List<String>
    Policy IP pool names.
    schedule String
    Schedule name.
    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.
    services List<String>
    Service name.
    srcaddrs List<String>
    Source address name.
    srcintfs List<String>
    Source interface name.
    status String
    Enable/disable policy status. Valid values: disable, enable.
    tcpMssReceiver Double
    TCP MSS value of receiver.
    tcpMssSender Double
    TCP MSS value of sender.
    trafficShaper String
    Traffic shaper.
    trafficShaperReverse String
    Reverse traffic shaper.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    pkg string
    Package.
    action string
    Policy action. Valid values: deny, accept.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    cgnEif string
    Enable/disable CGN endpoint independent filtering. Valid values: disable, enable.
    cgnEim string
    Enable/disable CGN endpoint independent mapping. Valid values: disable, enable.
    cgnLogServerGrp string
    NP log server group name
    cgnResourceQuota number
    resource quota
    cgnSessionQuota number
    session quota
    comments string
    Comment.
    dstaddrs string[]
    Destination address name.
    dstintfs string[]
    Destination interface name.
    fixedport string
    Enable/disable policy fixed port. Valid values: disable, enable.
    ippool string
    Enable/disable policy64 IP pool. Valid values: disable, enable.
    logtraffic string
    Enable/disable policy log traffic. Valid values: disable, enable.
    logtrafficStart string
    Record logs when a session starts and ends. Valid values: disable, enable.
    name string
    Policy name.
    packagesFirewallPolicy64Id string
    an identifier for the resource with format {{policyid}}.
    perIpShaper string
    Per-IP traffic shaper.
    permitAnyHost string
    Enable/disable permit any host in. Valid values: disable, enable.
    pkgFolderPath string
    Pkg Folder Path.
    policyOffload string
    Enable/disable hardware session setup for CGNAT. Valid values: disable, enable.
    policyid number
    Policy ID (0 - 4294967294).
    poolnames string[]
    Policy IP pool names.
    schedule string
    Schedule name.
    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.
    services string[]
    Service name.
    srcaddrs string[]
    Source address name.
    srcintfs string[]
    Source interface name.
    status string
    Enable/disable policy status. Valid values: disable, enable.
    tcpMssReceiver number
    TCP MSS value of receiver.
    tcpMssSender number
    TCP MSS value of sender.
    trafficShaper string
    Traffic shaper.
    trafficShaperReverse string
    Reverse traffic shaper.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    pkg str
    Package.
    action str
    Policy action. Valid values: deny, accept.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    cgn_eif str
    Enable/disable CGN endpoint independent filtering. Valid values: disable, enable.
    cgn_eim str
    Enable/disable CGN endpoint independent mapping. Valid values: disable, enable.
    cgn_log_server_grp str
    NP log server group name
    cgn_resource_quota float
    resource quota
    cgn_session_quota float
    session quota
    comments str
    Comment.
    dstaddrs Sequence[str]
    Destination address name.
    dstintfs Sequence[str]
    Destination interface name.
    fixedport str
    Enable/disable policy fixed port. Valid values: disable, enable.
    ippool str
    Enable/disable policy64 IP pool. Valid values: disable, enable.
    logtraffic str
    Enable/disable policy log traffic. Valid values: disable, enable.
    logtraffic_start str
    Record logs when a session starts and ends. Valid values: disable, enable.
    name str
    Policy name.
    packages_firewall_policy64_id str
    an identifier for the resource with format {{policyid}}.
    per_ip_shaper str
    Per-IP traffic shaper.
    permit_any_host str
    Enable/disable permit any host in. Valid values: disable, enable.
    pkg_folder_path str
    Pkg Folder Path.
    policy_offload str
    Enable/disable hardware session setup for CGNAT. Valid values: disable, enable.
    policyid float
    Policy ID (0 - 4294967294).
    poolnames Sequence[str]
    Policy IP pool names.
    schedule str
    Schedule name.
    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.
    services Sequence[str]
    Service name.
    srcaddrs Sequence[str]
    Source address name.
    srcintfs Sequence[str]
    Source interface name.
    status str
    Enable/disable policy status. Valid values: disable, enable.
    tcp_mss_receiver float
    TCP MSS value of receiver.
    tcp_mss_sender float
    TCP MSS value of sender.
    traffic_shaper str
    Traffic shaper.
    traffic_shaper_reverse str
    Reverse traffic shaper.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    pkg String
    Package.
    action String
    Policy action. Valid values: deny, accept.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    cgnEif String
    Enable/disable CGN endpoint independent filtering. Valid values: disable, enable.
    cgnEim String
    Enable/disable CGN endpoint independent mapping. Valid values: disable, enable.
    cgnLogServerGrp String
    NP log server group name
    cgnResourceQuota Number
    resource quota
    cgnSessionQuota Number
    session quota
    comments String
    Comment.
    dstaddrs List<String>
    Destination address name.
    dstintfs List<String>
    Destination interface name.
    fixedport String
    Enable/disable policy fixed port. Valid values: disable, enable.
    ippool String
    Enable/disable policy64 IP pool. Valid values: disable, enable.
    logtraffic String
    Enable/disable policy log traffic. Valid values: disable, enable.
    logtrafficStart String
    Record logs when a session starts and ends. Valid values: disable, enable.
    name String
    Policy name.
    packagesFirewallPolicy64Id String
    an identifier for the resource with format {{policyid}}.
    perIpShaper String
    Per-IP traffic shaper.
    permitAnyHost String
    Enable/disable permit any host in. Valid values: disable, enable.
    pkgFolderPath String
    Pkg Folder Path.
    policyOffload String
    Enable/disable hardware session setup for CGNAT. Valid values: disable, enable.
    policyid Number
    Policy ID (0 - 4294967294).
    poolnames List<String>
    Policy IP pool names.
    schedule String
    Schedule name.
    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.
    services List<String>
    Service name.
    srcaddrs List<String>
    Source address name.
    srcintfs List<String>
    Source interface name.
    status String
    Enable/disable policy status. Valid values: disable, enable.
    tcpMssReceiver Number
    TCP MSS value of receiver.
    tcpMssSender Number
    TCP MSS value of sender.
    trafficShaper String
    Traffic shaper.
    trafficShaperReverse String
    Reverse traffic shaper.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).

    Outputs

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

    Get an existing PackagesFirewallPolicy64 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?: PackagesFirewallPolicy64State, opts?: CustomResourceOptions): PackagesFirewallPolicy64
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            cgn_eif: Optional[str] = None,
            cgn_eim: Optional[str] = None,
            cgn_log_server_grp: Optional[str] = None,
            cgn_resource_quota: Optional[float] = None,
            cgn_session_quota: Optional[float] = None,
            comments: Optional[str] = None,
            dstaddrs: Optional[Sequence[str]] = None,
            dstintfs: Optional[Sequence[str]] = None,
            fixedport: Optional[str] = None,
            ippool: Optional[str] = None,
            logtraffic: Optional[str] = None,
            logtraffic_start: Optional[str] = None,
            name: Optional[str] = None,
            packages_firewall_policy64_id: Optional[str] = None,
            per_ip_shaper: Optional[str] = None,
            permit_any_host: Optional[str] = None,
            pkg: Optional[str] = None,
            pkg_folder_path: Optional[str] = None,
            policy_offload: Optional[str] = None,
            policyid: Optional[float] = None,
            poolnames: Optional[Sequence[str]] = None,
            schedule: Optional[str] = None,
            scopetype: Optional[str] = None,
            services: Optional[Sequence[str]] = None,
            srcaddrs: Optional[Sequence[str]] = None,
            srcintfs: Optional[Sequence[str]] = None,
            status: Optional[str] = None,
            tcp_mss_receiver: Optional[float] = None,
            tcp_mss_sender: Optional[float] = None,
            traffic_shaper: Optional[str] = None,
            traffic_shaper_reverse: Optional[str] = None,
            uuid: Optional[str] = None) -> PackagesFirewallPolicy64
    func GetPackagesFirewallPolicy64(ctx *Context, name string, id IDInput, state *PackagesFirewallPolicy64State, opts ...ResourceOption) (*PackagesFirewallPolicy64, error)
    public static PackagesFirewallPolicy64 Get(string name, Input<string> id, PackagesFirewallPolicy64State? state, CustomResourceOptions? opts = null)
    public static PackagesFirewallPolicy64 get(String name, Output<String> id, PackagesFirewallPolicy64State state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:PackagesFirewallPolicy64    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:
    Action string
    Policy action. Valid values: deny, accept.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    CgnEif string
    Enable/disable CGN endpoint independent filtering. Valid values: disable, enable.
    CgnEim string
    Enable/disable CGN endpoint independent mapping. Valid values: disable, enable.
    CgnLogServerGrp string
    NP log server group name
    CgnResourceQuota double
    resource quota
    CgnSessionQuota double
    session quota
    Comments string
    Comment.
    Dstaddrs List<string>
    Destination address name.
    Dstintfs List<string>
    Destination interface name.
    Fixedport string
    Enable/disable policy fixed port. Valid values: disable, enable.
    Ippool string
    Enable/disable policy64 IP pool. Valid values: disable, enable.
    Logtraffic string
    Enable/disable policy log traffic. Valid values: disable, enable.
    LogtrafficStart string
    Record logs when a session starts and ends. Valid values: disable, enable.
    Name string
    Policy name.
    PackagesFirewallPolicy64Id string
    an identifier for the resource with format {{policyid}}.
    PerIpShaper string
    Per-IP traffic shaper.
    PermitAnyHost string
    Enable/disable permit any host in. Valid values: disable, enable.
    Pkg string
    Package.
    PkgFolderPath string
    Pkg Folder Path.
    PolicyOffload string
    Enable/disable hardware session setup for CGNAT. Valid values: disable, enable.
    Policyid double
    Policy ID (0 - 4294967294).
    Poolnames List<string>
    Policy IP pool names.
    Schedule string
    Schedule name.
    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.
    Services List<string>
    Service name.
    Srcaddrs List<string>
    Source address name.
    Srcintfs List<string>
    Source interface name.
    Status string
    Enable/disable policy status. Valid values: disable, enable.
    TcpMssReceiver double
    TCP MSS value of receiver.
    TcpMssSender double
    TCP MSS value of sender.
    TrafficShaper string
    Traffic shaper.
    TrafficShaperReverse string
    Reverse traffic shaper.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Action string
    Policy action. Valid values: deny, accept.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    CgnEif string
    Enable/disable CGN endpoint independent filtering. Valid values: disable, enable.
    CgnEim string
    Enable/disable CGN endpoint independent mapping. Valid values: disable, enable.
    CgnLogServerGrp string
    NP log server group name
    CgnResourceQuota float64
    resource quota
    CgnSessionQuota float64
    session quota
    Comments string
    Comment.
    Dstaddrs []string
    Destination address name.
    Dstintfs []string
    Destination interface name.
    Fixedport string
    Enable/disable policy fixed port. Valid values: disable, enable.
    Ippool string
    Enable/disable policy64 IP pool. Valid values: disable, enable.
    Logtraffic string
    Enable/disable policy log traffic. Valid values: disable, enable.
    LogtrafficStart string
    Record logs when a session starts and ends. Valid values: disable, enable.
    Name string
    Policy name.
    PackagesFirewallPolicy64Id string
    an identifier for the resource with format {{policyid}}.
    PerIpShaper string
    Per-IP traffic shaper.
    PermitAnyHost string
    Enable/disable permit any host in. Valid values: disable, enable.
    Pkg string
    Package.
    PkgFolderPath string
    Pkg Folder Path.
    PolicyOffload string
    Enable/disable hardware session setup for CGNAT. Valid values: disable, enable.
    Policyid float64
    Policy ID (0 - 4294967294).
    Poolnames []string
    Policy IP pool names.
    Schedule string
    Schedule name.
    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.
    Services []string
    Service name.
    Srcaddrs []string
    Source address name.
    Srcintfs []string
    Source interface name.
    Status string
    Enable/disable policy status. Valid values: disable, enable.
    TcpMssReceiver float64
    TCP MSS value of receiver.
    TcpMssSender float64
    TCP MSS value of sender.
    TrafficShaper string
    Traffic shaper.
    TrafficShaperReverse string
    Reverse traffic shaper.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    action String
    Policy action. Valid values: deny, accept.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    cgnEif String
    Enable/disable CGN endpoint independent filtering. Valid values: disable, enable.
    cgnEim String
    Enable/disable CGN endpoint independent mapping. Valid values: disable, enable.
    cgnLogServerGrp String
    NP log server group name
    cgnResourceQuota Double
    resource quota
    cgnSessionQuota Double
    session quota
    comments String
    Comment.
    dstaddrs List<String>
    Destination address name.
    dstintfs List<String>
    Destination interface name.
    fixedport String
    Enable/disable policy fixed port. Valid values: disable, enable.
    ippool String
    Enable/disable policy64 IP pool. Valid values: disable, enable.
    logtraffic String
    Enable/disable policy log traffic. Valid values: disable, enable.
    logtrafficStart String
    Record logs when a session starts and ends. Valid values: disable, enable.
    name String
    Policy name.
    packagesFirewallPolicy64Id String
    an identifier for the resource with format {{policyid}}.
    perIpShaper String
    Per-IP traffic shaper.
    permitAnyHost String
    Enable/disable permit any host in. Valid values: disable, enable.
    pkg String
    Package.
    pkgFolderPath String
    Pkg Folder Path.
    policyOffload String
    Enable/disable hardware session setup for CGNAT. Valid values: disable, enable.
    policyid Double
    Policy ID (0 - 4294967294).
    poolnames List<String>
    Policy IP pool names.
    schedule String
    Schedule name.
    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.
    services List<String>
    Service name.
    srcaddrs List<String>
    Source address name.
    srcintfs List<String>
    Source interface name.
    status String
    Enable/disable policy status. Valid values: disable, enable.
    tcpMssReceiver Double
    TCP MSS value of receiver.
    tcpMssSender Double
    TCP MSS value of sender.
    trafficShaper String
    Traffic shaper.
    trafficShaperReverse String
    Reverse traffic shaper.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    action string
    Policy action. Valid values: deny, accept.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    cgnEif string
    Enable/disable CGN endpoint independent filtering. Valid values: disable, enable.
    cgnEim string
    Enable/disable CGN endpoint independent mapping. Valid values: disable, enable.
    cgnLogServerGrp string
    NP log server group name
    cgnResourceQuota number
    resource quota
    cgnSessionQuota number
    session quota
    comments string
    Comment.
    dstaddrs string[]
    Destination address name.
    dstintfs string[]
    Destination interface name.
    fixedport string
    Enable/disable policy fixed port. Valid values: disable, enable.
    ippool string
    Enable/disable policy64 IP pool. Valid values: disable, enable.
    logtraffic string
    Enable/disable policy log traffic. Valid values: disable, enable.
    logtrafficStart string
    Record logs when a session starts and ends. Valid values: disable, enable.
    name string
    Policy name.
    packagesFirewallPolicy64Id string
    an identifier for the resource with format {{policyid}}.
    perIpShaper string
    Per-IP traffic shaper.
    permitAnyHost string
    Enable/disable permit any host in. Valid values: disable, enable.
    pkg string
    Package.
    pkgFolderPath string
    Pkg Folder Path.
    policyOffload string
    Enable/disable hardware session setup for CGNAT. Valid values: disable, enable.
    policyid number
    Policy ID (0 - 4294967294).
    poolnames string[]
    Policy IP pool names.
    schedule string
    Schedule name.
    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.
    services string[]
    Service name.
    srcaddrs string[]
    Source address name.
    srcintfs string[]
    Source interface name.
    status string
    Enable/disable policy status. Valid values: disable, enable.
    tcpMssReceiver number
    TCP MSS value of receiver.
    tcpMssSender number
    TCP MSS value of sender.
    trafficShaper string
    Traffic shaper.
    trafficShaperReverse string
    Reverse traffic shaper.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    action str
    Policy action. Valid values: deny, accept.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    cgn_eif str
    Enable/disable CGN endpoint independent filtering. Valid values: disable, enable.
    cgn_eim str
    Enable/disable CGN endpoint independent mapping. Valid values: disable, enable.
    cgn_log_server_grp str
    NP log server group name
    cgn_resource_quota float
    resource quota
    cgn_session_quota float
    session quota
    comments str
    Comment.
    dstaddrs Sequence[str]
    Destination address name.
    dstintfs Sequence[str]
    Destination interface name.
    fixedport str
    Enable/disable policy fixed port. Valid values: disable, enable.
    ippool str
    Enable/disable policy64 IP pool. Valid values: disable, enable.
    logtraffic str
    Enable/disable policy log traffic. Valid values: disable, enable.
    logtraffic_start str
    Record logs when a session starts and ends. Valid values: disable, enable.
    name str
    Policy name.
    packages_firewall_policy64_id str
    an identifier for the resource with format {{policyid}}.
    per_ip_shaper str
    Per-IP traffic shaper.
    permit_any_host str
    Enable/disable permit any host in. Valid values: disable, enable.
    pkg str
    Package.
    pkg_folder_path str
    Pkg Folder Path.
    policy_offload str
    Enable/disable hardware session setup for CGNAT. Valid values: disable, enable.
    policyid float
    Policy ID (0 - 4294967294).
    poolnames Sequence[str]
    Policy IP pool names.
    schedule str
    Schedule name.
    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.
    services Sequence[str]
    Service name.
    srcaddrs Sequence[str]
    Source address name.
    srcintfs Sequence[str]
    Source interface name.
    status str
    Enable/disable policy status. Valid values: disable, enable.
    tcp_mss_receiver float
    TCP MSS value of receiver.
    tcp_mss_sender float
    TCP MSS value of sender.
    traffic_shaper str
    Traffic shaper.
    traffic_shaper_reverse str
    Reverse traffic shaper.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    action String
    Policy action. Valid values: deny, accept.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    cgnEif String
    Enable/disable CGN endpoint independent filtering. Valid values: disable, enable.
    cgnEim String
    Enable/disable CGN endpoint independent mapping. Valid values: disable, enable.
    cgnLogServerGrp String
    NP log server group name
    cgnResourceQuota Number
    resource quota
    cgnSessionQuota Number
    session quota
    comments String
    Comment.
    dstaddrs List<String>
    Destination address name.
    dstintfs List<String>
    Destination interface name.
    fixedport String
    Enable/disable policy fixed port. Valid values: disable, enable.
    ippool String
    Enable/disable policy64 IP pool. Valid values: disable, enable.
    logtraffic String
    Enable/disable policy log traffic. Valid values: disable, enable.
    logtrafficStart String
    Record logs when a session starts and ends. Valid values: disable, enable.
    name String
    Policy name.
    packagesFirewallPolicy64Id String
    an identifier for the resource with format {{policyid}}.
    perIpShaper String
    Per-IP traffic shaper.
    permitAnyHost String
    Enable/disable permit any host in. Valid values: disable, enable.
    pkg String
    Package.
    pkgFolderPath String
    Pkg Folder Path.
    policyOffload String
    Enable/disable hardware session setup for CGNAT. Valid values: disable, enable.
    policyid Number
    Policy ID (0 - 4294967294).
    poolnames List<String>
    Policy IP pool names.
    schedule String
    Schedule name.
    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.
    services List<String>
    Service name.
    srcaddrs List<String>
    Source address name.
    srcintfs List<String>
    Source interface name.
    status String
    Enable/disable policy status. Valid values: disable, enable.
    tcpMssReceiver Number
    TCP MSS value of receiver.
    tcpMssSender Number
    TCP MSS value of sender.
    trafficShaper String
    Traffic shaper.
    trafficShaperReverse String
    Reverse traffic shaper.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).

    Import

    Packages FirewallPolicy64 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/packagesFirewallPolicy64:PackagesFirewallPolicy64 labelname {{policyid}}
    

    $ 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