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

fortimanager.ObjectFirewallShapingprofileShapingentries

Explore with Pulumi AI

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

    Define shaping entries of this shaping profile.

    This resource is a sub resource for variable shaping_entries of resource fortimanager.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:

    ShapingProfile string
    Shaping Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    BurstInMsec double
    Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
    CburstInMsec double
    Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
    ClassId string
    Class ID.
    Fosid double
    ID number.
    GuaranteedBandwidthPercentage double
    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.
    MaximumBandwidthPercentage double
    Maximum bandwith in percentage.
    Min double
    Average queue size in packets at which RED drop becomes a possibility.
    ObjectFirewallShapingprofileShapingentriesId string
    an identifier for the resource with format {{fosid}}.
    Priority string
    Priority. Valid values: low, medium, high, critical, top.
    RedProbability double
    Maximum probability (in percentage) for RED marking.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ShapingProfile string
    Shaping Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    BurstInMsec float64
    Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
    CburstInMsec float64
    Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
    ClassId string
    Class ID.
    Fosid float64
    ID number.
    GuaranteedBandwidthPercentage float64
    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.
    MaximumBandwidthPercentage float64
    Maximum bandwith in percentage.
    Min float64
    Average queue size in packets at which RED drop becomes a possibility.
    ObjectFirewallShapingprofileShapingentriesId string
    an identifier for the resource with format {{fosid}}.
    Priority string
    Priority. Valid values: low, medium, high, critical, top.
    RedProbability float64
    Maximum probability (in percentage) for RED marking.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    shapingProfile String
    Shaping Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    burstInMsec Double
    Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
    cburstInMsec Double
    Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
    classId String
    Class ID.
    fosid Double
    ID number.
    guaranteedBandwidthPercentage Double
    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.
    maximumBandwidthPercentage Double
    Maximum bandwith in percentage.
    min Double
    Average queue size in packets at which RED drop becomes a possibility.
    objectFirewallShapingprofileShapingentriesId String
    an identifier for the resource with format {{fosid}}.
    priority String
    Priority. Valid values: low, medium, high, critical, top.
    redProbability Double
    Maximum probability (in percentage) for RED marking.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    shapingProfile string
    Shaping Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    burstInMsec number
    Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
    cburstInMsec number
    Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
    classId string
    Class ID.
    fosid number
    ID number.
    guaranteedBandwidthPercentage number
    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.
    maximumBandwidthPercentage number
    Maximum bandwith in percentage.
    min number
    Average queue size in packets at which RED drop becomes a possibility.
    objectFirewallShapingprofileShapingentriesId string
    an identifier for the resource with format {{fosid}}.
    priority string
    Priority. Valid values: low, medium, high, critical, top.
    redProbability number
    Maximum probability (in percentage) for RED marking.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    shaping_profile str
    Shaping Profile.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    burst_in_msec float
    Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
    cburst_in_msec float
    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_percentage float
    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_percentage float
    Maximum bandwith in percentage.
    min float
    Average queue size in packets at which RED drop becomes a possibility.
    object_firewall_shapingprofile_shapingentries_id str
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    shapingProfile String
    Shaping Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    burstInMsec Number
    Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
    cburstInMsec Number
    Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
    classId String
    Class ID.
    fosid Number
    ID number.
    guaranteedBandwidthPercentage Number
    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.
    maximumBandwidthPercentage Number
    Maximum bandwith in percentage.
    min Number
    Average queue size in packets at which RED drop becomes a possibility.
    objectFirewallShapingprofileShapingentriesId String
    an identifier for the resource with format {{fosid}}.
    priority String
    Priority. Valid values: low, medium, high, critical, top.
    redProbability Number
    Maximum probability (in percentage) for RED marking.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

    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.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    BurstInMsec double
    Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
    CburstInMsec double
    Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
    ClassId string
    Class ID.
    Fosid double
    ID number.
    GuaranteedBandwidthPercentage double
    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.
    MaximumBandwidthPercentage double
    Maximum bandwith in percentage.
    Min double
    Average queue size in packets at which RED drop becomes a possibility.
    ObjectFirewallShapingprofileShapingentriesId string
    an identifier for the resource with format {{fosid}}.
    Priority string
    Priority. Valid values: low, medium, high, critical, top.
    RedProbability double
    Maximum probability (in percentage) for RED marking.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ShapingProfile string
    Shaping Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    BurstInMsec float64
    Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
    CburstInMsec float64
    Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
    ClassId string
    Class ID.
    Fosid float64
    ID number.
    GuaranteedBandwidthPercentage float64
    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.
    MaximumBandwidthPercentage float64
    Maximum bandwith in percentage.
    Min float64
    Average queue size in packets at which RED drop becomes a possibility.
    ObjectFirewallShapingprofileShapingentriesId string
    an identifier for the resource with format {{fosid}}.
    Priority string
    Priority. Valid values: low, medium, high, critical, top.
    RedProbability float64
    Maximum probability (in percentage) for RED marking.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ShapingProfile string
    Shaping Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    burstInMsec Double
    Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
    cburstInMsec Double
    Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
    classId String
    Class ID.
    fosid Double
    ID number.
    guaranteedBandwidthPercentage Double
    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.
    maximumBandwidthPercentage Double
    Maximum bandwith in percentage.
    min Double
    Average queue size in packets at which RED drop becomes a possibility.
    objectFirewallShapingprofileShapingentriesId String
    an identifier for the resource with format {{fosid}}.
    priority String
    Priority. Valid values: low, medium, high, critical, top.
    redProbability Double
    Maximum probability (in percentage) for RED marking.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    shapingProfile String
    Shaping Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    burstInMsec number
    Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
    cburstInMsec number
    Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
    classId string
    Class ID.
    fosid number
    ID number.
    guaranteedBandwidthPercentage number
    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.
    maximumBandwidthPercentage number
    Maximum bandwith in percentage.
    min number
    Average queue size in packets at which RED drop becomes a possibility.
    objectFirewallShapingprofileShapingentriesId string
    an identifier for the resource with format {{fosid}}.
    priority string
    Priority. Valid values: low, medium, high, critical, top.
    redProbability number
    Maximum probability (in percentage) for RED marking.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    shapingProfile string
    Shaping Profile.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    burst_in_msec float
    Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
    cburst_in_msec float
    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_percentage float
    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_percentage float
    Maximum bandwith in percentage.
    min float
    Average queue size in packets at which RED drop becomes a possibility.
    object_firewall_shapingprofile_shapingentries_id str
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    shaping_profile str
    Shaping Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    burstInMsec Number
    Number of bytes that can be burst at maximum-bandwidth speed. Formula: burst = maximum-bandwidth*burst-in-msec.
    cburstInMsec Number
    Number of bytes that can be burst as fast as the interface can transmit. Formula: cburst = maximum-bandwidth*cburst-in-msec.
    classId String
    Class ID.
    fosid Number
    ID number.
    guaranteedBandwidthPercentage Number
    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.
    maximumBandwidthPercentage Number
    Maximum bandwith in percentage.
    min Number
    Average queue size in packets at which RED drop becomes a possibility.
    objectFirewallShapingprofileShapingentriesId String
    an identifier for the resource with format {{fosid}}.
    priority String
    Priority. Valid values: low, medium, high, critical, top.
    redProbability Number
    Maximum probability (in percentage) for RED marking.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    shapingProfile 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev