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

fortimanager.PackagesFirewallShapingpolicy

Explore with Pulumi AI

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

    Configure shaping policies.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const labelname = new fortimanager.PackagesFirewallShapingpolicy("labelname", {
        diffservForward: "disable",
        diffservReverse: "disable",
        dstaddrs: ["all"],
        dstintfs: ["any"],
        fosid: 1,
        internetService: "disable",
        internetServiceSrc: "disable",
        ipVersion: "4",
        pkg: "default",
        services: ["ALL"],
        srcaddrs: ["all"],
        status: "enable",
        tos: "0x00",
        tosMask: "0x00",
        tosNegate: "disable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    labelname = fortimanager.PackagesFirewallShapingpolicy("labelname",
        diffserv_forward="disable",
        diffserv_reverse="disable",
        dstaddrs=["all"],
        dstintfs=["any"],
        fosid=1,
        internet_service="disable",
        internet_service_src="disable",
        ip_version="4",
        pkg="default",
        services=["ALL"],
        srcaddrs=["all"],
        status="enable",
        tos="0x00",
        tos_mask="0x00",
        tos_negate="disable")
    
    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.NewPackagesFirewallShapingpolicy(ctx, "labelname", &fortimanager.PackagesFirewallShapingpolicyArgs{
    			DiffservForward: pulumi.String("disable"),
    			DiffservReverse: pulumi.String("disable"),
    			Dstaddrs: pulumi.StringArray{
    				pulumi.String("all"),
    			},
    			Dstintfs: pulumi.StringArray{
    				pulumi.String("any"),
    			},
    			Fosid:              pulumi.Float64(1),
    			InternetService:    pulumi.String("disable"),
    			InternetServiceSrc: pulumi.String("disable"),
    			IpVersion:          pulumi.String("4"),
    			Pkg:                pulumi.String("default"),
    			Services: pulumi.StringArray{
    				pulumi.String("ALL"),
    			},
    			Srcaddrs: pulumi.StringArray{
    				pulumi.String("all"),
    			},
    			Status:    pulumi.String("enable"),
    			Tos:       pulumi.String("0x00"),
    			TosMask:   pulumi.String("0x00"),
    			TosNegate: pulumi.String("disable"),
    		})
    		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.PackagesFirewallShapingpolicy("labelname", new()
        {
            DiffservForward = "disable",
            DiffservReverse = "disable",
            Dstaddrs = new[]
            {
                "all",
            },
            Dstintfs = new[]
            {
                "any",
            },
            Fosid = 1,
            InternetService = "disable",
            InternetServiceSrc = "disable",
            IpVersion = "4",
            Pkg = "default",
            Services = new[]
            {
                "ALL",
            },
            Srcaddrs = new[]
            {
                "all",
            },
            Status = "enable",
            Tos = "0x00",
            TosMask = "0x00",
            TosNegate = "disable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.PackagesFirewallShapingpolicy;
    import com.pulumi.fortimanager.PackagesFirewallShapingpolicyArgs;
    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 PackagesFirewallShapingpolicy("labelname", PackagesFirewallShapingpolicyArgs.builder()
                .diffservForward("disable")
                .diffservReverse("disable")
                .dstaddrs("all")
                .dstintfs("any")
                .fosid(1)
                .internetService("disable")
                .internetServiceSrc("disable")
                .ipVersion("4")
                .pkg("default")
                .services("ALL")
                .srcaddrs("all")
                .status("enable")
                .tos("0x00")
                .tosMask("0x00")
                .tosNegate("disable")
                .build());
    
        }
    }
    
    resources:
      labelname:
        type: fortimanager:PackagesFirewallShapingpolicy
        properties:
          diffservForward: disable
          diffservReverse: disable
          dstaddrs:
            - all
          dstintfs:
            - any
          fosid: 1
          internetService: disable
          internetServiceSrc: disable
          ipVersion: '4'
          pkg: default
          services:
            - ALL
          srcaddrs:
            - all
          status: enable
          tos: 0x00
          tosMask: 0x00
          tosNegate: disable
    

    Create PackagesFirewallShapingpolicy Resource

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

    Constructor syntax

    new PackagesFirewallShapingpolicy(name: string, args: PackagesFirewallShapingpolicyArgs, opts?: CustomResourceOptions);
    @overload
    def PackagesFirewallShapingpolicy(resource_name: str,
                                      args: PackagesFirewallShapingpolicyArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def PackagesFirewallShapingpolicy(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      pkg: Optional[str] = None,
                                      adom: Optional[str] = None,
                                      app_categories: Optional[Sequence[str]] = None,
                                      app_groups: Optional[Sequence[str]] = None,
                                      applications: Optional[Sequence[float]] = None,
                                      class_id: Optional[str] = None,
                                      comment: Optional[str] = None,
                                      cos: Optional[str] = None,
                                      cos_mask: Optional[str] = None,
                                      diffserv_forward: Optional[str] = None,
                                      diffserv_reverse: Optional[str] = None,
                                      diffservcode_forward: Optional[str] = None,
                                      diffservcode_rev: Optional[str] = None,
                                      dstaddr6: Optional[str] = None,
                                      dstaddrs: Optional[Sequence[str]] = None,
                                      dstintfs: Optional[Sequence[str]] = None,
                                      fosid: Optional[float] = None,
                                      groups: Optional[Sequence[str]] = None,
                                      internet_service: Optional[str] = None,
                                      internet_service_custom_groups: Optional[Sequence[str]] = None,
                                      internet_service_customs: Optional[Sequence[str]] = None,
                                      internet_service_groups: Optional[Sequence[str]] = None,
                                      internet_service_id: Optional[str] = None,
                                      internet_service_names: Optional[Sequence[str]] = None,
                                      internet_service_src: Optional[str] = None,
                                      internet_service_src_custom: Optional[str] = None,
                                      internet_service_src_custom_group: Optional[str] = None,
                                      internet_service_src_group: Optional[str] = None,
                                      internet_service_src_id: Optional[str] = None,
                                      internet_service_src_names: Optional[Sequence[str]] = None,
                                      ip_version: Optional[str] = None,
                                      name: Optional[str] = None,
                                      packages_firewall_shapingpolicy_id: Optional[str] = None,
                                      per_ip_shaper: Optional[str] = None,
                                      pkg_folder_path: Optional[str] = None,
                                      schedule: Optional[str] = None,
                                      scopetype: Optional[str] = None,
                                      services: Optional[Sequence[str]] = None,
                                      srcaddr6: Optional[str] = None,
                                      srcaddrs: Optional[Sequence[str]] = None,
                                      srcintfs: Optional[Sequence[str]] = None,
                                      status: Optional[str] = None,
                                      tos: Optional[str] = None,
                                      tos_mask: Optional[str] = None,
                                      tos_negate: Optional[str] = None,
                                      traffic_shaper: Optional[str] = None,
                                      traffic_shaper_reverse: Optional[str] = None,
                                      traffic_type: Optional[str] = None,
                                      url_categories: Optional[Sequence[str]] = None,
                                      users: Optional[Sequence[str]] = None,
                                      uuid: Optional[str] = None)
    func NewPackagesFirewallShapingpolicy(ctx *Context, name string, args PackagesFirewallShapingpolicyArgs, opts ...ResourceOption) (*PackagesFirewallShapingpolicy, error)
    public PackagesFirewallShapingpolicy(string name, PackagesFirewallShapingpolicyArgs args, CustomResourceOptions? opts = null)
    public PackagesFirewallShapingpolicy(String name, PackagesFirewallShapingpolicyArgs args)
    public PackagesFirewallShapingpolicy(String name, PackagesFirewallShapingpolicyArgs args, CustomResourceOptions options)
    
    type: fortimanager:PackagesFirewallShapingpolicy
    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 PackagesFirewallShapingpolicyArgs
    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 PackagesFirewallShapingpolicyArgs
    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 PackagesFirewallShapingpolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PackagesFirewallShapingpolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PackagesFirewallShapingpolicyArgs
    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 packagesFirewallShapingpolicyResource = new Fortimanager.PackagesFirewallShapingpolicy("packagesFirewallShapingpolicyResource", new()
    {
        Pkg = "string",
        Adom = "string",
        AppCategories = new[]
        {
            "string",
        },
        AppGroups = new[]
        {
            "string",
        },
        Applications = new[]
        {
            0,
        },
        ClassId = "string",
        Comment = "string",
        Cos = "string",
        CosMask = "string",
        DiffservForward = "string",
        DiffservReverse = "string",
        DiffservcodeForward = "string",
        DiffservcodeRev = "string",
        Dstaddr6 = "string",
        Dstaddrs = new[]
        {
            "string",
        },
        Dstintfs = new[]
        {
            "string",
        },
        Fosid = 0,
        Groups = new[]
        {
            "string",
        },
        InternetService = "string",
        InternetServiceCustomGroups = new[]
        {
            "string",
        },
        InternetServiceCustoms = new[]
        {
            "string",
        },
        InternetServiceGroups = new[]
        {
            "string",
        },
        InternetServiceId = "string",
        InternetServiceNames = new[]
        {
            "string",
        },
        InternetServiceSrc = "string",
        InternetServiceSrcCustom = "string",
        InternetServiceSrcCustomGroup = "string",
        InternetServiceSrcGroup = "string",
        InternetServiceSrcId = "string",
        InternetServiceSrcNames = new[]
        {
            "string",
        },
        IpVersion = "string",
        Name = "string",
        PackagesFirewallShapingpolicyId = "string",
        PerIpShaper = "string",
        PkgFolderPath = "string",
        Schedule = "string",
        Scopetype = "string",
        Services = new[]
        {
            "string",
        },
        Srcaddr6 = "string",
        Srcaddrs = new[]
        {
            "string",
        },
        Srcintfs = new[]
        {
            "string",
        },
        Status = "string",
        Tos = "string",
        TosMask = "string",
        TosNegate = "string",
        TrafficShaper = "string",
        TrafficShaperReverse = "string",
        TrafficType = "string",
        UrlCategories = new[]
        {
            "string",
        },
        Users = new[]
        {
            "string",
        },
        Uuid = "string",
    });
    
    example, err := fortimanager.NewPackagesFirewallShapingpolicy(ctx, "packagesFirewallShapingpolicyResource", &fortimanager.PackagesFirewallShapingpolicyArgs{
    Pkg: pulumi.String("string"),
    Adom: pulumi.String("string"),
    AppCategories: pulumi.StringArray{
    pulumi.String("string"),
    },
    AppGroups: pulumi.StringArray{
    pulumi.String("string"),
    },
    Applications: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    ClassId: pulumi.String("string"),
    Comment: pulumi.String("string"),
    Cos: pulumi.String("string"),
    CosMask: pulumi.String("string"),
    DiffservForward: pulumi.String("string"),
    DiffservReverse: pulumi.String("string"),
    DiffservcodeForward: pulumi.String("string"),
    DiffservcodeRev: pulumi.String("string"),
    Dstaddr6: pulumi.String("string"),
    Dstaddrs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Dstintfs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Fosid: pulumi.Float64(0),
    Groups: pulumi.StringArray{
    pulumi.String("string"),
    },
    InternetService: pulumi.String("string"),
    InternetServiceCustomGroups: pulumi.StringArray{
    pulumi.String("string"),
    },
    InternetServiceCustoms: pulumi.StringArray{
    pulumi.String("string"),
    },
    InternetServiceGroups: pulumi.StringArray{
    pulumi.String("string"),
    },
    InternetServiceId: pulumi.String("string"),
    InternetServiceNames: pulumi.StringArray{
    pulumi.String("string"),
    },
    InternetServiceSrc: pulumi.String("string"),
    InternetServiceSrcCustom: pulumi.String("string"),
    InternetServiceSrcCustomGroup: pulumi.String("string"),
    InternetServiceSrcGroup: pulumi.String("string"),
    InternetServiceSrcId: pulumi.String("string"),
    InternetServiceSrcNames: pulumi.StringArray{
    pulumi.String("string"),
    },
    IpVersion: pulumi.String("string"),
    Name: pulumi.String("string"),
    PackagesFirewallShapingpolicyId: pulumi.String("string"),
    PerIpShaper: pulumi.String("string"),
    PkgFolderPath: pulumi.String("string"),
    Schedule: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Services: pulumi.StringArray{
    pulumi.String("string"),
    },
    Srcaddr6: pulumi.String("string"),
    Srcaddrs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Srcintfs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Status: pulumi.String("string"),
    Tos: pulumi.String("string"),
    TosMask: pulumi.String("string"),
    TosNegate: pulumi.String("string"),
    TrafficShaper: pulumi.String("string"),
    TrafficShaperReverse: pulumi.String("string"),
    TrafficType: pulumi.String("string"),
    UrlCategories: pulumi.StringArray{
    pulumi.String("string"),
    },
    Users: pulumi.StringArray{
    pulumi.String("string"),
    },
    Uuid: pulumi.String("string"),
    })
    
    var packagesFirewallShapingpolicyResource = new PackagesFirewallShapingpolicy("packagesFirewallShapingpolicyResource", PackagesFirewallShapingpolicyArgs.builder()
        .pkg("string")
        .adom("string")
        .appCategories("string")
        .appGroups("string")
        .applications(0)
        .classId("string")
        .comment("string")
        .cos("string")
        .cosMask("string")
        .diffservForward("string")
        .diffservReverse("string")
        .diffservcodeForward("string")
        .diffservcodeRev("string")
        .dstaddr6("string")
        .dstaddrs("string")
        .dstintfs("string")
        .fosid(0)
        .groups("string")
        .internetService("string")
        .internetServiceCustomGroups("string")
        .internetServiceCustoms("string")
        .internetServiceGroups("string")
        .internetServiceId("string")
        .internetServiceNames("string")
        .internetServiceSrc("string")
        .internetServiceSrcCustom("string")
        .internetServiceSrcCustomGroup("string")
        .internetServiceSrcGroup("string")
        .internetServiceSrcId("string")
        .internetServiceSrcNames("string")
        .ipVersion("string")
        .name("string")
        .packagesFirewallShapingpolicyId("string")
        .perIpShaper("string")
        .pkgFolderPath("string")
        .schedule("string")
        .scopetype("string")
        .services("string")
        .srcaddr6("string")
        .srcaddrs("string")
        .srcintfs("string")
        .status("string")
        .tos("string")
        .tosMask("string")
        .tosNegate("string")
        .trafficShaper("string")
        .trafficShaperReverse("string")
        .trafficType("string")
        .urlCategories("string")
        .users("string")
        .uuid("string")
        .build());
    
    packages_firewall_shapingpolicy_resource = fortimanager.PackagesFirewallShapingpolicy("packagesFirewallShapingpolicyResource",
        pkg="string",
        adom="string",
        app_categories=["string"],
        app_groups=["string"],
        applications=[0],
        class_id="string",
        comment="string",
        cos="string",
        cos_mask="string",
        diffserv_forward="string",
        diffserv_reverse="string",
        diffservcode_forward="string",
        diffservcode_rev="string",
        dstaddr6="string",
        dstaddrs=["string"],
        dstintfs=["string"],
        fosid=0,
        groups=["string"],
        internet_service="string",
        internet_service_custom_groups=["string"],
        internet_service_customs=["string"],
        internet_service_groups=["string"],
        internet_service_id="string",
        internet_service_names=["string"],
        internet_service_src="string",
        internet_service_src_custom="string",
        internet_service_src_custom_group="string",
        internet_service_src_group="string",
        internet_service_src_id="string",
        internet_service_src_names=["string"],
        ip_version="string",
        name="string",
        packages_firewall_shapingpolicy_id="string",
        per_ip_shaper="string",
        pkg_folder_path="string",
        schedule="string",
        scopetype="string",
        services=["string"],
        srcaddr6="string",
        srcaddrs=["string"],
        srcintfs=["string"],
        status="string",
        tos="string",
        tos_mask="string",
        tos_negate="string",
        traffic_shaper="string",
        traffic_shaper_reverse="string",
        traffic_type="string",
        url_categories=["string"],
        users=["string"],
        uuid="string")
    
    const packagesFirewallShapingpolicyResource = new fortimanager.PackagesFirewallShapingpolicy("packagesFirewallShapingpolicyResource", {
        pkg: "string",
        adom: "string",
        appCategories: ["string"],
        appGroups: ["string"],
        applications: [0],
        classId: "string",
        comment: "string",
        cos: "string",
        cosMask: "string",
        diffservForward: "string",
        diffservReverse: "string",
        diffservcodeForward: "string",
        diffservcodeRev: "string",
        dstaddr6: "string",
        dstaddrs: ["string"],
        dstintfs: ["string"],
        fosid: 0,
        groups: ["string"],
        internetService: "string",
        internetServiceCustomGroups: ["string"],
        internetServiceCustoms: ["string"],
        internetServiceGroups: ["string"],
        internetServiceId: "string",
        internetServiceNames: ["string"],
        internetServiceSrc: "string",
        internetServiceSrcCustom: "string",
        internetServiceSrcCustomGroup: "string",
        internetServiceSrcGroup: "string",
        internetServiceSrcId: "string",
        internetServiceSrcNames: ["string"],
        ipVersion: "string",
        name: "string",
        packagesFirewallShapingpolicyId: "string",
        perIpShaper: "string",
        pkgFolderPath: "string",
        schedule: "string",
        scopetype: "string",
        services: ["string"],
        srcaddr6: "string",
        srcaddrs: ["string"],
        srcintfs: ["string"],
        status: "string",
        tos: "string",
        tosMask: "string",
        tosNegate: "string",
        trafficShaper: "string",
        trafficShaperReverse: "string",
        trafficType: "string",
        urlCategories: ["string"],
        users: ["string"],
        uuid: "string",
    });
    
    type: fortimanager:PackagesFirewallShapingpolicy
    properties:
        adom: string
        appCategories:
            - string
        appGroups:
            - string
        applications:
            - 0
        classId: string
        comment: string
        cos: string
        cosMask: string
        diffservForward: string
        diffservReverse: string
        diffservcodeForward: string
        diffservcodeRev: string
        dstaddr6: string
        dstaddrs:
            - string
        dstintfs:
            - string
        fosid: 0
        groups:
            - string
        internetService: string
        internetServiceCustomGroups:
            - string
        internetServiceCustoms:
            - string
        internetServiceGroups:
            - string
        internetServiceId: string
        internetServiceNames:
            - string
        internetServiceSrc: string
        internetServiceSrcCustom: string
        internetServiceSrcCustomGroup: string
        internetServiceSrcGroup: string
        internetServiceSrcId: string
        internetServiceSrcNames:
            - string
        ipVersion: string
        name: string
        packagesFirewallShapingpolicyId: string
        perIpShaper: string
        pkg: string
        pkgFolderPath: string
        schedule: string
        scopetype: string
        services:
            - string
        srcaddr6: string
        srcaddrs:
            - string
        srcintfs:
            - string
        status: string
        tos: string
        tosMask: string
        tosNegate: string
        trafficShaper: string
        trafficShaperReverse: string
        trafficType: string
        urlCategories:
            - string
        users:
            - string
        uuid: string
    

    PackagesFirewallShapingpolicy 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 PackagesFirewallShapingpolicy 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.
    AppCategories List<string>
    IDs of one or more application categories that this shaper applies application control traffic shaping to.
    AppGroups List<string>
    One or more application group names.
    Applications List<double>
    IDs of one or more applications that this shaper applies application control traffic shaping to.
    ClassId string
    Traffic class ID.
    Comment string
    Comments.
    Cos string
    VLAN CoS bit pattern.
    CosMask string
    VLAN CoS evaluated bits.
    DiffservForward string
    Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values: disable, enable.
    DiffservReverse string
    Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values: disable, enable.
    DiffservcodeForward string
    Change packet's DiffServ to this value.
    DiffservcodeRev string
    Change packet's reverse (reply) DiffServ to this value.
    Dstaddr6 string
    IPv6 destination address and address group names.
    Dstaddrs List<string>
    IPv4 destination address and address group names.
    Dstintfs List<string>
    One or more outgoing (egress) interfaces.
    Fosid double
    Shaping policy ID (0 - 4294967295).
    Groups List<string>
    Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
    InternetService string
    Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values: disable, enable.
    InternetServiceCustomGroups List<string>
    Custom Internet Service group name.
    InternetServiceCustoms List<string>
    Custom Internet Service name.
    InternetServiceGroups List<string>
    Internet Service group name.
    InternetServiceId string
    Internet Service ID.
    InternetServiceNames List<string>
    Internet Service ID.
    InternetServiceSrc string
    Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values: disable, enable.
    InternetServiceSrcCustom string
    Custom Internet Service source name.
    InternetServiceSrcCustomGroup string
    Custom Internet Service source group name.
    InternetServiceSrcGroup string
    Internet Service source group name.
    InternetServiceSrcId string
    Internet Service source ID.
    InternetServiceSrcNames List<string>
    Internet Service source name.
    IpVersion string
    Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values: 4, 6.
    Name string
    Shaping policy name.
    PackagesFirewallShapingpolicyId string
    an identifier for the resource with format {{fosid}}.
    PerIpShaper string
    Per-IP traffic shaper to apply with this policy.
    PkgFolderPath string
    Pkg Folder Path.
    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 and service group names.
    Srcaddr6 string
    IPv6 source address and address group names.
    Srcaddrs List<string>
    IPv4 source address and address group names.
    Srcintfs List<string>
    One or more incoming (ingress) interfaces.
    Status string
    Enable/disable this traffic shaping policy. Valid values: disable, enable.
    Tos string
    ToS (Type of Service) value used for comparison.
    TosMask string
    Non-zero bit positions are used for comparison while zero bit positions are ignored.
    TosNegate string
    Enable negated TOS match. Valid values: disable, enable.
    TrafficShaper string
    Traffic shaper to apply to traffic forwarded by the firewall policy.
    TrafficShaperReverse string
    Traffic shaper to apply to response traffic received by the firewall policy.
    TrafficType string
    Traffic type. Valid values: forwarding, local-in, local-out.
    UrlCategories List<string>
    IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
    Users List<string>
    Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    AppCategories []string
    IDs of one or more application categories that this shaper applies application control traffic shaping to.
    AppGroups []string
    One or more application group names.
    Applications []float64
    IDs of one or more applications that this shaper applies application control traffic shaping to.
    ClassId string
    Traffic class ID.
    Comment string
    Comments.
    Cos string
    VLAN CoS bit pattern.
    CosMask string
    VLAN CoS evaluated bits.
    DiffservForward string
    Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values: disable, enable.
    DiffservReverse string
    Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values: disable, enable.
    DiffservcodeForward string
    Change packet's DiffServ to this value.
    DiffservcodeRev string
    Change packet's reverse (reply) DiffServ to this value.
    Dstaddr6 string
    IPv6 destination address and address group names.
    Dstaddrs []string
    IPv4 destination address and address group names.
    Dstintfs []string
    One or more outgoing (egress) interfaces.
    Fosid float64
    Shaping policy ID (0 - 4294967295).
    Groups []string
    Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
    InternetService string
    Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values: disable, enable.
    InternetServiceCustomGroups []string
    Custom Internet Service group name.
    InternetServiceCustoms []string
    Custom Internet Service name.
    InternetServiceGroups []string
    Internet Service group name.
    InternetServiceId string
    Internet Service ID.
    InternetServiceNames []string
    Internet Service ID.
    InternetServiceSrc string
    Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values: disable, enable.
    InternetServiceSrcCustom string
    Custom Internet Service source name.
    InternetServiceSrcCustomGroup string
    Custom Internet Service source group name.
    InternetServiceSrcGroup string
    Internet Service source group name.
    InternetServiceSrcId string
    Internet Service source ID.
    InternetServiceSrcNames []string
    Internet Service source name.
    IpVersion string
    Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values: 4, 6.
    Name string
    Shaping policy name.
    PackagesFirewallShapingpolicyId string
    an identifier for the resource with format {{fosid}}.
    PerIpShaper string
    Per-IP traffic shaper to apply with this policy.
    PkgFolderPath string
    Pkg Folder Path.
    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 and service group names.
    Srcaddr6 string
    IPv6 source address and address group names.
    Srcaddrs []string
    IPv4 source address and address group names.
    Srcintfs []string
    One or more incoming (ingress) interfaces.
    Status string
    Enable/disable this traffic shaping policy. Valid values: disable, enable.
    Tos string
    ToS (Type of Service) value used for comparison.
    TosMask string
    Non-zero bit positions are used for comparison while zero bit positions are ignored.
    TosNegate string
    Enable negated TOS match. Valid values: disable, enable.
    TrafficShaper string
    Traffic shaper to apply to traffic forwarded by the firewall policy.
    TrafficShaperReverse string
    Traffic shaper to apply to response traffic received by the firewall policy.
    TrafficType string
    Traffic type. Valid values: forwarding, local-in, local-out.
    UrlCategories []string
    IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
    Users []string
    Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    appCategories List<String>
    IDs of one or more application categories that this shaper applies application control traffic shaping to.
    appGroups List<String>
    One or more application group names.
    applications List<Double>
    IDs of one or more applications that this shaper applies application control traffic shaping to.
    classId String
    Traffic class ID.
    comment String
    Comments.
    cos String
    VLAN CoS bit pattern.
    cosMask String
    VLAN CoS evaluated bits.
    diffservForward String
    Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values: disable, enable.
    diffservReverse String
    Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values: disable, enable.
    diffservcodeForward String
    Change packet's DiffServ to this value.
    diffservcodeRev String
    Change packet's reverse (reply) DiffServ to this value.
    dstaddr6 String
    IPv6 destination address and address group names.
    dstaddrs List<String>
    IPv4 destination address and address group names.
    dstintfs List<String>
    One or more outgoing (egress) interfaces.
    fosid Double
    Shaping policy ID (0 - 4294967295).
    groups List<String>
    Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
    internetService String
    Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values: disable, enable.
    internetServiceCustomGroups List<String>
    Custom Internet Service group name.
    internetServiceCustoms List<String>
    Custom Internet Service name.
    internetServiceGroups List<String>
    Internet Service group name.
    internetServiceId String
    Internet Service ID.
    internetServiceNames List<String>
    Internet Service ID.
    internetServiceSrc String
    Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values: disable, enable.
    internetServiceSrcCustom String
    Custom Internet Service source name.
    internetServiceSrcCustomGroup String
    Custom Internet Service source group name.
    internetServiceSrcGroup String
    Internet Service source group name.
    internetServiceSrcId String
    Internet Service source ID.
    internetServiceSrcNames List<String>
    Internet Service source name.
    ipVersion String
    Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values: 4, 6.
    name String
    Shaping policy name.
    packagesFirewallShapingpolicyId String
    an identifier for the resource with format {{fosid}}.
    perIpShaper String
    Per-IP traffic shaper to apply with this policy.
    pkgFolderPath String
    Pkg Folder Path.
    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 and service group names.
    srcaddr6 String
    IPv6 source address and address group names.
    srcaddrs List<String>
    IPv4 source address and address group names.
    srcintfs List<String>
    One or more incoming (ingress) interfaces.
    status String
    Enable/disable this traffic shaping policy. Valid values: disable, enable.
    tos String
    ToS (Type of Service) value used for comparison.
    tosMask String
    Non-zero bit positions are used for comparison while zero bit positions are ignored.
    tosNegate String
    Enable negated TOS match. Valid values: disable, enable.
    trafficShaper String
    Traffic shaper to apply to traffic forwarded by the firewall policy.
    trafficShaperReverse String
    Traffic shaper to apply to response traffic received by the firewall policy.
    trafficType String
    Traffic type. Valid values: forwarding, local-in, local-out.
    urlCategories List<String>
    IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
    users List<String>
    Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    appCategories string[]
    IDs of one or more application categories that this shaper applies application control traffic shaping to.
    appGroups string[]
    One or more application group names.
    applications number[]
    IDs of one or more applications that this shaper applies application control traffic shaping to.
    classId string
    Traffic class ID.
    comment string
    Comments.
    cos string
    VLAN CoS bit pattern.
    cosMask string
    VLAN CoS evaluated bits.
    diffservForward string
    Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values: disable, enable.
    diffservReverse string
    Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values: disable, enable.
    diffservcodeForward string
    Change packet's DiffServ to this value.
    diffservcodeRev string
    Change packet's reverse (reply) DiffServ to this value.
    dstaddr6 string
    IPv6 destination address and address group names.
    dstaddrs string[]
    IPv4 destination address and address group names.
    dstintfs string[]
    One or more outgoing (egress) interfaces.
    fosid number
    Shaping policy ID (0 - 4294967295).
    groups string[]
    Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
    internetService string
    Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values: disable, enable.
    internetServiceCustomGroups string[]
    Custom Internet Service group name.
    internetServiceCustoms string[]
    Custom Internet Service name.
    internetServiceGroups string[]
    Internet Service group name.
    internetServiceId string
    Internet Service ID.
    internetServiceNames string[]
    Internet Service ID.
    internetServiceSrc string
    Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values: disable, enable.
    internetServiceSrcCustom string
    Custom Internet Service source name.
    internetServiceSrcCustomGroup string
    Custom Internet Service source group name.
    internetServiceSrcGroup string
    Internet Service source group name.
    internetServiceSrcId string
    Internet Service source ID.
    internetServiceSrcNames string[]
    Internet Service source name.
    ipVersion string
    Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values: 4, 6.
    name string
    Shaping policy name.
    packagesFirewallShapingpolicyId string
    an identifier for the resource with format {{fosid}}.
    perIpShaper string
    Per-IP traffic shaper to apply with this policy.
    pkgFolderPath string
    Pkg Folder Path.
    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 and service group names.
    srcaddr6 string
    IPv6 source address and address group names.
    srcaddrs string[]
    IPv4 source address and address group names.
    srcintfs string[]
    One or more incoming (ingress) interfaces.
    status string
    Enable/disable this traffic shaping policy. Valid values: disable, enable.
    tos string
    ToS (Type of Service) value used for comparison.
    tosMask string
    Non-zero bit positions are used for comparison while zero bit positions are ignored.
    tosNegate string
    Enable negated TOS match. Valid values: disable, enable.
    trafficShaper string
    Traffic shaper to apply to traffic forwarded by the firewall policy.
    trafficShaperReverse string
    Traffic shaper to apply to response traffic received by the firewall policy.
    trafficType string
    Traffic type. Valid values: forwarding, local-in, local-out.
    urlCategories string[]
    IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
    users string[]
    Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    app_categories Sequence[str]
    IDs of one or more application categories that this shaper applies application control traffic shaping to.
    app_groups Sequence[str]
    One or more application group names.
    applications Sequence[float]
    IDs of one or more applications that this shaper applies application control traffic shaping to.
    class_id str
    Traffic class ID.
    comment str
    Comments.
    cos str
    VLAN CoS bit pattern.
    cos_mask str
    VLAN CoS evaluated bits.
    diffserv_forward str
    Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values: disable, enable.
    diffserv_reverse str
    Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values: disable, enable.
    diffservcode_forward str
    Change packet's DiffServ to this value.
    diffservcode_rev str
    Change packet's reverse (reply) DiffServ to this value.
    dstaddr6 str
    IPv6 destination address and address group names.
    dstaddrs Sequence[str]
    IPv4 destination address and address group names.
    dstintfs Sequence[str]
    One or more outgoing (egress) interfaces.
    fosid float
    Shaping policy ID (0 - 4294967295).
    groups Sequence[str]
    Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
    internet_service str
    Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values: disable, enable.
    internet_service_custom_groups Sequence[str]
    Custom Internet Service group name.
    internet_service_customs Sequence[str]
    Custom Internet Service name.
    internet_service_groups Sequence[str]
    Internet Service group name.
    internet_service_id str
    Internet Service ID.
    internet_service_names Sequence[str]
    Internet Service ID.
    internet_service_src str
    Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values: disable, enable.
    internet_service_src_custom str
    Custom Internet Service source name.
    internet_service_src_custom_group str
    Custom Internet Service source group name.
    internet_service_src_group str
    Internet Service source group name.
    internet_service_src_id str
    Internet Service source ID.
    internet_service_src_names Sequence[str]
    Internet Service source name.
    ip_version str
    Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values: 4, 6.
    name str
    Shaping policy name.
    packages_firewall_shapingpolicy_id str
    an identifier for the resource with format {{fosid}}.
    per_ip_shaper str
    Per-IP traffic shaper to apply with this policy.
    pkg_folder_path str
    Pkg Folder Path.
    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 and service group names.
    srcaddr6 str
    IPv6 source address and address group names.
    srcaddrs Sequence[str]
    IPv4 source address and address group names.
    srcintfs Sequence[str]
    One or more incoming (ingress) interfaces.
    status str
    Enable/disable this traffic shaping policy. Valid values: disable, enable.
    tos str
    ToS (Type of Service) value used for comparison.
    tos_mask str
    Non-zero bit positions are used for comparison while zero bit positions are ignored.
    tos_negate str
    Enable negated TOS match. Valid values: disable, enable.
    traffic_shaper str
    Traffic shaper to apply to traffic forwarded by the firewall policy.
    traffic_shaper_reverse str
    Traffic shaper to apply to response traffic received by the firewall policy.
    traffic_type str
    Traffic type. Valid values: forwarding, local-in, local-out.
    url_categories Sequence[str]
    IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
    users Sequence[str]
    Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    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.
    appCategories List<String>
    IDs of one or more application categories that this shaper applies application control traffic shaping to.
    appGroups List<String>
    One or more application group names.
    applications List<Number>
    IDs of one or more applications that this shaper applies application control traffic shaping to.
    classId String
    Traffic class ID.
    comment String
    Comments.
    cos String
    VLAN CoS bit pattern.
    cosMask String
    VLAN CoS evaluated bits.
    diffservForward String
    Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values: disable, enable.
    diffservReverse String
    Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values: disable, enable.
    diffservcodeForward String
    Change packet's DiffServ to this value.
    diffservcodeRev String
    Change packet's reverse (reply) DiffServ to this value.
    dstaddr6 String
    IPv6 destination address and address group names.
    dstaddrs List<String>
    IPv4 destination address and address group names.
    dstintfs List<String>
    One or more outgoing (egress) interfaces.
    fosid Number
    Shaping policy ID (0 - 4294967295).
    groups List<String>
    Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
    internetService String
    Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values: disable, enable.
    internetServiceCustomGroups List<String>
    Custom Internet Service group name.
    internetServiceCustoms List<String>
    Custom Internet Service name.
    internetServiceGroups List<String>
    Internet Service group name.
    internetServiceId String
    Internet Service ID.
    internetServiceNames List<String>
    Internet Service ID.
    internetServiceSrc String
    Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values: disable, enable.
    internetServiceSrcCustom String
    Custom Internet Service source name.
    internetServiceSrcCustomGroup String
    Custom Internet Service source group name.
    internetServiceSrcGroup String
    Internet Service source group name.
    internetServiceSrcId String
    Internet Service source ID.
    internetServiceSrcNames List<String>
    Internet Service source name.
    ipVersion String
    Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values: 4, 6.
    name String
    Shaping policy name.
    packagesFirewallShapingpolicyId String
    an identifier for the resource with format {{fosid}}.
    perIpShaper String
    Per-IP traffic shaper to apply with this policy.
    pkgFolderPath String
    Pkg Folder Path.
    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 and service group names.
    srcaddr6 String
    IPv6 source address and address group names.
    srcaddrs List<String>
    IPv4 source address and address group names.
    srcintfs List<String>
    One or more incoming (ingress) interfaces.
    status String
    Enable/disable this traffic shaping policy. Valid values: disable, enable.
    tos String
    ToS (Type of Service) value used for comparison.
    tosMask String
    Non-zero bit positions are used for comparison while zero bit positions are ignored.
    tosNegate String
    Enable negated TOS match. Valid values: disable, enable.
    trafficShaper String
    Traffic shaper to apply to traffic forwarded by the firewall policy.
    trafficShaperReverse String
    Traffic shaper to apply to response traffic received by the firewall policy.
    trafficType String
    Traffic type. Valid values: forwarding, local-in, local-out.
    urlCategories List<String>
    IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
    users List<String>
    Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
    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 PackagesFirewallShapingpolicy 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 PackagesFirewallShapingpolicy Resource

    Get an existing PackagesFirewallShapingpolicy 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?: PackagesFirewallShapingpolicyState, opts?: CustomResourceOptions): PackagesFirewallShapingpolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            app_categories: Optional[Sequence[str]] = None,
            app_groups: Optional[Sequence[str]] = None,
            applications: Optional[Sequence[float]] = None,
            class_id: Optional[str] = None,
            comment: Optional[str] = None,
            cos: Optional[str] = None,
            cos_mask: Optional[str] = None,
            diffserv_forward: Optional[str] = None,
            diffserv_reverse: Optional[str] = None,
            diffservcode_forward: Optional[str] = None,
            diffservcode_rev: Optional[str] = None,
            dstaddr6: Optional[str] = None,
            dstaddrs: Optional[Sequence[str]] = None,
            dstintfs: Optional[Sequence[str]] = None,
            fosid: Optional[float] = None,
            groups: Optional[Sequence[str]] = None,
            internet_service: Optional[str] = None,
            internet_service_custom_groups: Optional[Sequence[str]] = None,
            internet_service_customs: Optional[Sequence[str]] = None,
            internet_service_groups: Optional[Sequence[str]] = None,
            internet_service_id: Optional[str] = None,
            internet_service_names: Optional[Sequence[str]] = None,
            internet_service_src: Optional[str] = None,
            internet_service_src_custom: Optional[str] = None,
            internet_service_src_custom_group: Optional[str] = None,
            internet_service_src_group: Optional[str] = None,
            internet_service_src_id: Optional[str] = None,
            internet_service_src_names: Optional[Sequence[str]] = None,
            ip_version: Optional[str] = None,
            name: Optional[str] = None,
            packages_firewall_shapingpolicy_id: Optional[str] = None,
            per_ip_shaper: Optional[str] = None,
            pkg: Optional[str] = None,
            pkg_folder_path: Optional[str] = None,
            schedule: Optional[str] = None,
            scopetype: Optional[str] = None,
            services: Optional[Sequence[str]] = None,
            srcaddr6: Optional[str] = None,
            srcaddrs: Optional[Sequence[str]] = None,
            srcintfs: Optional[Sequence[str]] = None,
            status: Optional[str] = None,
            tos: Optional[str] = None,
            tos_mask: Optional[str] = None,
            tos_negate: Optional[str] = None,
            traffic_shaper: Optional[str] = None,
            traffic_shaper_reverse: Optional[str] = None,
            traffic_type: Optional[str] = None,
            url_categories: Optional[Sequence[str]] = None,
            users: Optional[Sequence[str]] = None,
            uuid: Optional[str] = None) -> PackagesFirewallShapingpolicy
    func GetPackagesFirewallShapingpolicy(ctx *Context, name string, id IDInput, state *PackagesFirewallShapingpolicyState, opts ...ResourceOption) (*PackagesFirewallShapingpolicy, error)
    public static PackagesFirewallShapingpolicy Get(string name, Input<string> id, PackagesFirewallShapingpolicyState? state, CustomResourceOptions? opts = null)
    public static PackagesFirewallShapingpolicy get(String name, Output<String> id, PackagesFirewallShapingpolicyState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:PackagesFirewallShapingpolicy    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.
    AppCategories List<string>
    IDs of one or more application categories that this shaper applies application control traffic shaping to.
    AppGroups List<string>
    One or more application group names.
    Applications List<double>
    IDs of one or more applications that this shaper applies application control traffic shaping to.
    ClassId string
    Traffic class ID.
    Comment string
    Comments.
    Cos string
    VLAN CoS bit pattern.
    CosMask string
    VLAN CoS evaluated bits.
    DiffservForward string
    Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values: disable, enable.
    DiffservReverse string
    Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values: disable, enable.
    DiffservcodeForward string
    Change packet's DiffServ to this value.
    DiffservcodeRev string
    Change packet's reverse (reply) DiffServ to this value.
    Dstaddr6 string
    IPv6 destination address and address group names.
    Dstaddrs List<string>
    IPv4 destination address and address group names.
    Dstintfs List<string>
    One or more outgoing (egress) interfaces.
    Fosid double
    Shaping policy ID (0 - 4294967295).
    Groups List<string>
    Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
    InternetService string
    Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values: disable, enable.
    InternetServiceCustomGroups List<string>
    Custom Internet Service group name.
    InternetServiceCustoms List<string>
    Custom Internet Service name.
    InternetServiceGroups List<string>
    Internet Service group name.
    InternetServiceId string
    Internet Service ID.
    InternetServiceNames List<string>
    Internet Service ID.
    InternetServiceSrc string
    Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values: disable, enable.
    InternetServiceSrcCustom string
    Custom Internet Service source name.
    InternetServiceSrcCustomGroup string
    Custom Internet Service source group name.
    InternetServiceSrcGroup string
    Internet Service source group name.
    InternetServiceSrcId string
    Internet Service source ID.
    InternetServiceSrcNames List<string>
    Internet Service source name.
    IpVersion string
    Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values: 4, 6.
    Name string
    Shaping policy name.
    PackagesFirewallShapingpolicyId string
    an identifier for the resource with format {{fosid}}.
    PerIpShaper string
    Per-IP traffic shaper to apply with this policy.
    Pkg string
    Package.
    PkgFolderPath string
    Pkg Folder Path.
    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 and service group names.
    Srcaddr6 string
    IPv6 source address and address group names.
    Srcaddrs List<string>
    IPv4 source address and address group names.
    Srcintfs List<string>
    One or more incoming (ingress) interfaces.
    Status string
    Enable/disable this traffic shaping policy. Valid values: disable, enable.
    Tos string
    ToS (Type of Service) value used for comparison.
    TosMask string
    Non-zero bit positions are used for comparison while zero bit positions are ignored.
    TosNegate string
    Enable negated TOS match. Valid values: disable, enable.
    TrafficShaper string
    Traffic shaper to apply to traffic forwarded by the firewall policy.
    TrafficShaperReverse string
    Traffic shaper to apply to response traffic received by the firewall policy.
    TrafficType string
    Traffic type. Valid values: forwarding, local-in, local-out.
    UrlCategories List<string>
    IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
    Users List<string>
    Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AppCategories []string
    IDs of one or more application categories that this shaper applies application control traffic shaping to.
    AppGroups []string
    One or more application group names.
    Applications []float64
    IDs of one or more applications that this shaper applies application control traffic shaping to.
    ClassId string
    Traffic class ID.
    Comment string
    Comments.
    Cos string
    VLAN CoS bit pattern.
    CosMask string
    VLAN CoS evaluated bits.
    DiffservForward string
    Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values: disable, enable.
    DiffservReverse string
    Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values: disable, enable.
    DiffservcodeForward string
    Change packet's DiffServ to this value.
    DiffservcodeRev string
    Change packet's reverse (reply) DiffServ to this value.
    Dstaddr6 string
    IPv6 destination address and address group names.
    Dstaddrs []string
    IPv4 destination address and address group names.
    Dstintfs []string
    One or more outgoing (egress) interfaces.
    Fosid float64
    Shaping policy ID (0 - 4294967295).
    Groups []string
    Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
    InternetService string
    Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values: disable, enable.
    InternetServiceCustomGroups []string
    Custom Internet Service group name.
    InternetServiceCustoms []string
    Custom Internet Service name.
    InternetServiceGroups []string
    Internet Service group name.
    InternetServiceId string
    Internet Service ID.
    InternetServiceNames []string
    Internet Service ID.
    InternetServiceSrc string
    Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values: disable, enable.
    InternetServiceSrcCustom string
    Custom Internet Service source name.
    InternetServiceSrcCustomGroup string
    Custom Internet Service source group name.
    InternetServiceSrcGroup string
    Internet Service source group name.
    InternetServiceSrcId string
    Internet Service source ID.
    InternetServiceSrcNames []string
    Internet Service source name.
    IpVersion string
    Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values: 4, 6.
    Name string
    Shaping policy name.
    PackagesFirewallShapingpolicyId string
    an identifier for the resource with format {{fosid}}.
    PerIpShaper string
    Per-IP traffic shaper to apply with this policy.
    Pkg string
    Package.
    PkgFolderPath string
    Pkg Folder Path.
    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 and service group names.
    Srcaddr6 string
    IPv6 source address and address group names.
    Srcaddrs []string
    IPv4 source address and address group names.
    Srcintfs []string
    One or more incoming (ingress) interfaces.
    Status string
    Enable/disable this traffic shaping policy. Valid values: disable, enable.
    Tos string
    ToS (Type of Service) value used for comparison.
    TosMask string
    Non-zero bit positions are used for comparison while zero bit positions are ignored.
    TosNegate string
    Enable negated TOS match. Valid values: disable, enable.
    TrafficShaper string
    Traffic shaper to apply to traffic forwarded by the firewall policy.
    TrafficShaperReverse string
    Traffic shaper to apply to response traffic received by the firewall policy.
    TrafficType string
    Traffic type. Valid values: forwarding, local-in, local-out.
    UrlCategories []string
    IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
    Users []string
    Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    appCategories List<String>
    IDs of one or more application categories that this shaper applies application control traffic shaping to.
    appGroups List<String>
    One or more application group names.
    applications List<Double>
    IDs of one or more applications that this shaper applies application control traffic shaping to.
    classId String
    Traffic class ID.
    comment String
    Comments.
    cos String
    VLAN CoS bit pattern.
    cosMask String
    VLAN CoS evaluated bits.
    diffservForward String
    Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values: disable, enable.
    diffservReverse String
    Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values: disable, enable.
    diffservcodeForward String
    Change packet's DiffServ to this value.
    diffservcodeRev String
    Change packet's reverse (reply) DiffServ to this value.
    dstaddr6 String
    IPv6 destination address and address group names.
    dstaddrs List<String>
    IPv4 destination address and address group names.
    dstintfs List<String>
    One or more outgoing (egress) interfaces.
    fosid Double
    Shaping policy ID (0 - 4294967295).
    groups List<String>
    Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
    internetService String
    Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values: disable, enable.
    internetServiceCustomGroups List<String>
    Custom Internet Service group name.
    internetServiceCustoms List<String>
    Custom Internet Service name.
    internetServiceGroups List<String>
    Internet Service group name.
    internetServiceId String
    Internet Service ID.
    internetServiceNames List<String>
    Internet Service ID.
    internetServiceSrc String
    Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values: disable, enable.
    internetServiceSrcCustom String
    Custom Internet Service source name.
    internetServiceSrcCustomGroup String
    Custom Internet Service source group name.
    internetServiceSrcGroup String
    Internet Service source group name.
    internetServiceSrcId String
    Internet Service source ID.
    internetServiceSrcNames List<String>
    Internet Service source name.
    ipVersion String
    Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values: 4, 6.
    name String
    Shaping policy name.
    packagesFirewallShapingpolicyId String
    an identifier for the resource with format {{fosid}}.
    perIpShaper String
    Per-IP traffic shaper to apply with this policy.
    pkg String
    Package.
    pkgFolderPath String
    Pkg Folder Path.
    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 and service group names.
    srcaddr6 String
    IPv6 source address and address group names.
    srcaddrs List<String>
    IPv4 source address and address group names.
    srcintfs List<String>
    One or more incoming (ingress) interfaces.
    status String
    Enable/disable this traffic shaping policy. Valid values: disable, enable.
    tos String
    ToS (Type of Service) value used for comparison.
    tosMask String
    Non-zero bit positions are used for comparison while zero bit positions are ignored.
    tosNegate String
    Enable negated TOS match. Valid values: disable, enable.
    trafficShaper String
    Traffic shaper to apply to traffic forwarded by the firewall policy.
    trafficShaperReverse String
    Traffic shaper to apply to response traffic received by the firewall policy.
    trafficType String
    Traffic type. Valid values: forwarding, local-in, local-out.
    urlCategories List<String>
    IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
    users List<String>
    Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    appCategories string[]
    IDs of one or more application categories that this shaper applies application control traffic shaping to.
    appGroups string[]
    One or more application group names.
    applications number[]
    IDs of one or more applications that this shaper applies application control traffic shaping to.
    classId string
    Traffic class ID.
    comment string
    Comments.
    cos string
    VLAN CoS bit pattern.
    cosMask string
    VLAN CoS evaluated bits.
    diffservForward string
    Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values: disable, enable.
    diffservReverse string
    Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values: disable, enable.
    diffservcodeForward string
    Change packet's DiffServ to this value.
    diffservcodeRev string
    Change packet's reverse (reply) DiffServ to this value.
    dstaddr6 string
    IPv6 destination address and address group names.
    dstaddrs string[]
    IPv4 destination address and address group names.
    dstintfs string[]
    One or more outgoing (egress) interfaces.
    fosid number
    Shaping policy ID (0 - 4294967295).
    groups string[]
    Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
    internetService string
    Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values: disable, enable.
    internetServiceCustomGroups string[]
    Custom Internet Service group name.
    internetServiceCustoms string[]
    Custom Internet Service name.
    internetServiceGroups string[]
    Internet Service group name.
    internetServiceId string
    Internet Service ID.
    internetServiceNames string[]
    Internet Service ID.
    internetServiceSrc string
    Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values: disable, enable.
    internetServiceSrcCustom string
    Custom Internet Service source name.
    internetServiceSrcCustomGroup string
    Custom Internet Service source group name.
    internetServiceSrcGroup string
    Internet Service source group name.
    internetServiceSrcId string
    Internet Service source ID.
    internetServiceSrcNames string[]
    Internet Service source name.
    ipVersion string
    Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values: 4, 6.
    name string
    Shaping policy name.
    packagesFirewallShapingpolicyId string
    an identifier for the resource with format {{fosid}}.
    perIpShaper string
    Per-IP traffic shaper to apply with this policy.
    pkg string
    Package.
    pkgFolderPath string
    Pkg Folder Path.
    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 and service group names.
    srcaddr6 string
    IPv6 source address and address group names.
    srcaddrs string[]
    IPv4 source address and address group names.
    srcintfs string[]
    One or more incoming (ingress) interfaces.
    status string
    Enable/disable this traffic shaping policy. Valid values: disable, enable.
    tos string
    ToS (Type of Service) value used for comparison.
    tosMask string
    Non-zero bit positions are used for comparison while zero bit positions are ignored.
    tosNegate string
    Enable negated TOS match. Valid values: disable, enable.
    trafficShaper string
    Traffic shaper to apply to traffic forwarded by the firewall policy.
    trafficShaperReverse string
    Traffic shaper to apply to response traffic received by the firewall policy.
    trafficType string
    Traffic type. Valid values: forwarding, local-in, local-out.
    urlCategories string[]
    IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
    users string[]
    Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    app_categories Sequence[str]
    IDs of one or more application categories that this shaper applies application control traffic shaping to.
    app_groups Sequence[str]
    One or more application group names.
    applications Sequence[float]
    IDs of one or more applications that this shaper applies application control traffic shaping to.
    class_id str
    Traffic class ID.
    comment str
    Comments.
    cos str
    VLAN CoS bit pattern.
    cos_mask str
    VLAN CoS evaluated bits.
    diffserv_forward str
    Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values: disable, enable.
    diffserv_reverse str
    Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values: disable, enable.
    diffservcode_forward str
    Change packet's DiffServ to this value.
    diffservcode_rev str
    Change packet's reverse (reply) DiffServ to this value.
    dstaddr6 str
    IPv6 destination address and address group names.
    dstaddrs Sequence[str]
    IPv4 destination address and address group names.
    dstintfs Sequence[str]
    One or more outgoing (egress) interfaces.
    fosid float
    Shaping policy ID (0 - 4294967295).
    groups Sequence[str]
    Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
    internet_service str
    Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values: disable, enable.
    internet_service_custom_groups Sequence[str]
    Custom Internet Service group name.
    internet_service_customs Sequence[str]
    Custom Internet Service name.
    internet_service_groups Sequence[str]
    Internet Service group name.
    internet_service_id str
    Internet Service ID.
    internet_service_names Sequence[str]
    Internet Service ID.
    internet_service_src str
    Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values: disable, enable.
    internet_service_src_custom str
    Custom Internet Service source name.
    internet_service_src_custom_group str
    Custom Internet Service source group name.
    internet_service_src_group str
    Internet Service source group name.
    internet_service_src_id str
    Internet Service source ID.
    internet_service_src_names Sequence[str]
    Internet Service source name.
    ip_version str
    Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values: 4, 6.
    name str
    Shaping policy name.
    packages_firewall_shapingpolicy_id str
    an identifier for the resource with format {{fosid}}.
    per_ip_shaper str
    Per-IP traffic shaper to apply with this policy.
    pkg str
    Package.
    pkg_folder_path str
    Pkg Folder Path.
    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 and service group names.
    srcaddr6 str
    IPv6 source address and address group names.
    srcaddrs Sequence[str]
    IPv4 source address and address group names.
    srcintfs Sequence[str]
    One or more incoming (ingress) interfaces.
    status str
    Enable/disable this traffic shaping policy. Valid values: disable, enable.
    tos str
    ToS (Type of Service) value used for comparison.
    tos_mask str
    Non-zero bit positions are used for comparison while zero bit positions are ignored.
    tos_negate str
    Enable negated TOS match. Valid values: disable, enable.
    traffic_shaper str
    Traffic shaper to apply to traffic forwarded by the firewall policy.
    traffic_shaper_reverse str
    Traffic shaper to apply to response traffic received by the firewall policy.
    traffic_type str
    Traffic type. Valid values: forwarding, local-in, local-out.
    url_categories Sequence[str]
    IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
    users Sequence[str]
    Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    appCategories List<String>
    IDs of one or more application categories that this shaper applies application control traffic shaping to.
    appGroups List<String>
    One or more application group names.
    applications List<Number>
    IDs of one or more applications that this shaper applies application control traffic shaping to.
    classId String
    Traffic class ID.
    comment String
    Comments.
    cos String
    VLAN CoS bit pattern.
    cosMask String
    VLAN CoS evaluated bits.
    diffservForward String
    Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values: disable, enable.
    diffservReverse String
    Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values: disable, enable.
    diffservcodeForward String
    Change packet's DiffServ to this value.
    diffservcodeRev String
    Change packet's reverse (reply) DiffServ to this value.
    dstaddr6 String
    IPv6 destination address and address group names.
    dstaddrs List<String>
    IPv4 destination address and address group names.
    dstintfs List<String>
    One or more outgoing (egress) interfaces.
    fosid Number
    Shaping policy ID (0 - 4294967295).
    groups List<String>
    Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
    internetService String
    Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values: disable, enable.
    internetServiceCustomGroups List<String>
    Custom Internet Service group name.
    internetServiceCustoms List<String>
    Custom Internet Service name.
    internetServiceGroups List<String>
    Internet Service group name.
    internetServiceId String
    Internet Service ID.
    internetServiceNames List<String>
    Internet Service ID.
    internetServiceSrc String
    Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values: disable, enable.
    internetServiceSrcCustom String
    Custom Internet Service source name.
    internetServiceSrcCustomGroup String
    Custom Internet Service source group name.
    internetServiceSrcGroup String
    Internet Service source group name.
    internetServiceSrcId String
    Internet Service source ID.
    internetServiceSrcNames List<String>
    Internet Service source name.
    ipVersion String
    Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values: 4, 6.
    name String
    Shaping policy name.
    packagesFirewallShapingpolicyId String
    an identifier for the resource with format {{fosid}}.
    perIpShaper String
    Per-IP traffic shaper to apply with this policy.
    pkg String
    Package.
    pkgFolderPath String
    Pkg Folder Path.
    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 and service group names.
    srcaddr6 String
    IPv6 source address and address group names.
    srcaddrs List<String>
    IPv4 source address and address group names.
    srcintfs List<String>
    One or more incoming (ingress) interfaces.
    status String
    Enable/disable this traffic shaping policy. Valid values: disable, enable.
    tos String
    ToS (Type of Service) value used for comparison.
    tosMask String
    Non-zero bit positions are used for comparison while zero bit positions are ignored.
    tosNegate String
    Enable negated TOS match. Valid values: disable, enable.
    trafficShaper String
    Traffic shaper to apply to traffic forwarded by the firewall policy.
    trafficShaperReverse String
    Traffic shaper to apply to response traffic received by the firewall policy.
    trafficType String
    Traffic type. Valid values: forwarding, local-in, local-out.
    urlCategories List<String>
    IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
    users List<String>
    Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).

    Import

    Packages FirewallShapingPolicy 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/packagesFirewallShapingpolicy:PackagesFirewallShapingpolicy labelname {{fosid}}
    

    $ 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