fortimanager.ObjectFirewallShapingprofileShapingentries
Explore with Pulumi AI
Define shaping entries of this shaping profile.
This resource is a sub resource for variable
shaping_entries
of resourcefortimanager.ObjectFirewallShapingprofile
. Conflict and overwrite may occur if use both of them.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectFirewallShapingprofile = new fortimanager.ObjectFirewallShapingprofile("trnameObjectFirewallShapingprofile", {profileName: "terr-shapingprofile"});
const trnameObjectFirewallShapingprofileShapingentries = new fortimanager.ObjectFirewallShapingprofileShapingentries("trnameObjectFirewallShapingprofileShapingentries", {
shapingProfile: trnameObjectFirewallShapingprofile.profileName,
fosid: 1,
limit: 50,
max: 60,
maximumBandwidthPercentage: 40,
}, {
dependsOn: [trnameObjectFirewallShapingprofile],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_firewall_shapingprofile = fortimanager.ObjectFirewallShapingprofile("trnameObjectFirewallShapingprofile", profile_name="terr-shapingprofile")
trname_object_firewall_shapingprofile_shapingentries = fortimanager.ObjectFirewallShapingprofileShapingentries("trnameObjectFirewallShapingprofileShapingentries",
shaping_profile=trname_object_firewall_shapingprofile.profile_name,
fosid=1,
limit=50,
max=60,
maximum_bandwidth_percentage=40,
opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_shapingprofile]))
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 {
trnameObjectFirewallShapingprofile, err := fortimanager.NewObjectFirewallShapingprofile(ctx, "trnameObjectFirewallShapingprofile", &fortimanager.ObjectFirewallShapingprofileArgs{
ProfileName: pulumi.String("terr-shapingprofile"),
})
if err != nil {
return err
}
_, err = fortimanager.NewObjectFirewallShapingprofileShapingentries(ctx, "trnameObjectFirewallShapingprofileShapingentries", &fortimanager.ObjectFirewallShapingprofileShapingentriesArgs{
ShapingProfile: trnameObjectFirewallShapingprofile.ProfileName,
Fosid: pulumi.Float64(1),
Limit: pulumi.Float64(50),
Max: pulumi.Float64(60),
MaximumBandwidthPercentage: pulumi.Float64(40),
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectFirewallShapingprofile,
}))
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 trnameObjectFirewallShapingprofile = new Fortimanager.ObjectFirewallShapingprofile("trnameObjectFirewallShapingprofile", new()
{
ProfileName = "terr-shapingprofile",
});
var trnameObjectFirewallShapingprofileShapingentries = new Fortimanager.ObjectFirewallShapingprofileShapingentries("trnameObjectFirewallShapingprofileShapingentries", new()
{
ShapingProfile = trnameObjectFirewallShapingprofile.ProfileName,
Fosid = 1,
Limit = 50,
Max = 60,
MaximumBandwidthPercentage = 40,
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectFirewallShapingprofile,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallShapingprofile;
import com.pulumi.fortimanager.ObjectFirewallShapingprofileArgs;
import com.pulumi.fortimanager.ObjectFirewallShapingprofileShapingentries;
import com.pulumi.fortimanager.ObjectFirewallShapingprofileShapingentriesArgs;
import com.pulumi.resources.CustomResourceOptions;
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 trnameObjectFirewallShapingprofile = new ObjectFirewallShapingprofile("trnameObjectFirewallShapingprofile", ObjectFirewallShapingprofileArgs.builder()
.profileName("terr-shapingprofile")
.build());
var trnameObjectFirewallShapingprofileShapingentries = new ObjectFirewallShapingprofileShapingentries("trnameObjectFirewallShapingprofileShapingentries", ObjectFirewallShapingprofileShapingentriesArgs.builder()
.shapingProfile(trnameObjectFirewallShapingprofile.profileName())
.fosid(1)
.limit(50)
.max(60)
.maximumBandwidthPercentage(40)
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectFirewallShapingprofile)
.build());
}
}
resources:
trnameObjectFirewallShapingprofileShapingentries:
type: fortimanager:ObjectFirewallShapingprofileShapingentries
properties:
shapingProfile: ${trnameObjectFirewallShapingprofile.profileName}
fosid: 1
limit: 50
max: 60
maximumBandwidthPercentage: 40
options:
dependsOn:
- ${trnameObjectFirewallShapingprofile}
trnameObjectFirewallShapingprofile:
type: fortimanager:ObjectFirewallShapingprofile
properties:
profileName: terr-shapingprofile
Create ObjectFirewallShapingprofileShapingentries Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallShapingprofileShapingentries(name: string, args: ObjectFirewallShapingprofileShapingentriesArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallShapingprofileShapingentries(resource_name: str,
args: ObjectFirewallShapingprofileShapingentriesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallShapingprofileShapingentries(resource_name: str,
opts: Optional[ResourceOptions] = None,
shaping_profile: Optional[str] = None,
limit: Optional[float] = None,
maximum_bandwidth_percentage: Optional[float] = None,
class_id: Optional[str] = None,
fosid: Optional[float] = None,
guaranteed_bandwidth_percentage: Optional[float] = None,
adom: Optional[str] = None,
max: Optional[float] = None,
cburst_in_msec: Optional[float] = None,
min: Optional[float] = None,
object_firewall_shapingprofile_shapingentries_id: Optional[str] = None,
priority: Optional[str] = None,
red_probability: Optional[float] = None,
scopetype: Optional[str] = None,
burst_in_msec: Optional[float] = None)
func NewObjectFirewallShapingprofileShapingentries(ctx *Context, name string, args ObjectFirewallShapingprofileShapingentriesArgs, opts ...ResourceOption) (*ObjectFirewallShapingprofileShapingentries, error)
public ObjectFirewallShapingprofileShapingentries(string name, ObjectFirewallShapingprofileShapingentriesArgs args, CustomResourceOptions? opts = null)
public ObjectFirewallShapingprofileShapingentries(String name, ObjectFirewallShapingprofileShapingentriesArgs args)
public ObjectFirewallShapingprofileShapingentries(String name, ObjectFirewallShapingprofileShapingentriesArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallShapingprofileShapingentries
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 ObjectFirewallShapingprofileShapingentriesArgs
- 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 ObjectFirewallShapingprofileShapingentriesArgs
- 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 ObjectFirewallShapingprofileShapingentriesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallShapingprofileShapingentriesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallShapingprofileShapingentriesArgs
- 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 objectFirewallShapingprofileShapingentriesResource = new Fortimanager.ObjectFirewallShapingprofileShapingentries("objectFirewallShapingprofileShapingentriesResource", new()
{
ShapingProfile = "string",
Limit = 0,
MaximumBandwidthPercentage = 0,
ClassId = "string",
Fosid = 0,
GuaranteedBandwidthPercentage = 0,
Adom = "string",
Max = 0,
CburstInMsec = 0,
Min = 0,
ObjectFirewallShapingprofileShapingentriesId = "string",
Priority = "string",
RedProbability = 0,
Scopetype = "string",
BurstInMsec = 0,
});
example, err := fortimanager.NewObjectFirewallShapingprofileShapingentries(ctx, "objectFirewallShapingprofileShapingentriesResource", &fortimanager.ObjectFirewallShapingprofileShapingentriesArgs{
ShapingProfile: pulumi.String("string"),
Limit: pulumi.Float64(0),
MaximumBandwidthPercentage: pulumi.Float64(0),
ClassId: pulumi.String("string"),
Fosid: pulumi.Float64(0),
GuaranteedBandwidthPercentage: pulumi.Float64(0),
Adom: pulumi.String("string"),
Max: pulumi.Float64(0),
CburstInMsec: pulumi.Float64(0),
Min: pulumi.Float64(0),
ObjectFirewallShapingprofileShapingentriesId: pulumi.String("string"),
Priority: pulumi.String("string"),
RedProbability: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
BurstInMsec: pulumi.Float64(0),
})
var objectFirewallShapingprofileShapingentriesResource = new ObjectFirewallShapingprofileShapingentries("objectFirewallShapingprofileShapingentriesResource", ObjectFirewallShapingprofileShapingentriesArgs.builder()
.shapingProfile("string")
.limit(0)
.maximumBandwidthPercentage(0)
.classId("string")
.fosid(0)
.guaranteedBandwidthPercentage(0)
.adom("string")
.max(0)
.cburstInMsec(0)
.min(0)
.objectFirewallShapingprofileShapingentriesId("string")
.priority("string")
.redProbability(0)
.scopetype("string")
.burstInMsec(0)
.build());
object_firewall_shapingprofile_shapingentries_resource = fortimanager.ObjectFirewallShapingprofileShapingentries("objectFirewallShapingprofileShapingentriesResource",
shaping_profile="string",
limit=0,
maximum_bandwidth_percentage=0,
class_id="string",
fosid=0,
guaranteed_bandwidth_percentage=0,
adom="string",
max=0,
cburst_in_msec=0,
min=0,
object_firewall_shapingprofile_shapingentries_id="string",
priority="string",
red_probability=0,
scopetype="string",
burst_in_msec=0)
const objectFirewallShapingprofileShapingentriesResource = new fortimanager.ObjectFirewallShapingprofileShapingentries("objectFirewallShapingprofileShapingentriesResource", {
shapingProfile: "string",
limit: 0,
maximumBandwidthPercentage: 0,
classId: "string",
fosid: 0,
guaranteedBandwidthPercentage: 0,
adom: "string",
max: 0,
cburstInMsec: 0,
min: 0,
objectFirewallShapingprofileShapingentriesId: "string",
priority: "string",
redProbability: 0,
scopetype: "string",
burstInMsec: 0,
});
type: fortimanager:ObjectFirewallShapingprofileShapingentries
properties:
adom: string
burstInMsec: 0
cburstInMsec: 0
classId: string
fosid: 0
guaranteedBandwidthPercentage: 0
limit: 0
max: 0
maximumBandwidthPercentage: 0
min: 0
objectFirewallShapingprofileShapingentriesId: string
priority: string
redProbability: 0
scopetype: string
shapingProfile: string
ObjectFirewallShapingprofileShapingentries 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 ObjectFirewallShapingprofileShapingentries resource accepts the following input properties:
- Shaping
Profile string - Shaping Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Burst
In doubleMsec - Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
- Cburst
In doubleMsec - Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
- Class
Id string - Class ID.
- Fosid double
- ID number.
- Guaranteed
Bandwidth doublePercentage - Guaranteed bandwith in percentage.
- Limit double
- Hard limit on the real queue size in packets.
- Max double
- Average queue size in packets at which RED drop probability is maximal.
- Maximum
Bandwidth doublePercentage - Maximum bandwith in percentage.
- Min double
- Average queue size in packets at which RED drop becomes a possibility.
- Object
Firewall stringShapingprofile Shapingentries Id - an identifier for the resource with format {{fosid}}.
- Priority string
- Priority. Valid values:
low
,medium
,high
,critical
,top
. - Red
Probability double - Maximum probability (in percentage) for RED marking.
- 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
.
- Shaping
Profile string - Shaping Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Burst
In float64Msec - Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
- Cburst
In float64Msec - Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
- Class
Id string - Class ID.
- Fosid float64
- ID number.
- Guaranteed
Bandwidth float64Percentage - Guaranteed bandwith in percentage.
- Limit float64
- Hard limit on the real queue size in packets.
- Max float64
- Average queue size in packets at which RED drop probability is maximal.
- Maximum
Bandwidth float64Percentage - Maximum bandwith in percentage.
- Min float64
- Average queue size in packets at which RED drop becomes a possibility.
- Object
Firewall stringShapingprofile Shapingentries Id - an identifier for the resource with format {{fosid}}.
- Priority string
- Priority. Valid values:
low
,medium
,high
,critical
,top
. - Red
Probability float64 - Maximum probability (in percentage) for RED marking.
- 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
.
- shaping
Profile String - Shaping Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - burst
In DoubleMsec - Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
- cburst
In DoubleMsec - Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
- class
Id String - Class ID.
- fosid Double
- ID number.
- guaranteed
Bandwidth DoublePercentage - Guaranteed bandwith in percentage.
- limit Double
- Hard limit on the real queue size in packets.
- max Double
- Average queue size in packets at which RED drop probability is maximal.
- maximum
Bandwidth DoublePercentage - Maximum bandwith in percentage.
- min Double
- Average queue size in packets at which RED drop becomes a possibility.
- object
Firewall StringShapingprofile Shapingentries Id - an identifier for the resource with format {{fosid}}.
- priority String
- Priority. Valid values:
low
,medium
,high
,critical
,top
. - red
Probability Double - Maximum probability (in percentage) for RED marking.
- 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
.
- shaping
Profile string - Shaping Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - burst
In numberMsec - Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
- cburst
In numberMsec - Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
- class
Id string - Class ID.
- fosid number
- ID number.
- guaranteed
Bandwidth numberPercentage - Guaranteed bandwith in percentage.
- limit number
- Hard limit on the real queue size in packets.
- max number
- Average queue size in packets at which RED drop probability is maximal.
- maximum
Bandwidth numberPercentage - Maximum bandwith in percentage.
- min number
- Average queue size in packets at which RED drop becomes a possibility.
- object
Firewall stringShapingprofile Shapingentries Id - an identifier for the resource with format {{fosid}}.
- priority string
- Priority. Valid values:
low
,medium
,high
,critical
,top
. - red
Probability number - Maximum probability (in percentage) for RED marking.
- 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
.
- shaping_
profile str - Shaping Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - burst_
in_ floatmsec - Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
- cburst_
in_ floatmsec - Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
- class_
id str - Class ID.
- fosid float
- ID number.
- guaranteed_
bandwidth_ floatpercentage - Guaranteed bandwith in percentage.
- limit float
- Hard limit on the real queue size in packets.
- max float
- Average queue size in packets at which RED drop probability is maximal.
- maximum_
bandwidth_ floatpercentage - Maximum bandwith in percentage.
- min float
- Average queue size in packets at which RED drop becomes a possibility.
- object_
firewall_ strshapingprofile_ shapingentries_ id - an identifier for the resource with format {{fosid}}.
- priority str
- Priority. Valid values:
low
,medium
,high
,critical
,top
. - red_
probability float - Maximum probability (in percentage) for RED marking.
- 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
.
- shaping
Profile String - Shaping Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - burst
In NumberMsec - Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
- cburst
In NumberMsec - Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
- class
Id String - Class ID.
- fosid Number
- ID number.
- guaranteed
Bandwidth NumberPercentage - Guaranteed bandwith in percentage.
- limit Number
- Hard limit on the real queue size in packets.
- max Number
- Average queue size in packets at which RED drop probability is maximal.
- maximum
Bandwidth NumberPercentage - Maximum bandwith in percentage.
- min Number
- Average queue size in packets at which RED drop becomes a possibility.
- object
Firewall StringShapingprofile Shapingentries Id - an identifier for the resource with format {{fosid}}.
- priority String
- Priority. Valid values:
low
,medium
,high
,critical
,top
. - red
Probability Number - Maximum probability (in percentage) for RED marking.
- 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 ObjectFirewallShapingprofileShapingentries 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 ObjectFirewallShapingprofileShapingentries Resource
Get an existing ObjectFirewallShapingprofileShapingentries 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?: ObjectFirewallShapingprofileShapingentriesState, opts?: CustomResourceOptions): ObjectFirewallShapingprofileShapingentries
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
burst_in_msec: Optional[float] = None,
cburst_in_msec: Optional[float] = None,
class_id: Optional[str] = None,
fosid: Optional[float] = None,
guaranteed_bandwidth_percentage: Optional[float] = None,
limit: Optional[float] = None,
max: Optional[float] = None,
maximum_bandwidth_percentage: Optional[float] = None,
min: Optional[float] = None,
object_firewall_shapingprofile_shapingentries_id: Optional[str] = None,
priority: Optional[str] = None,
red_probability: Optional[float] = None,
scopetype: Optional[str] = None,
shaping_profile: Optional[str] = None) -> ObjectFirewallShapingprofileShapingentries
func GetObjectFirewallShapingprofileShapingentries(ctx *Context, name string, id IDInput, state *ObjectFirewallShapingprofileShapingentriesState, opts ...ResourceOption) (*ObjectFirewallShapingprofileShapingentries, error)
public static ObjectFirewallShapingprofileShapingentries Get(string name, Input<string> id, ObjectFirewallShapingprofileShapingentriesState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallShapingprofileShapingentries get(String name, Output<String> id, ObjectFirewallShapingprofileShapingentriesState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallShapingprofileShapingentries 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. - Burst
In doubleMsec - Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
- Cburst
In doubleMsec - Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
- Class
Id string - Class ID.
- Fosid double
- ID number.
- Guaranteed
Bandwidth doublePercentage - Guaranteed bandwith in percentage.
- Limit double
- Hard limit on the real queue size in packets.
- Max double
- Average queue size in packets at which RED drop probability is maximal.
- Maximum
Bandwidth doublePercentage - Maximum bandwith in percentage.
- Min double
- Average queue size in packets at which RED drop becomes a possibility.
- Object
Firewall stringShapingprofile Shapingentries Id - an identifier for the resource with format {{fosid}}.
- Priority string
- Priority. Valid values:
low
,medium
,high
,critical
,top
. - Red
Probability double - Maximum probability (in percentage) for RED marking.
- 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
. - Shaping
Profile string - Shaping Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Burst
In float64Msec - Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
- Cburst
In float64Msec - Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
- Class
Id string - Class ID.
- Fosid float64
- ID number.
- Guaranteed
Bandwidth float64Percentage - Guaranteed bandwith in percentage.
- Limit float64
- Hard limit on the real queue size in packets.
- Max float64
- Average queue size in packets at which RED drop probability is maximal.
- Maximum
Bandwidth float64Percentage - Maximum bandwith in percentage.
- Min float64
- Average queue size in packets at which RED drop becomes a possibility.
- Object
Firewall stringShapingprofile Shapingentries Id - an identifier for the resource with format {{fosid}}.
- Priority string
- Priority. Valid values:
low
,medium
,high
,critical
,top
. - Red
Probability float64 - Maximum probability (in percentage) for RED marking.
- 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
. - Shaping
Profile string - Shaping Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - burst
In DoubleMsec - Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
- cburst
In DoubleMsec - Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
- class
Id String - Class ID.
- fosid Double
- ID number.
- guaranteed
Bandwidth DoublePercentage - Guaranteed bandwith in percentage.
- limit Double
- Hard limit on the real queue size in packets.
- max Double
- Average queue size in packets at which RED drop probability is maximal.
- maximum
Bandwidth DoublePercentage - Maximum bandwith in percentage.
- min Double
- Average queue size in packets at which RED drop becomes a possibility.
- object
Firewall StringShapingprofile Shapingentries Id - an identifier for the resource with format {{fosid}}.
- priority String
- Priority. Valid values:
low
,medium
,high
,critical
,top
. - red
Probability Double - Maximum probability (in percentage) for RED marking.
- 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
. - shaping
Profile String - Shaping Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - burst
In numberMsec - Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
- cburst
In numberMsec - Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
- class
Id string - Class ID.
- fosid number
- ID number.
- guaranteed
Bandwidth numberPercentage - Guaranteed bandwith in percentage.
- limit number
- Hard limit on the real queue size in packets.
- max number
- Average queue size in packets at which RED drop probability is maximal.
- maximum
Bandwidth numberPercentage - Maximum bandwith in percentage.
- min number
- Average queue size in packets at which RED drop becomes a possibility.
- object
Firewall stringShapingprofile Shapingentries Id - an identifier for the resource with format {{fosid}}.
- priority string
- Priority. Valid values:
low
,medium
,high
,critical
,top
. - red
Probability number - Maximum probability (in percentage) for RED marking.
- 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
. - shaping
Profile string - Shaping Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - burst_
in_ floatmsec - Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
- cburst_
in_ floatmsec - Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
- class_
id str - Class ID.
- fosid float
- ID number.
- guaranteed_
bandwidth_ floatpercentage - Guaranteed bandwith in percentage.
- limit float
- Hard limit on the real queue size in packets.
- max float
- Average queue size in packets at which RED drop probability is maximal.
- maximum_
bandwidth_ floatpercentage - Maximum bandwith in percentage.
- min float
- Average queue size in packets at which RED drop becomes a possibility.
- object_
firewall_ strshapingprofile_ shapingentries_ id - an identifier for the resource with format {{fosid}}.
- priority str
- Priority. Valid values:
low
,medium
,high
,critical
,top
. - red_
probability float - Maximum probability (in percentage) for RED marking.
- 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
. - shaping_
profile str - Shaping Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - burst
In NumberMsec - Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
- cburst
In NumberMsec - Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
- class
Id String - Class ID.
- fosid Number
- ID number.
- guaranteed
Bandwidth NumberPercentage - Guaranteed bandwith in percentage.
- limit Number
- Hard limit on the real queue size in packets.
- max Number
- Average queue size in packets at which RED drop probability is maximal.
- maximum
Bandwidth NumberPercentage - Maximum bandwith in percentage.
- min Number
- Average queue size in packets at which RED drop becomes a possibility.
- object
Firewall StringShapingprofile Shapingentries Id - an identifier for the resource with format {{fosid}}.
- priority String
- Priority. Valid values:
low
,medium
,high
,critical
,top
. - red
Probability Number - Maximum probability (in percentage) for RED marking.
- 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
. - shaping
Profile String - Shaping Profile.
Import
ObjectFirewall ShapingProfileShapingEntries can be imported using any of these accepted formats:
Set import_options = [“shaping_profile=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallShapingprofileShapingentries:ObjectFirewallShapingprofileShapingentries labelname {{fosid}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.