fortimanager.PackagesGlobalFooterShapingpolicy
Explore with Pulumi AI
Configure shaping policies.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.PackagesGlobalFooterShapingpolicy("trname", {
comment: "This is a Terraform example",
dstaddr: "gall",
dstintf: "any",
fosid: 1,
pkg: "default",
service: "gALL",
srcaddr: "gall",
srcintf: "any",
status: "enable",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.PackagesGlobalFooterShapingpolicy("trname",
comment="This is a Terraform example",
dstaddr="gall",
dstintf="any",
fosid=1,
pkg="default",
service="gALL",
srcaddr="gall",
srcintf="any",
status="enable")
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.NewPackagesGlobalFooterShapingpolicy(ctx, "trname", &fortimanager.PackagesGlobalFooterShapingpolicyArgs{
Comment: pulumi.String("This is a Terraform example"),
Dstaddr: pulumi.String("gall"),
Dstintf: pulumi.String("any"),
Fosid: pulumi.Float64(1),
Pkg: pulumi.String("default"),
Service: pulumi.String("gALL"),
Srcaddr: pulumi.String("gall"),
Srcintf: pulumi.String("any"),
Status: pulumi.String("enable"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.PackagesGlobalFooterShapingpolicy("trname", new()
{
Comment = "This is a Terraform example",
Dstaddr = "gall",
Dstintf = "any",
Fosid = 1,
Pkg = "default",
Service = "gALL",
Srcaddr = "gall",
Srcintf = "any",
Status = "enable",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.PackagesGlobalFooterShapingpolicy;
import com.pulumi.fortimanager.PackagesGlobalFooterShapingpolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new PackagesGlobalFooterShapingpolicy("trname", PackagesGlobalFooterShapingpolicyArgs.builder()
.comment("This is a Terraform example")
.dstaddr("gall")
.dstintf("any")
.fosid("1")
.pkg("default")
.service("gALL")
.srcaddr("gall")
.srcintf("any")
.status("enable")
.build());
}
}
resources:
trname:
type: fortimanager:PackagesGlobalFooterShapingpolicy
properties:
comment: This is a Terraform example
dstaddr: gall
dstintf: any
fosid: '1'
pkg: default
service: gALL
srcaddr: gall
srcintf: any
status: enable
Create PackagesGlobalFooterShapingpolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PackagesGlobalFooterShapingpolicy(name: string, args: PackagesGlobalFooterShapingpolicyArgs, opts?: CustomResourceOptions);
@overload
def PackagesGlobalFooterShapingpolicy(resource_name: str,
args: PackagesGlobalFooterShapingpolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PackagesGlobalFooterShapingpolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
pkg: Optional[str] = None,
app_category: Optional[str] = None,
app_group: Optional[str] = None,
applications: Optional[Sequence[float]] = None,
class_id: Optional[str] = None,
class_id_reverse: Optional[float] = 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,
dstaddr: Optional[str] = None,
dstaddr6: Optional[str] = None,
dstintf: Optional[str] = None,
fosid: Optional[float] = None,
groups: Optional[str] = None,
internet_service: Optional[str] = None,
internet_service_custom: Optional[str] = None,
internet_service_custom_group: Optional[str] = None,
internet_service_group: Optional[str] = None,
internet_service_id: Optional[str] = None,
internet_service_name: Optional[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_name: Optional[str] = None,
ip_version: Optional[str] = None,
name: Optional[str] = None,
packages_global_footer_shapingpolicy_id: Optional[str] = None,
per_ip_shaper: Optional[str] = None,
pkg_folder_path: Optional[str] = None,
schedule: Optional[str] = None,
service: Optional[str] = None,
service_type: Optional[str] = None,
srcaddr: Optional[str] = None,
srcaddr6: Optional[str] = None,
srcintf: Optional[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_category: Optional[str] = None,
users: Optional[str] = None,
uuid: Optional[str] = None,
uuid_idx: Optional[float] = None)
func NewPackagesGlobalFooterShapingpolicy(ctx *Context, name string, args PackagesGlobalFooterShapingpolicyArgs, opts ...ResourceOption) (*PackagesGlobalFooterShapingpolicy, error)
public PackagesGlobalFooterShapingpolicy(string name, PackagesGlobalFooterShapingpolicyArgs args, CustomResourceOptions? opts = null)
public PackagesGlobalFooterShapingpolicy(String name, PackagesGlobalFooterShapingpolicyArgs args)
public PackagesGlobalFooterShapingpolicy(String name, PackagesGlobalFooterShapingpolicyArgs args, CustomResourceOptions options)
type: fortimanager:PackagesGlobalFooterShapingpolicy
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 PackagesGlobalFooterShapingpolicyArgs
- 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 PackagesGlobalFooterShapingpolicyArgs
- 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 PackagesGlobalFooterShapingpolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PackagesGlobalFooterShapingpolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PackagesGlobalFooterShapingpolicyArgs
- 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 packagesGlobalFooterShapingpolicyResource = new Fortimanager.PackagesGlobalFooterShapingpolicy("packagesGlobalFooterShapingpolicyResource", new()
{
Pkg = "string",
AppCategory = "string",
AppGroup = "string",
Applications = new[]
{
0,
},
ClassId = "string",
ClassIdReverse = 0,
Comment = "string",
Cos = "string",
CosMask = "string",
DiffservForward = "string",
DiffservReverse = "string",
DiffservcodeForward = "string",
DiffservcodeRev = "string",
Dstaddr = "string",
Dstaddr6 = "string",
Dstintf = "string",
Fosid = 0,
Groups = "string",
InternetService = "string",
InternetServiceCustom = "string",
InternetServiceCustomGroup = "string",
InternetServiceGroup = "string",
InternetServiceId = "string",
InternetServiceName = "string",
InternetServiceSrc = "string",
InternetServiceSrcCustom = "string",
InternetServiceSrcCustomGroup = "string",
InternetServiceSrcGroup = "string",
InternetServiceSrcId = "string",
InternetServiceSrcName = "string",
IpVersion = "string",
Name = "string",
PackagesGlobalFooterShapingpolicyId = "string",
PerIpShaper = "string",
PkgFolderPath = "string",
Schedule = "string",
Service = "string",
ServiceType = "string",
Srcaddr = "string",
Srcaddr6 = "string",
Srcintf = "string",
Status = "string",
Tos = "string",
TosMask = "string",
TosNegate = "string",
TrafficShaper = "string",
TrafficShaperReverse = "string",
TrafficType = "string",
UrlCategory = "string",
Users = "string",
Uuid = "string",
UuidIdx = 0,
});
example, err := fortimanager.NewPackagesGlobalFooterShapingpolicy(ctx, "packagesGlobalFooterShapingpolicyResource", &fortimanager.PackagesGlobalFooterShapingpolicyArgs{
Pkg: pulumi.String("string"),
AppCategory: pulumi.String("string"),
AppGroup: pulumi.String("string"),
Applications: pulumi.Float64Array{
pulumi.Float64(0),
},
ClassId: pulumi.String("string"),
ClassIdReverse: pulumi.Float64(0),
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"),
Dstaddr: pulumi.String("string"),
Dstaddr6: pulumi.String("string"),
Dstintf: pulumi.String("string"),
Fosid: pulumi.Float64(0),
Groups: pulumi.String("string"),
InternetService: pulumi.String("string"),
InternetServiceCustom: pulumi.String("string"),
InternetServiceCustomGroup: pulumi.String("string"),
InternetServiceGroup: pulumi.String("string"),
InternetServiceId: pulumi.String("string"),
InternetServiceName: pulumi.String("string"),
InternetServiceSrc: pulumi.String("string"),
InternetServiceSrcCustom: pulumi.String("string"),
InternetServiceSrcCustomGroup: pulumi.String("string"),
InternetServiceSrcGroup: pulumi.String("string"),
InternetServiceSrcId: pulumi.String("string"),
InternetServiceSrcName: pulumi.String("string"),
IpVersion: pulumi.String("string"),
Name: pulumi.String("string"),
PackagesGlobalFooterShapingpolicyId: pulumi.String("string"),
PerIpShaper: pulumi.String("string"),
PkgFolderPath: pulumi.String("string"),
Schedule: pulumi.String("string"),
Service: pulumi.String("string"),
ServiceType: pulumi.String("string"),
Srcaddr: pulumi.String("string"),
Srcaddr6: pulumi.String("string"),
Srcintf: 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"),
UrlCategory: pulumi.String("string"),
Users: pulumi.String("string"),
Uuid: pulumi.String("string"),
UuidIdx: pulumi.Float64(0),
})
var packagesGlobalFooterShapingpolicyResource = new PackagesGlobalFooterShapingpolicy("packagesGlobalFooterShapingpolicyResource", PackagesGlobalFooterShapingpolicyArgs.builder()
.pkg("string")
.appCategory("string")
.appGroup("string")
.applications(0)
.classId("string")
.classIdReverse(0)
.comment("string")
.cos("string")
.cosMask("string")
.diffservForward("string")
.diffservReverse("string")
.diffservcodeForward("string")
.diffservcodeRev("string")
.dstaddr("string")
.dstaddr6("string")
.dstintf("string")
.fosid(0)
.groups("string")
.internetService("string")
.internetServiceCustom("string")
.internetServiceCustomGroup("string")
.internetServiceGroup("string")
.internetServiceId("string")
.internetServiceName("string")
.internetServiceSrc("string")
.internetServiceSrcCustom("string")
.internetServiceSrcCustomGroup("string")
.internetServiceSrcGroup("string")
.internetServiceSrcId("string")
.internetServiceSrcName("string")
.ipVersion("string")
.name("string")
.packagesGlobalFooterShapingpolicyId("string")
.perIpShaper("string")
.pkgFolderPath("string")
.schedule("string")
.service("string")
.serviceType("string")
.srcaddr("string")
.srcaddr6("string")
.srcintf("string")
.status("string")
.tos("string")
.tosMask("string")
.tosNegate("string")
.trafficShaper("string")
.trafficShaperReverse("string")
.trafficType("string")
.urlCategory("string")
.users("string")
.uuid("string")
.uuidIdx(0)
.build());
packages_global_footer_shapingpolicy_resource = fortimanager.PackagesGlobalFooterShapingpolicy("packagesGlobalFooterShapingpolicyResource",
pkg="string",
app_category="string",
app_group="string",
applications=[0],
class_id="string",
class_id_reverse=0,
comment="string",
cos="string",
cos_mask="string",
diffserv_forward="string",
diffserv_reverse="string",
diffservcode_forward="string",
diffservcode_rev="string",
dstaddr="string",
dstaddr6="string",
dstintf="string",
fosid=0,
groups="string",
internet_service="string",
internet_service_custom="string",
internet_service_custom_group="string",
internet_service_group="string",
internet_service_id="string",
internet_service_name="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_name="string",
ip_version="string",
name="string",
packages_global_footer_shapingpolicy_id="string",
per_ip_shaper="string",
pkg_folder_path="string",
schedule="string",
service="string",
service_type="string",
srcaddr="string",
srcaddr6="string",
srcintf="string",
status="string",
tos="string",
tos_mask="string",
tos_negate="string",
traffic_shaper="string",
traffic_shaper_reverse="string",
traffic_type="string",
url_category="string",
users="string",
uuid="string",
uuid_idx=0)
const packagesGlobalFooterShapingpolicyResource = new fortimanager.PackagesGlobalFooterShapingpolicy("packagesGlobalFooterShapingpolicyResource", {
pkg: "string",
appCategory: "string",
appGroup: "string",
applications: [0],
classId: "string",
classIdReverse: 0,
comment: "string",
cos: "string",
cosMask: "string",
diffservForward: "string",
diffservReverse: "string",
diffservcodeForward: "string",
diffservcodeRev: "string",
dstaddr: "string",
dstaddr6: "string",
dstintf: "string",
fosid: 0,
groups: "string",
internetService: "string",
internetServiceCustom: "string",
internetServiceCustomGroup: "string",
internetServiceGroup: "string",
internetServiceId: "string",
internetServiceName: "string",
internetServiceSrc: "string",
internetServiceSrcCustom: "string",
internetServiceSrcCustomGroup: "string",
internetServiceSrcGroup: "string",
internetServiceSrcId: "string",
internetServiceSrcName: "string",
ipVersion: "string",
name: "string",
packagesGlobalFooterShapingpolicyId: "string",
perIpShaper: "string",
pkgFolderPath: "string",
schedule: "string",
service: "string",
serviceType: "string",
srcaddr: "string",
srcaddr6: "string",
srcintf: "string",
status: "string",
tos: "string",
tosMask: "string",
tosNegate: "string",
trafficShaper: "string",
trafficShaperReverse: "string",
trafficType: "string",
urlCategory: "string",
users: "string",
uuid: "string",
uuidIdx: 0,
});
type: fortimanager:PackagesGlobalFooterShapingpolicy
properties:
appCategory: string
appGroup: string
applications:
- 0
classId: string
classIdReverse: 0
comment: string
cos: string
cosMask: string
diffservForward: string
diffservReverse: string
diffservcodeForward: string
diffservcodeRev: string
dstaddr: string
dstaddr6: string
dstintf: string
fosid: 0
groups: string
internetService: string
internetServiceCustom: string
internetServiceCustomGroup: string
internetServiceGroup: string
internetServiceId: string
internetServiceName: string
internetServiceSrc: string
internetServiceSrcCustom: string
internetServiceSrcCustomGroup: string
internetServiceSrcGroup: string
internetServiceSrcId: string
internetServiceSrcName: string
ipVersion: string
name: string
packagesGlobalFooterShapingpolicyId: string
perIpShaper: string
pkg: string
pkgFolderPath: string
schedule: string
service: string
serviceType: string
srcaddr: string
srcaddr6: string
srcintf: string
status: string
tos: string
tosMask: string
tosNegate: string
trafficShaper: string
trafficShaperReverse: string
trafficType: string
urlCategory: string
users: string
uuid: string
uuidIdx: 0
PackagesGlobalFooterShapingpolicy 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 PackagesGlobalFooterShapingpolicy resource accepts the following input properties:
- Pkg string
- Package.
- App
Category string - IDs of one or more application categories that this shaper applies application control traffic shaping to.
- App
Group 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.
- Class
Id string - Traffic class ID.
- Class
Id doubleReverse - Class-Id-Reverse.
- Comment string
- Comments.
- Cos string
- VLAN CoS bit pattern.
- Cos
Mask string - VLAN CoS evaluated bits.
- Diffserv
Forward string - Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values:
disable
,enable
. - Diffserv
Reverse string - Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values:
disable
,enable
. - Diffservcode
Forward string - Change packet's DiffServ to this value.
- Diffservcode
Rev string - Change packet's reverse (reply) DiffServ to this value.
- Dstaddr string
- IPv4 destination address and address group names.
- Dstaddr6 string
- IPv6 destination address and address group names.
- Dstintf string
- One or more outgoing (egress) interfaces.
- Fosid double
- Shaping policy ID (0 - 4294967295).
- Groups string
- Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
- Internet
Service string - Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values:
disable
,enable
. - Internet
Service stringCustom - Custom Internet Service name.
- Internet
Service stringCustom Group - Custom Internet Service group name.
- Internet
Service stringGroup - Internet Service group name.
- Internet
Service stringId - Internet Service ID.
- Internet
Service stringName - Internet-Service-Name.
- Internet
Service stringSrc - Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values:
disable
,enable
. - Internet
Service stringSrc Custom - Custom Internet Service source name.
- Internet
Service stringSrc Custom Group - Custom Internet Service source group name.
- Internet
Service stringSrc Group - Internet Service source group name.
- Internet
Service stringSrc Id - Internet Service source ID.
- Internet
Service stringSrc Name - Internet-Service-Src-Name.
- Ip
Version string - Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values:
4
,6
. - Name string
- Shaping policy name.
- string
- an identifier for the resource with format {{fosid}}.
- Per
Ip stringShaper - Per-IP traffic shaper to apply with this policy.
- Pkg
Folder stringPath - Pkg Folder Path.
- Schedule string
- Schedule name.
- Service string
- Service and service group names.
- Service
Type string - Service-Type. Valid values:
service
,internet-service
. - Srcaddr string
- IPv4 source address and address group names.
- Srcaddr6 string
- IPv6 source address and address group names.
- Srcintf 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.
- Tos
Mask string - Non-zero bit positions are used for comparison while zero bit positions are ignored.
- Tos
Negate string - Enable negated TOS match. Valid values:
disable
,enable
. - Traffic
Shaper string - Traffic shaper to apply to traffic forwarded by the firewall policy.
- Traffic
Shaper stringReverse - Traffic shaper to apply to response traffic received by the firewall policy.
- Traffic
Type string - Traffic type. Valid values:
forwarding
,local-in
,local-out
. - Url
Category 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
- Uuid.
- Uuid
Idx double - Uuid-Idx.
- Pkg string
- Package.
- App
Category string - IDs of one or more application categories that this shaper applies application control traffic shaping to.
- App
Group string - One or more application group names.
- Applications []float64
- IDs of one or more applications that this shaper applies application control traffic shaping to.
- Class
Id string - Traffic class ID.
- Class
Id float64Reverse - Class-Id-Reverse.
- Comment string
- Comments.
- Cos string
- VLAN CoS bit pattern.
- Cos
Mask string - VLAN CoS evaluated bits.
- Diffserv
Forward string - Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values:
disable
,enable
. - Diffserv
Reverse string - Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values:
disable
,enable
. - Diffservcode
Forward string - Change packet's DiffServ to this value.
- Diffservcode
Rev string - Change packet's reverse (reply) DiffServ to this value.
- Dstaddr string
- IPv4 destination address and address group names.
- Dstaddr6 string
- IPv6 destination address and address group names.
- Dstintf 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.
- Internet
Service string - Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values:
disable
,enable
. - Internet
Service stringCustom - Custom Internet Service name.
- Internet
Service stringCustom Group - Custom Internet Service group name.
- Internet
Service stringGroup - Internet Service group name.
- Internet
Service stringId - Internet Service ID.
- Internet
Service stringName - Internet-Service-Name.
- Internet
Service stringSrc - Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values:
disable
,enable
. - Internet
Service stringSrc Custom - Custom Internet Service source name.
- Internet
Service stringSrc Custom Group - Custom Internet Service source group name.
- Internet
Service stringSrc Group - Internet Service source group name.
- Internet
Service stringSrc Id - Internet Service source ID.
- Internet
Service stringSrc Name - Internet-Service-Src-Name.
- Ip
Version string - Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values:
4
,6
. - Name string
- Shaping policy name.
- string
- an identifier for the resource with format {{fosid}}.
- Per
Ip stringShaper - Per-IP traffic shaper to apply with this policy.
- Pkg
Folder stringPath - Pkg Folder Path.
- Schedule string
- Schedule name.
- Service string
- Service and service group names.
- Service
Type string - Service-Type. Valid values:
service
,internet-service
. - Srcaddr string
- IPv4 source address and address group names.
- Srcaddr6 string
- IPv6 source address and address group names.
- Srcintf 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.
- Tos
Mask string - Non-zero bit positions are used for comparison while zero bit positions are ignored.
- Tos
Negate string - Enable negated TOS match. Valid values:
disable
,enable
. - Traffic
Shaper string - Traffic shaper to apply to traffic forwarded by the firewall policy.
- Traffic
Shaper stringReverse - Traffic shaper to apply to response traffic received by the firewall policy.
- Traffic
Type string - Traffic type. Valid values:
forwarding
,local-in
,local-out
. - Url
Category 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
- Uuid.
- Uuid
Idx float64 - Uuid-Idx.
- pkg String
- Package.
- app
Category String - IDs of one or more application categories that this shaper applies application control traffic shaping to.
- app
Group 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.
- class
Id String - Traffic class ID.
- class
Id DoubleReverse - Class-Id-Reverse.
- comment String
- Comments.
- cos String
- VLAN CoS bit pattern.
- cos
Mask String - VLAN CoS evaluated bits.
- diffserv
Forward String - Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values:
disable
,enable
. - diffserv
Reverse String - Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values:
disable
,enable
. - diffservcode
Forward String - Change packet's DiffServ to this value.
- diffservcode
Rev String - Change packet's reverse (reply) DiffServ to this value.
- dstaddr String
- IPv4 destination address and address group names.
- dstaddr6 String
- IPv6 destination address and address group names.
- dstintf String
- One or more outgoing (egress) interfaces.
- fosid Double
- Shaping policy ID (0 - 4294967295).
- groups String
- Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
- internet
Service String - Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values:
disable
,enable
. - internet
Service StringCustom - Custom Internet Service name.
- internet
Service StringCustom Group - Custom Internet Service group name.
- internet
Service StringGroup - Internet Service group name.
- internet
Service StringId - Internet Service ID.
- internet
Service StringName - Internet-Service-Name.
- internet
Service StringSrc - Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values:
disable
,enable
. - internet
Service StringSrc Custom - Custom Internet Service source name.
- internet
Service StringSrc Custom Group - Custom Internet Service source group name.
- internet
Service StringSrc Group - Internet Service source group name.
- internet
Service StringSrc Id - Internet Service source ID.
- internet
Service StringSrc Name - Internet-Service-Src-Name.
- ip
Version String - Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values:
4
,6
. - name String
- Shaping policy name.
- String
- an identifier for the resource with format {{fosid}}.
- per
Ip StringShaper - Per-IP traffic shaper to apply with this policy.
- pkg
Folder StringPath - Pkg Folder Path.
- schedule String
- Schedule name.
- service String
- Service and service group names.
- service
Type String - Service-Type. Valid values:
service
,internet-service
. - srcaddr String
- IPv4 source address and address group names.
- srcaddr6 String
- IPv6 source address and address group names.
- srcintf 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.
- tos
Mask String - Non-zero bit positions are used for comparison while zero bit positions are ignored.
- tos
Negate String - Enable negated TOS match. Valid values:
disable
,enable
. - traffic
Shaper String - Traffic shaper to apply to traffic forwarded by the firewall policy.
- traffic
Shaper StringReverse - Traffic shaper to apply to response traffic received by the firewall policy.
- traffic
Type String - Traffic type. Valid values:
forwarding
,local-in
,local-out
. - url
Category 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
- Uuid.
- uuid
Idx Double - Uuid-Idx.
- pkg string
- Package.
- app
Category string - IDs of one or more application categories that this shaper applies application control traffic shaping to.
- app
Group string - One or more application group names.
- applications number[]
- IDs of one or more applications that this shaper applies application control traffic shaping to.
- class
Id string - Traffic class ID.
- class
Id numberReverse - Class-Id-Reverse.
- comment string
- Comments.
- cos string
- VLAN CoS bit pattern.
- cos
Mask string - VLAN CoS evaluated bits.
- diffserv
Forward string - Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values:
disable
,enable
. - diffserv
Reverse string - Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values:
disable
,enable
. - diffservcode
Forward string - Change packet's DiffServ to this value.
- diffservcode
Rev string - Change packet's reverse (reply) DiffServ to this value.
- dstaddr string
- IPv4 destination address and address group names.
- dstaddr6 string
- IPv6 destination address and address group names.
- dstintf 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.
- internet
Service string - Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values:
disable
,enable
. - internet
Service stringCustom - Custom Internet Service name.
- internet
Service stringCustom Group - Custom Internet Service group name.
- internet
Service stringGroup - Internet Service group name.
- internet
Service stringId - Internet Service ID.
- internet
Service stringName - Internet-Service-Name.
- internet
Service stringSrc - Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values:
disable
,enable
. - internet
Service stringSrc Custom - Custom Internet Service source name.
- internet
Service stringSrc Custom Group - Custom Internet Service source group name.
- internet
Service stringSrc Group - Internet Service source group name.
- internet
Service stringSrc Id - Internet Service source ID.
- internet
Service stringSrc Name - Internet-Service-Src-Name.
- ip
Version string - Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values:
4
,6
. - name string
- Shaping policy name.
- string
- an identifier for the resource with format {{fosid}}.
- per
Ip stringShaper - Per-IP traffic shaper to apply with this policy.
- pkg
Folder stringPath - Pkg Folder Path.
- schedule string
- Schedule name.
- service string
- Service and service group names.
- service
Type string - Service-Type. Valid values:
service
,internet-service
. - srcaddr string
- IPv4 source address and address group names.
- srcaddr6 string
- IPv6 source address and address group names.
- srcintf 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.
- tos
Mask string - Non-zero bit positions are used for comparison while zero bit positions are ignored.
- tos
Negate string - Enable negated TOS match. Valid values:
disable
,enable
. - traffic
Shaper string - Traffic shaper to apply to traffic forwarded by the firewall policy.
- traffic
Shaper stringReverse - Traffic shaper to apply to response traffic received by the firewall policy.
- traffic
Type string - Traffic type. Valid values:
forwarding
,local-in
,local-out
. - url
Category 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
- Uuid.
- uuid
Idx number - Uuid-Idx.
- pkg str
- Package.
- app_
category str - IDs of one or more application categories that this shaper applies application control traffic shaping to.
- app_
group 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.
- class_
id_ floatreverse - Class-Id-Reverse.
- 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.
- dstaddr str
- IPv4 destination address and address group names.
- dstaddr6 str
- IPv6 destination address and address group names.
- dstintf str
- One or more outgoing (egress) interfaces.
- fosid float
- Shaping policy ID (0 - 4294967295).
- groups 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_ strcustom - Custom Internet Service name.
- internet_
service_ strcustom_ group - Custom Internet Service group name.
- internet_
service_ strgroup - Internet Service group name.
- internet_
service_ strid - Internet Service ID.
- internet_
service_ strname - Internet-Service-Name.
- internet_
service_ strsrc - Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values:
disable
,enable
. - internet_
service_ strsrc_ custom - Custom Internet Service source name.
- internet_
service_ strsrc_ custom_ group - Custom Internet Service source group name.
- internet_
service_ strsrc_ group - Internet Service source group name.
- internet_
service_ strsrc_ id - Internet Service source ID.
- internet_
service_ strsrc_ name - Internet-Service-Src-Name.
- ip_
version str - Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values:
4
,6
. - name str
- Shaping policy name.
- str
- an identifier for the resource with format {{fosid}}.
- per_
ip_ strshaper - Per-IP traffic shaper to apply with this policy.
- pkg_
folder_ strpath - Pkg Folder Path.
- schedule str
- Schedule name.
- service str
- Service and service group names.
- service_
type str - Service-Type. Valid values:
service
,internet-service
. - srcaddr str
- IPv4 source address and address group names.
- srcaddr6 str
- IPv6 source address and address group names.
- srcintf 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_ strreverse - 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_
category str - IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
- users str
- Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
- uuid str
- Uuid.
- uuid_
idx float - Uuid-Idx.
- pkg String
- Package.
- app
Category String - IDs of one or more application categories that this shaper applies application control traffic shaping to.
- app
Group 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.
- class
Id String - Traffic class ID.
- class
Id NumberReverse - Class-Id-Reverse.
- comment String
- Comments.
- cos String
- VLAN CoS bit pattern.
- cos
Mask String - VLAN CoS evaluated bits.
- diffserv
Forward String - Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values:
disable
,enable
. - diffserv
Reverse String - Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values:
disable
,enable
. - diffservcode
Forward String - Change packet's DiffServ to this value.
- diffservcode
Rev String - Change packet's reverse (reply) DiffServ to this value.
- dstaddr String
- IPv4 destination address and address group names.
- dstaddr6 String
- IPv6 destination address and address group names.
- dstintf 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.
- internet
Service String - Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values:
disable
,enable
. - internet
Service StringCustom - Custom Internet Service name.
- internet
Service StringCustom Group - Custom Internet Service group name.
- internet
Service StringGroup - Internet Service group name.
- internet
Service StringId - Internet Service ID.
- internet
Service StringName - Internet-Service-Name.
- internet
Service StringSrc - Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values:
disable
,enable
. - internet
Service StringSrc Custom - Custom Internet Service source name.
- internet
Service StringSrc Custom Group - Custom Internet Service source group name.
- internet
Service StringSrc Group - Internet Service source group name.
- internet
Service StringSrc Id - Internet Service source ID.
- internet
Service StringSrc Name - Internet-Service-Src-Name.
- ip
Version String - Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values:
4
,6
. - name String
- Shaping policy name.
- String
- an identifier for the resource with format {{fosid}}.
- per
Ip StringShaper - Per-IP traffic shaper to apply with this policy.
- pkg
Folder StringPath - Pkg Folder Path.
- schedule String
- Schedule name.
- service String
- Service and service group names.
- service
Type String - Service-Type. Valid values:
service
,internet-service
. - srcaddr String
- IPv4 source address and address group names.
- srcaddr6 String
- IPv6 source address and address group names.
- srcintf 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.
- tos
Mask String - Non-zero bit positions are used for comparison while zero bit positions are ignored.
- tos
Negate String - Enable negated TOS match. Valid values:
disable
,enable
. - traffic
Shaper String - Traffic shaper to apply to traffic forwarded by the firewall policy.
- traffic
Shaper StringReverse - Traffic shaper to apply to response traffic received by the firewall policy.
- traffic
Type String - Traffic type. Valid values:
forwarding
,local-in
,local-out
. - url
Category 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
- Uuid.
- uuid
Idx Number - Uuid-Idx.
Outputs
All input properties are implicitly available as output properties. Additionally, the PackagesGlobalFooterShapingpolicy 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 PackagesGlobalFooterShapingpolicy Resource
Get an existing PackagesGlobalFooterShapingpolicy 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?: PackagesGlobalFooterShapingpolicyState, opts?: CustomResourceOptions): PackagesGlobalFooterShapingpolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
app_category: Optional[str] = None,
app_group: Optional[str] = None,
applications: Optional[Sequence[float]] = None,
class_id: Optional[str] = None,
class_id_reverse: Optional[float] = 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,
dstaddr: Optional[str] = None,
dstaddr6: Optional[str] = None,
dstintf: Optional[str] = None,
fosid: Optional[float] = None,
groups: Optional[str] = None,
internet_service: Optional[str] = None,
internet_service_custom: Optional[str] = None,
internet_service_custom_group: Optional[str] = None,
internet_service_group: Optional[str] = None,
internet_service_id: Optional[str] = None,
internet_service_name: Optional[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_name: Optional[str] = None,
ip_version: Optional[str] = None,
name: Optional[str] = None,
packages_global_footer_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,
service: Optional[str] = None,
service_type: Optional[str] = None,
srcaddr: Optional[str] = None,
srcaddr6: Optional[str] = None,
srcintf: Optional[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_category: Optional[str] = None,
users: Optional[str] = None,
uuid: Optional[str] = None,
uuid_idx: Optional[float] = None) -> PackagesGlobalFooterShapingpolicy
func GetPackagesGlobalFooterShapingpolicy(ctx *Context, name string, id IDInput, state *PackagesGlobalFooterShapingpolicyState, opts ...ResourceOption) (*PackagesGlobalFooterShapingpolicy, error)
public static PackagesGlobalFooterShapingpolicy Get(string name, Input<string> id, PackagesGlobalFooterShapingpolicyState? state, CustomResourceOptions? opts = null)
public static PackagesGlobalFooterShapingpolicy get(String name, Output<String> id, PackagesGlobalFooterShapingpolicyState state, CustomResourceOptions options)
resources: _: type: fortimanager:PackagesGlobalFooterShapingpolicy 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.
- App
Category string - IDs of one or more application categories that this shaper applies application control traffic shaping to.
- App
Group 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.
- Class
Id string - Traffic class ID.
- Class
Id doubleReverse - Class-Id-Reverse.
- Comment string
- Comments.
- Cos string
- VLAN CoS bit pattern.
- Cos
Mask string - VLAN CoS evaluated bits.
- Diffserv
Forward string - Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values:
disable
,enable
. - Diffserv
Reverse string - Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values:
disable
,enable
. - Diffservcode
Forward string - Change packet's DiffServ to this value.
- Diffservcode
Rev string - Change packet's reverse (reply) DiffServ to this value.
- Dstaddr string
- IPv4 destination address and address group names.
- Dstaddr6 string
- IPv6 destination address and address group names.
- Dstintf string
- One or more outgoing (egress) interfaces.
- Fosid double
- Shaping policy ID (0 - 4294967295).
- Groups string
- Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
- Internet
Service string - Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values:
disable
,enable
. - Internet
Service stringCustom - Custom Internet Service name.
- Internet
Service stringCustom Group - Custom Internet Service group name.
- Internet
Service stringGroup - Internet Service group name.
- Internet
Service stringId - Internet Service ID.
- Internet
Service stringName - Internet-Service-Name.
- Internet
Service stringSrc - Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values:
disable
,enable
. - Internet
Service stringSrc Custom - Custom Internet Service source name.
- Internet
Service stringSrc Custom Group - Custom Internet Service source group name.
- Internet
Service stringSrc Group - Internet Service source group name.
- Internet
Service stringSrc Id - Internet Service source ID.
- Internet
Service stringSrc Name - Internet-Service-Src-Name.
- Ip
Version string - Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values:
4
,6
. - Name string
- Shaping policy name.
- string
- an identifier for the resource with format {{fosid}}.
- Per
Ip stringShaper - Per-IP traffic shaper to apply with this policy.
- Pkg string
- Package.
- Pkg
Folder stringPath - Pkg Folder Path.
- Schedule string
- Schedule name.
- Service string
- Service and service group names.
- Service
Type string - Service-Type. Valid values:
service
,internet-service
. - Srcaddr string
- IPv4 source address and address group names.
- Srcaddr6 string
- IPv6 source address and address group names.
- Srcintf 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.
- Tos
Mask string - Non-zero bit positions are used for comparison while zero bit positions are ignored.
- Tos
Negate string - Enable negated TOS match. Valid values:
disable
,enable
. - Traffic
Shaper string - Traffic shaper to apply to traffic forwarded by the firewall policy.
- Traffic
Shaper stringReverse - Traffic shaper to apply to response traffic received by the firewall policy.
- Traffic
Type string - Traffic type. Valid values:
forwarding
,local-in
,local-out
. - Url
Category 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
- Uuid.
- Uuid
Idx double - Uuid-Idx.
- App
Category string - IDs of one or more application categories that this shaper applies application control traffic shaping to.
- App
Group string - One or more application group names.
- Applications []float64
- IDs of one or more applications that this shaper applies application control traffic shaping to.
- Class
Id string - Traffic class ID.
- Class
Id float64Reverse - Class-Id-Reverse.
- Comment string
- Comments.
- Cos string
- VLAN CoS bit pattern.
- Cos
Mask string - VLAN CoS evaluated bits.
- Diffserv
Forward string - Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values:
disable
,enable
. - Diffserv
Reverse string - Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values:
disable
,enable
. - Diffservcode
Forward string - Change packet's DiffServ to this value.
- Diffservcode
Rev string - Change packet's reverse (reply) DiffServ to this value.
- Dstaddr string
- IPv4 destination address and address group names.
- Dstaddr6 string
- IPv6 destination address and address group names.
- Dstintf 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.
- Internet
Service string - Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values:
disable
,enable
. - Internet
Service stringCustom - Custom Internet Service name.
- Internet
Service stringCustom Group - Custom Internet Service group name.
- Internet
Service stringGroup - Internet Service group name.
- Internet
Service stringId - Internet Service ID.
- Internet
Service stringName - Internet-Service-Name.
- Internet
Service stringSrc - Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values:
disable
,enable
. - Internet
Service stringSrc Custom - Custom Internet Service source name.
- Internet
Service stringSrc Custom Group - Custom Internet Service source group name.
- Internet
Service stringSrc Group - Internet Service source group name.
- Internet
Service stringSrc Id - Internet Service source ID.
- Internet
Service stringSrc Name - Internet-Service-Src-Name.
- Ip
Version string - Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values:
4
,6
. - Name string
- Shaping policy name.
- string
- an identifier for the resource with format {{fosid}}.
- Per
Ip stringShaper - Per-IP traffic shaper to apply with this policy.
- Pkg string
- Package.
- Pkg
Folder stringPath - Pkg Folder Path.
- Schedule string
- Schedule name.
- Service string
- Service and service group names.
- Service
Type string - Service-Type. Valid values:
service
,internet-service
. - Srcaddr string
- IPv4 source address and address group names.
- Srcaddr6 string
- IPv6 source address and address group names.
- Srcintf 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.
- Tos
Mask string - Non-zero bit positions are used for comparison while zero bit positions are ignored.
- Tos
Negate string - Enable negated TOS match. Valid values:
disable
,enable
. - Traffic
Shaper string - Traffic shaper to apply to traffic forwarded by the firewall policy.
- Traffic
Shaper stringReverse - Traffic shaper to apply to response traffic received by the firewall policy.
- Traffic
Type string - Traffic type. Valid values:
forwarding
,local-in
,local-out
. - Url
Category 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
- Uuid.
- Uuid
Idx float64 - Uuid-Idx.
- app
Category String - IDs of one or more application categories that this shaper applies application control traffic shaping to.
- app
Group 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.
- class
Id String - Traffic class ID.
- class
Id DoubleReverse - Class-Id-Reverse.
- comment String
- Comments.
- cos String
- VLAN CoS bit pattern.
- cos
Mask String - VLAN CoS evaluated bits.
- diffserv
Forward String - Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values:
disable
,enable
. - diffserv
Reverse String - Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values:
disable
,enable
. - diffservcode
Forward String - Change packet's DiffServ to this value.
- diffservcode
Rev String - Change packet's reverse (reply) DiffServ to this value.
- dstaddr String
- IPv4 destination address and address group names.
- dstaddr6 String
- IPv6 destination address and address group names.
- dstintf String
- One or more outgoing (egress) interfaces.
- fosid Double
- Shaping policy ID (0 - 4294967295).
- groups String
- Apply this traffic shaping policy to user groups that have authenticated with the FortiGate.
- internet
Service String - Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values:
disable
,enable
. - internet
Service StringCustom - Custom Internet Service name.
- internet
Service StringCustom Group - Custom Internet Service group name.
- internet
Service StringGroup - Internet Service group name.
- internet
Service StringId - Internet Service ID.
- internet
Service StringName - Internet-Service-Name.
- internet
Service StringSrc - Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values:
disable
,enable
. - internet
Service StringSrc Custom - Custom Internet Service source name.
- internet
Service StringSrc Custom Group - Custom Internet Service source group name.
- internet
Service StringSrc Group - Internet Service source group name.
- internet
Service StringSrc Id - Internet Service source ID.
- internet
Service StringSrc Name - Internet-Service-Src-Name.
- ip
Version String - Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values:
4
,6
. - name String
- Shaping policy name.
- String
- an identifier for the resource with format {{fosid}}.
- per
Ip StringShaper - Per-IP traffic shaper to apply with this policy.
- pkg String
- Package.
- pkg
Folder StringPath - Pkg Folder Path.
- schedule String
- Schedule name.
- service String
- Service and service group names.
- service
Type String - Service-Type. Valid values:
service
,internet-service
. - srcaddr String
- IPv4 source address and address group names.
- srcaddr6 String
- IPv6 source address and address group names.
- srcintf 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.
- tos
Mask String - Non-zero bit positions are used for comparison while zero bit positions are ignored.
- tos
Negate String - Enable negated TOS match. Valid values:
disable
,enable
. - traffic
Shaper String - Traffic shaper to apply to traffic forwarded by the firewall policy.
- traffic
Shaper StringReverse - Traffic shaper to apply to response traffic received by the firewall policy.
- traffic
Type String - Traffic type. Valid values:
forwarding
,local-in
,local-out
. - url
Category 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
- Uuid.
- uuid
Idx Double - Uuid-Idx.
- app
Category string - IDs of one or more application categories that this shaper applies application control traffic shaping to.
- app
Group string - One or more application group names.
- applications number[]
- IDs of one or more applications that this shaper applies application control traffic shaping to.
- class
Id string - Traffic class ID.
- class
Id numberReverse - Class-Id-Reverse.
- comment string
- Comments.
- cos string
- VLAN CoS bit pattern.
- cos
Mask string - VLAN CoS evaluated bits.
- diffserv
Forward string - Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values:
disable
,enable
. - diffserv
Reverse string - Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values:
disable
,enable
. - diffservcode
Forward string - Change packet's DiffServ to this value.
- diffservcode
Rev string - Change packet's reverse (reply) DiffServ to this value.
- dstaddr string
- IPv4 destination address and address group names.
- dstaddr6 string
- IPv6 destination address and address group names.
- dstintf 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.
- internet
Service string - Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values:
disable
,enable
. - internet
Service stringCustom - Custom Internet Service name.
- internet
Service stringCustom Group - Custom Internet Service group name.
- internet
Service stringGroup - Internet Service group name.
- internet
Service stringId - Internet Service ID.
- internet
Service stringName - Internet-Service-Name.
- internet
Service stringSrc - Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values:
disable
,enable
. - internet
Service stringSrc Custom - Custom Internet Service source name.
- internet
Service stringSrc Custom Group - Custom Internet Service source group name.
- internet
Service stringSrc Group - Internet Service source group name.
- internet
Service stringSrc Id - Internet Service source ID.
- internet
Service stringSrc Name - Internet-Service-Src-Name.
- ip
Version string - Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values:
4
,6
. - name string
- Shaping policy name.
- string
- an identifier for the resource with format {{fosid}}.
- per
Ip stringShaper - Per-IP traffic shaper to apply with this policy.
- pkg string
- Package.
- pkg
Folder stringPath - Pkg Folder Path.
- schedule string
- Schedule name.
- service string
- Service and service group names.
- service
Type string - Service-Type. Valid values:
service
,internet-service
. - srcaddr string
- IPv4 source address and address group names.
- srcaddr6 string
- IPv6 source address and address group names.
- srcintf 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.
- tos
Mask string - Non-zero bit positions are used for comparison while zero bit positions are ignored.
- tos
Negate string - Enable negated TOS match. Valid values:
disable
,enable
. - traffic
Shaper string - Traffic shaper to apply to traffic forwarded by the firewall policy.
- traffic
Shaper stringReverse - Traffic shaper to apply to response traffic received by the firewall policy.
- traffic
Type string - Traffic type. Valid values:
forwarding
,local-in
,local-out
. - url
Category 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
- Uuid.
- uuid
Idx number - Uuid-Idx.
- app_
category str - IDs of one or more application categories that this shaper applies application control traffic shaping to.
- app_
group 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.
- class_
id_ floatreverse - Class-Id-Reverse.
- 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.
- dstaddr str
- IPv4 destination address and address group names.
- dstaddr6 str
- IPv6 destination address and address group names.
- dstintf str
- One or more outgoing (egress) interfaces.
- fosid float
- Shaping policy ID (0 - 4294967295).
- groups 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_ strcustom - Custom Internet Service name.
- internet_
service_ strcustom_ group - Custom Internet Service group name.
- internet_
service_ strgroup - Internet Service group name.
- internet_
service_ strid - Internet Service ID.
- internet_
service_ strname - Internet-Service-Name.
- internet_
service_ strsrc - Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values:
disable
,enable
. - internet_
service_ strsrc_ custom - Custom Internet Service source name.
- internet_
service_ strsrc_ custom_ group - Custom Internet Service source group name.
- internet_
service_ strsrc_ group - Internet Service source group name.
- internet_
service_ strsrc_ id - Internet Service source ID.
- internet_
service_ strsrc_ name - Internet-Service-Src-Name.
- ip_
version str - Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values:
4
,6
. - name str
- Shaping policy name.
- str
- an identifier for the resource with format {{fosid}}.
- per_
ip_ strshaper - Per-IP traffic shaper to apply with this policy.
- pkg str
- Package.
- pkg_
folder_ strpath - Pkg Folder Path.
- schedule str
- Schedule name.
- service str
- Service and service group names.
- service_
type str - Service-Type. Valid values:
service
,internet-service
. - srcaddr str
- IPv4 source address and address group names.
- srcaddr6 str
- IPv6 source address and address group names.
- srcintf 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_ strreverse - 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_
category str - IDs of one or more FortiGuard Web Filtering categories that this shaper applies traffic shaping to.
- users str
- Apply this traffic shaping policy to individual users that have authenticated with the FortiGate.
- uuid str
- Uuid.
- uuid_
idx float - Uuid-Idx.
- app
Category String - IDs of one or more application categories that this shaper applies application control traffic shaping to.
- app
Group 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.
- class
Id String - Traffic class ID.
- class
Id NumberReverse - Class-Id-Reverse.
- comment String
- Comments.
- cos String
- VLAN CoS bit pattern.
- cos
Mask String - VLAN CoS evaluated bits.
- diffserv
Forward String - Enable to change packet's DiffServ values to the specified diffservcode-forward value. Valid values:
disable
,enable
. - diffserv
Reverse String - Enable to change packet's reverse (reply) DiffServ values to the specified diffservcode-rev value. Valid values:
disable
,enable
. - diffservcode
Forward String - Change packet's DiffServ to this value.
- diffservcode
Rev String - Change packet's reverse (reply) DiffServ to this value.
- dstaddr String
- IPv4 destination address and address group names.
- dstaddr6 String
- IPv6 destination address and address group names.
- dstintf 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.
- internet
Service String - Enable/disable use of Internet Services for this policy. If enabled, destination address and service are not used. Valid values:
disable
,enable
. - internet
Service StringCustom - Custom Internet Service name.
- internet
Service StringCustom Group - Custom Internet Service group name.
- internet
Service StringGroup - Internet Service group name.
- internet
Service StringId - Internet Service ID.
- internet
Service StringName - Internet-Service-Name.
- internet
Service StringSrc - Enable/disable use of Internet Services in source for this policy. If enabled, source address is not used. Valid values:
disable
,enable
. - internet
Service StringSrc Custom - Custom Internet Service source name.
- internet
Service StringSrc Custom Group - Custom Internet Service source group name.
- internet
Service StringSrc Group - Internet Service source group name.
- internet
Service StringSrc Id - Internet Service source ID.
- internet
Service StringSrc Name - Internet-Service-Src-Name.
- ip
Version String - Apply this traffic shaping policy to IPv4 or IPv6 traffic. Valid values:
4
,6
. - name String
- Shaping policy name.
- String
- an identifier for the resource with format {{fosid}}.
- per
Ip StringShaper - Per-IP traffic shaper to apply with this policy.
- pkg String
- Package.
- pkg
Folder StringPath - Pkg Folder Path.
- schedule String
- Schedule name.
- service String
- Service and service group names.
- service
Type String - Service-Type. Valid values:
service
,internet-service
. - srcaddr String
- IPv4 source address and address group names.
- srcaddr6 String
- IPv6 source address and address group names.
- srcintf 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.
- tos
Mask String - Non-zero bit positions are used for comparison while zero bit positions are ignored.
- tos
Negate String - Enable negated TOS match. Valid values:
disable
,enable
. - traffic
Shaper String - Traffic shaper to apply to traffic forwarded by the firewall policy.
- traffic
Shaper StringReverse - Traffic shaper to apply to response traffic received by the firewall policy.
- traffic
Type String - Traffic type. Valid values:
forwarding
,local-in
,local-out
. - url
Category 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
- Uuid.
- uuid
Idx Number - Uuid-Idx.
Import
Packages GlobalFooterShapingPolicy 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/packagesGlobalFooterShapingpolicy:PackagesGlobalFooterShapingpolicy labelname {{fosid}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
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.