fortimanager.ObjectFirewallShaperPeripshaper
Explore with Pulumi AI
Configure per-IP traffic shaper.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectFirewallShaperPeripshaper("trname", {
bandwidthUnit: "mbps",
diffservForward: "enable",
diffservReverse: "disable",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectFirewallShaperPeripshaper("trname",
bandwidth_unit="mbps",
diffserv_forward="enable",
diffserv_reverse="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.NewObjectFirewallShaperPeripshaper(ctx, "trname", &fortimanager.ObjectFirewallShaperPeripshaperArgs{
BandwidthUnit: pulumi.String("mbps"),
DiffservForward: pulumi.String("enable"),
DiffservReverse: 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 trname = new Fortimanager.ObjectFirewallShaperPeripshaper("trname", new()
{
BandwidthUnit = "mbps",
DiffservForward = "enable",
DiffservReverse = "disable",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallShaperPeripshaper;
import com.pulumi.fortimanager.ObjectFirewallShaperPeripshaperArgs;
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 ObjectFirewallShaperPeripshaper("trname", ObjectFirewallShaperPeripshaperArgs.builder()
.bandwidthUnit("mbps")
.diffservForward("enable")
.diffservReverse("disable")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectFirewallShaperPeripshaper
properties:
bandwidthUnit: mbps
diffservForward: enable
diffservReverse: disable
Create ObjectFirewallShaperPeripshaper Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallShaperPeripshaper(name: string, args?: ObjectFirewallShaperPeripshaperArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallShaperPeripshaper(resource_name: str,
args: Optional[ObjectFirewallShaperPeripshaperArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallShaperPeripshaper(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
bandwidth_unit: Optional[str] = None,
diffserv_forward: Optional[str] = None,
diffserv_reverse: Optional[str] = None,
diffservcode_forward: Optional[str] = None,
diffservcode_rev: Optional[str] = None,
max_bandwidth: Optional[float] = None,
max_concurrent_session: Optional[float] = None,
max_concurrent_tcp_session: Optional[float] = None,
max_concurrent_udp_session: Optional[float] = None,
name: Optional[str] = None,
object_firewall_shaper_peripshaper_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectFirewallShaperPeripshaper(ctx *Context, name string, args *ObjectFirewallShaperPeripshaperArgs, opts ...ResourceOption) (*ObjectFirewallShaperPeripshaper, error)
public ObjectFirewallShaperPeripshaper(string name, ObjectFirewallShaperPeripshaperArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallShaperPeripshaper(String name, ObjectFirewallShaperPeripshaperArgs args)
public ObjectFirewallShaperPeripshaper(String name, ObjectFirewallShaperPeripshaperArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallShaperPeripshaper
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 ObjectFirewallShaperPeripshaperArgs
- 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 ObjectFirewallShaperPeripshaperArgs
- 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 ObjectFirewallShaperPeripshaperArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallShaperPeripshaperArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallShaperPeripshaperArgs
- 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 objectFirewallShaperPeripshaperResource = new Fortimanager.ObjectFirewallShaperPeripshaper("objectFirewallShaperPeripshaperResource", new()
{
Adom = "string",
BandwidthUnit = "string",
DiffservForward = "string",
DiffservReverse = "string",
DiffservcodeForward = "string",
DiffservcodeRev = "string",
MaxBandwidth = 0,
MaxConcurrentSession = 0,
MaxConcurrentTcpSession = 0,
MaxConcurrentUdpSession = 0,
Name = "string",
ObjectFirewallShaperPeripshaperId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectFirewallShaperPeripshaper(ctx, "objectFirewallShaperPeripshaperResource", &fortimanager.ObjectFirewallShaperPeripshaperArgs{
Adom: pulumi.String("string"),
BandwidthUnit: pulumi.String("string"),
DiffservForward: pulumi.String("string"),
DiffservReverse: pulumi.String("string"),
DiffservcodeForward: pulumi.String("string"),
DiffservcodeRev: pulumi.String("string"),
MaxBandwidth: pulumi.Float64(0),
MaxConcurrentSession: pulumi.Float64(0),
MaxConcurrentTcpSession: pulumi.Float64(0),
MaxConcurrentUdpSession: pulumi.Float64(0),
Name: pulumi.String("string"),
ObjectFirewallShaperPeripshaperId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectFirewallShaperPeripshaperResource = new ObjectFirewallShaperPeripshaper("objectFirewallShaperPeripshaperResource", ObjectFirewallShaperPeripshaperArgs.builder()
.adom("string")
.bandwidthUnit("string")
.diffservForward("string")
.diffservReverse("string")
.diffservcodeForward("string")
.diffservcodeRev("string")
.maxBandwidth(0)
.maxConcurrentSession(0)
.maxConcurrentTcpSession(0)
.maxConcurrentUdpSession(0)
.name("string")
.objectFirewallShaperPeripshaperId("string")
.scopetype("string")
.build());
object_firewall_shaper_peripshaper_resource = fortimanager.ObjectFirewallShaperPeripshaper("objectFirewallShaperPeripshaperResource",
adom="string",
bandwidth_unit="string",
diffserv_forward="string",
diffserv_reverse="string",
diffservcode_forward="string",
diffservcode_rev="string",
max_bandwidth=0,
max_concurrent_session=0,
max_concurrent_tcp_session=0,
max_concurrent_udp_session=0,
name="string",
object_firewall_shaper_peripshaper_id="string",
scopetype="string")
const objectFirewallShaperPeripshaperResource = new fortimanager.ObjectFirewallShaperPeripshaper("objectFirewallShaperPeripshaperResource", {
adom: "string",
bandwidthUnit: "string",
diffservForward: "string",
diffservReverse: "string",
diffservcodeForward: "string",
diffservcodeRev: "string",
maxBandwidth: 0,
maxConcurrentSession: 0,
maxConcurrentTcpSession: 0,
maxConcurrentUdpSession: 0,
name: "string",
objectFirewallShaperPeripshaperId: "string",
scopetype: "string",
});
type: fortimanager:ObjectFirewallShaperPeripshaper
properties:
adom: string
bandwidthUnit: string
diffservForward: string
diffservReverse: string
diffservcodeForward: string
diffservcodeRev: string
maxBandwidth: 0
maxConcurrentSession: 0
maxConcurrentTcpSession: 0
maxConcurrentUdpSession: 0
name: string
objectFirewallShaperPeripshaperId: string
scopetype: string
ObjectFirewallShaperPeripshaper 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 ObjectFirewallShaperPeripshaper resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Bandwidth
Unit string - Unit of measurement for maximum bandwidth for this shaper (Kbps, Mbps or Gbps). Valid values:
kbps
,mbps
,gbps
. - Diffserv
Forward string - Enable/disable changing the Forward (original) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - Diffserv
Reverse string - Enable/disable changing the Reverse (reply) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - Diffservcode
Forward string - Forward (original) DiffServ setting to be applied to traffic accepted by this shaper.
- Diffservcode
Rev string - Reverse (reply) DiffServ setting to be applied to traffic accepted by this shaper.
- Max
Bandwidth double - Upper bandwidth limit enforced by this shaper (0 - 16776000). 0 means no limit. Units depend on the bandwidth-unit setting.
- Max
Concurrent doubleSession - Maximum number of concurrent sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- Max
Concurrent doubleTcp Session - Maximum number of concurrent TCP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- Max
Concurrent doubleUdp Session - Maximum number of concurrent UDP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- Name string
- Traffic shaper name.
- Object
Firewall stringShaper Peripshaper Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Bandwidth
Unit string - Unit of measurement for maximum bandwidth for this shaper (Kbps, Mbps or Gbps). Valid values:
kbps
,mbps
,gbps
. - Diffserv
Forward string - Enable/disable changing the Forward (original) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - Diffserv
Reverse string - Enable/disable changing the Reverse (reply) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - Diffservcode
Forward string - Forward (original) DiffServ setting to be applied to traffic accepted by this shaper.
- Diffservcode
Rev string - Reverse (reply) DiffServ setting to be applied to traffic accepted by this shaper.
- Max
Bandwidth float64 - Upper bandwidth limit enforced by this shaper (0 - 16776000). 0 means no limit. Units depend on the bandwidth-unit setting.
- Max
Concurrent float64Session - Maximum number of concurrent sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- Max
Concurrent float64Tcp Session - Maximum number of concurrent TCP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- Max
Concurrent float64Udp Session - Maximum number of concurrent UDP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- Name string
- Traffic shaper name.
- Object
Firewall stringShaper Peripshaper Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Unit String - Unit of measurement for maximum bandwidth for this shaper (Kbps, Mbps or Gbps). Valid values:
kbps
,mbps
,gbps
. - diffserv
Forward String - Enable/disable changing the Forward (original) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffserv
Reverse String - Enable/disable changing the Reverse (reply) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffservcode
Forward String - Forward (original) DiffServ setting to be applied to traffic accepted by this shaper.
- diffservcode
Rev String - Reverse (reply) DiffServ setting to be applied to traffic accepted by this shaper.
- max
Bandwidth Double - Upper bandwidth limit enforced by this shaper (0 - 16776000). 0 means no limit. Units depend on the bandwidth-unit setting.
- max
Concurrent DoubleSession - Maximum number of concurrent sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max
Concurrent DoubleTcp Session - Maximum number of concurrent TCP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max
Concurrent DoubleUdp Session - Maximum number of concurrent UDP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- name String
- Traffic shaper name.
- object
Firewall StringShaper Peripshaper Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Unit string - Unit of measurement for maximum bandwidth for this shaper (Kbps, Mbps or Gbps). Valid values:
kbps
,mbps
,gbps
. - diffserv
Forward string - Enable/disable changing the Forward (original) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffserv
Reverse string - Enable/disable changing the Reverse (reply) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffservcode
Forward string - Forward (original) DiffServ setting to be applied to traffic accepted by this shaper.
- diffservcode
Rev string - Reverse (reply) DiffServ setting to be applied to traffic accepted by this shaper.
- max
Bandwidth number - Upper bandwidth limit enforced by this shaper (0 - 16776000). 0 means no limit. Units depend on the bandwidth-unit setting.
- max
Concurrent numberSession - Maximum number of concurrent sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max
Concurrent numberTcp Session - Maximum number of concurrent TCP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max
Concurrent numberUdp Session - Maximum number of concurrent UDP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- name string
- Traffic shaper name.
- object
Firewall stringShaper Peripshaper Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth_
unit str - Unit of measurement for maximum bandwidth for this shaper (Kbps, Mbps or Gbps). Valid values:
kbps
,mbps
,gbps
. - diffserv_
forward str - Enable/disable changing the Forward (original) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffserv_
reverse str - Enable/disable changing the Reverse (reply) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffservcode_
forward str - Forward (original) DiffServ setting to be applied to traffic accepted by this shaper.
- diffservcode_
rev str - Reverse (reply) DiffServ setting to be applied to traffic accepted by this shaper.
- max_
bandwidth float - Upper bandwidth limit enforced by this shaper (0 - 16776000). 0 means no limit. Units depend on the bandwidth-unit setting.
- max_
concurrent_ floatsession - Maximum number of concurrent sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max_
concurrent_ floattcp_ session - Maximum number of concurrent TCP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max_
concurrent_ floatudp_ session - Maximum number of concurrent UDP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- name str
- Traffic shaper name.
- object_
firewall_ strshaper_ peripshaper_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Unit String - Unit of measurement for maximum bandwidth for this shaper (Kbps, Mbps or Gbps). Valid values:
kbps
,mbps
,gbps
. - diffserv
Forward String - Enable/disable changing the Forward (original) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffserv
Reverse String - Enable/disable changing the Reverse (reply) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffservcode
Forward String - Forward (original) DiffServ setting to be applied to traffic accepted by this shaper.
- diffservcode
Rev String - Reverse (reply) DiffServ setting to be applied to traffic accepted by this shaper.
- max
Bandwidth Number - Upper bandwidth limit enforced by this shaper (0 - 16776000). 0 means no limit. Units depend on the bandwidth-unit setting.
- max
Concurrent NumberSession - Maximum number of concurrent sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max
Concurrent NumberTcp Session - Maximum number of concurrent TCP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max
Concurrent NumberUdp Session - Maximum number of concurrent UDP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- name String
- Traffic shaper name.
- object
Firewall StringShaper Peripshaper Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFirewallShaperPeripshaper 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 ObjectFirewallShaperPeripshaper Resource
Get an existing ObjectFirewallShaperPeripshaper 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?: ObjectFirewallShaperPeripshaperState, opts?: CustomResourceOptions): ObjectFirewallShaperPeripshaper
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
bandwidth_unit: Optional[str] = None,
diffserv_forward: Optional[str] = None,
diffserv_reverse: Optional[str] = None,
diffservcode_forward: Optional[str] = None,
diffservcode_rev: Optional[str] = None,
max_bandwidth: Optional[float] = None,
max_concurrent_session: Optional[float] = None,
max_concurrent_tcp_session: Optional[float] = None,
max_concurrent_udp_session: Optional[float] = None,
name: Optional[str] = None,
object_firewall_shaper_peripshaper_id: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectFirewallShaperPeripshaper
func GetObjectFirewallShaperPeripshaper(ctx *Context, name string, id IDInput, state *ObjectFirewallShaperPeripshaperState, opts ...ResourceOption) (*ObjectFirewallShaperPeripshaper, error)
public static ObjectFirewallShaperPeripshaper Get(string name, Input<string> id, ObjectFirewallShaperPeripshaperState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallShaperPeripshaper get(String name, Output<String> id, ObjectFirewallShaperPeripshaperState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallShaperPeripshaper 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Bandwidth
Unit string - Unit of measurement for maximum bandwidth for this shaper (Kbps, Mbps or Gbps). Valid values:
kbps
,mbps
,gbps
. - Diffserv
Forward string - Enable/disable changing the Forward (original) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - Diffserv
Reverse string - Enable/disable changing the Reverse (reply) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - Diffservcode
Forward string - Forward (original) DiffServ setting to be applied to traffic accepted by this shaper.
- Diffservcode
Rev string - Reverse (reply) DiffServ setting to be applied to traffic accepted by this shaper.
- Max
Bandwidth double - Upper bandwidth limit enforced by this shaper (0 - 16776000). 0 means no limit. Units depend on the bandwidth-unit setting.
- Max
Concurrent doubleSession - Maximum number of concurrent sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- Max
Concurrent doubleTcp Session - Maximum number of concurrent TCP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- Max
Concurrent doubleUdp Session - Maximum number of concurrent UDP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- Name string
- Traffic shaper name.
- Object
Firewall stringShaper Peripshaper Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Bandwidth
Unit string - Unit of measurement for maximum bandwidth for this shaper (Kbps, Mbps or Gbps). Valid values:
kbps
,mbps
,gbps
. - Diffserv
Forward string - Enable/disable changing the Forward (original) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - Diffserv
Reverse string - Enable/disable changing the Reverse (reply) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - Diffservcode
Forward string - Forward (original) DiffServ setting to be applied to traffic accepted by this shaper.
- Diffservcode
Rev string - Reverse (reply) DiffServ setting to be applied to traffic accepted by this shaper.
- Max
Bandwidth float64 - Upper bandwidth limit enforced by this shaper (0 - 16776000). 0 means no limit. Units depend on the bandwidth-unit setting.
- Max
Concurrent float64Session - Maximum number of concurrent sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- Max
Concurrent float64Tcp Session - Maximum number of concurrent TCP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- Max
Concurrent float64Udp Session - Maximum number of concurrent UDP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- Name string
- Traffic shaper name.
- Object
Firewall stringShaper Peripshaper Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Unit String - Unit of measurement for maximum bandwidth for this shaper (Kbps, Mbps or Gbps). Valid values:
kbps
,mbps
,gbps
. - diffserv
Forward String - Enable/disable changing the Forward (original) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffserv
Reverse String - Enable/disable changing the Reverse (reply) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffservcode
Forward String - Forward (original) DiffServ setting to be applied to traffic accepted by this shaper.
- diffservcode
Rev String - Reverse (reply) DiffServ setting to be applied to traffic accepted by this shaper.
- max
Bandwidth Double - Upper bandwidth limit enforced by this shaper (0 - 16776000). 0 means no limit. Units depend on the bandwidth-unit setting.
- max
Concurrent DoubleSession - Maximum number of concurrent sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max
Concurrent DoubleTcp Session - Maximum number of concurrent TCP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max
Concurrent DoubleUdp Session - Maximum number of concurrent UDP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- name String
- Traffic shaper name.
- object
Firewall StringShaper Peripshaper Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Unit string - Unit of measurement for maximum bandwidth for this shaper (Kbps, Mbps or Gbps). Valid values:
kbps
,mbps
,gbps
. - diffserv
Forward string - Enable/disable changing the Forward (original) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffserv
Reverse string - Enable/disable changing the Reverse (reply) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffservcode
Forward string - Forward (original) DiffServ setting to be applied to traffic accepted by this shaper.
- diffservcode
Rev string - Reverse (reply) DiffServ setting to be applied to traffic accepted by this shaper.
- max
Bandwidth number - Upper bandwidth limit enforced by this shaper (0 - 16776000). 0 means no limit. Units depend on the bandwidth-unit setting.
- max
Concurrent numberSession - Maximum number of concurrent sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max
Concurrent numberTcp Session - Maximum number of concurrent TCP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max
Concurrent numberUdp Session - Maximum number of concurrent UDP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- name string
- Traffic shaper name.
- object
Firewall stringShaper Peripshaper Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth_
unit str - Unit of measurement for maximum bandwidth for this shaper (Kbps, Mbps or Gbps). Valid values:
kbps
,mbps
,gbps
. - diffserv_
forward str - Enable/disable changing the Forward (original) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffserv_
reverse str - Enable/disable changing the Reverse (reply) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffservcode_
forward str - Forward (original) DiffServ setting to be applied to traffic accepted by this shaper.
- diffservcode_
rev str - Reverse (reply) DiffServ setting to be applied to traffic accepted by this shaper.
- max_
bandwidth float - Upper bandwidth limit enforced by this shaper (0 - 16776000). 0 means no limit. Units depend on the bandwidth-unit setting.
- max_
concurrent_ floatsession - Maximum number of concurrent sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max_
concurrent_ floattcp_ session - Maximum number of concurrent TCP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max_
concurrent_ floatudp_ session - Maximum number of concurrent UDP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- name str
- Traffic shaper name.
- object_
firewall_ strshaper_ peripshaper_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Unit String - Unit of measurement for maximum bandwidth for this shaper (Kbps, Mbps or Gbps). Valid values:
kbps
,mbps
,gbps
. - diffserv
Forward String - Enable/disable changing the Forward (original) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffserv
Reverse String - Enable/disable changing the Reverse (reply) DiffServ setting applied to traffic accepted by this shaper. Valid values:
disable
,enable
. - diffservcode
Forward String - Forward (original) DiffServ setting to be applied to traffic accepted by this shaper.
- diffservcode
Rev String - Reverse (reply) DiffServ setting to be applied to traffic accepted by this shaper.
- max
Bandwidth Number - Upper bandwidth limit enforced by this shaper (0 - 16776000). 0 means no limit. Units depend on the bandwidth-unit setting.
- max
Concurrent NumberSession - Maximum number of concurrent sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max
Concurrent NumberTcp Session - Maximum number of concurrent TCP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- max
Concurrent NumberUdp Session - Maximum number of concurrent UDP sessions allowed by this shaper (0 - 2097000). 0 means no limit.
- name String
- Traffic shaper name.
- object
Firewall StringShaper Peripshaper Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Import
ObjectFirewall ShaperPerIpShaper can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallShaperPeripshaper:ObjectFirewallShaperPeripshaper labelname {{name}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.