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

fortimanager.ObjectVpnIpsecFecMappings

Explore with Pulumi AI

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

    FEC redundancy mapping table.

    This resource is a sub resource for variable mappings of resource fortimanager.ObjectVpnIpsecFec. 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 trnameObjectVpnIpsecFec = new fortimanager.ObjectVpnIpsecFec("trnameObjectVpnIpsecFec", {});
    const trnameObjectVpnIpsecFecMappings = new fortimanager.ObjectVpnIpsecFecMappings("trnameObjectVpnIpsecFecMappings", {
        fec: trnameObjectVpnIpsecFec.name,
        seqno: 2,
    }, {
        dependsOn: [trnameObjectVpnIpsecFec],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_vpn_ipsec_fec = fortimanager.ObjectVpnIpsecFec("trnameObjectVpnIpsecFec")
    trname_object_vpn_ipsec_fec_mappings = fortimanager.ObjectVpnIpsecFecMappings("trnameObjectVpnIpsecFecMappings",
        fec=trname_object_vpn_ipsec_fec.name,
        seqno=2,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_vpn_ipsec_fec]))
    
    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 {
    		trnameObjectVpnIpsecFec, err := fortimanager.NewObjectVpnIpsecFec(ctx, "trnameObjectVpnIpsecFec", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectVpnIpsecFecMappings(ctx, "trnameObjectVpnIpsecFecMappings", &fortimanager.ObjectVpnIpsecFecMappingsArgs{
    			Fec:   trnameObjectVpnIpsecFec.Name,
    			Seqno: pulumi.Float64(2),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectVpnIpsecFec,
    		}))
    		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 trnameObjectVpnIpsecFec = new Fortimanager.ObjectVpnIpsecFec("trnameObjectVpnIpsecFec");
    
        var trnameObjectVpnIpsecFecMappings = new Fortimanager.ObjectVpnIpsecFecMappings("trnameObjectVpnIpsecFecMappings", new()
        {
            Fec = trnameObjectVpnIpsecFec.Name,
            Seqno = 2,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectVpnIpsecFec,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectVpnIpsecFec;
    import com.pulumi.fortimanager.ObjectVpnIpsecFecMappings;
    import com.pulumi.fortimanager.ObjectVpnIpsecFecMappingsArgs;
    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 trnameObjectVpnIpsecFec = new ObjectVpnIpsecFec("trnameObjectVpnIpsecFec");
    
            var trnameObjectVpnIpsecFecMappings = new ObjectVpnIpsecFecMappings("trnameObjectVpnIpsecFecMappings", ObjectVpnIpsecFecMappingsArgs.builder()
                .fec(trnameObjectVpnIpsecFec.name())
                .seqno(2)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectVpnIpsecFec)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectVpnIpsecFecMappings:
        type: fortimanager:ObjectVpnIpsecFecMappings
        properties:
          fec: ${trnameObjectVpnIpsecFec.name}
          seqno: 2
        options:
          dependsOn:
            - ${trnameObjectVpnIpsecFec}
      trnameObjectVpnIpsecFec:
        type: fortimanager:ObjectVpnIpsecFec
    

    Create ObjectVpnIpsecFecMappings Resource

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

    Constructor syntax

    new ObjectVpnIpsecFecMappings(name: string, args: ObjectVpnIpsecFecMappingsArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectVpnIpsecFecMappings(resource_name: str,
                                  args: ObjectVpnIpsecFecMappingsArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectVpnIpsecFecMappings(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  fec: Optional[str] = None,
                                  adom: Optional[str] = None,
                                  bandwidth_bi_threshold: Optional[float] = None,
                                  bandwidth_down_threshold: Optional[float] = None,
                                  bandwidth_up_threshold: Optional[float] = None,
                                  base: Optional[float] = None,
                                  latency_threshold: Optional[float] = None,
                                  object_vpn_ipsec_fec_mappings_id: Optional[str] = None,
                                  packet_loss_threshold: Optional[float] = None,
                                  redundant: Optional[float] = None,
                                  scopetype: Optional[str] = None,
                                  seqno: Optional[float] = None)
    func NewObjectVpnIpsecFecMappings(ctx *Context, name string, args ObjectVpnIpsecFecMappingsArgs, opts ...ResourceOption) (*ObjectVpnIpsecFecMappings, error)
    public ObjectVpnIpsecFecMappings(string name, ObjectVpnIpsecFecMappingsArgs args, CustomResourceOptions? opts = null)
    public ObjectVpnIpsecFecMappings(String name, ObjectVpnIpsecFecMappingsArgs args)
    public ObjectVpnIpsecFecMappings(String name, ObjectVpnIpsecFecMappingsArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectVpnIpsecFecMappings
    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 ObjectVpnIpsecFecMappingsArgs
    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 ObjectVpnIpsecFecMappingsArgs
    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 ObjectVpnIpsecFecMappingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectVpnIpsecFecMappingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectVpnIpsecFecMappingsArgs
    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 objectVpnIpsecFecMappingsResource = new Fortimanager.ObjectVpnIpsecFecMappings("objectVpnIpsecFecMappingsResource", new()
    {
        Fec = "string",
        Adom = "string",
        BandwidthBiThreshold = 0,
        BandwidthDownThreshold = 0,
        BandwidthUpThreshold = 0,
        Base = 0,
        LatencyThreshold = 0,
        ObjectVpnIpsecFecMappingsId = "string",
        PacketLossThreshold = 0,
        Redundant = 0,
        Scopetype = "string",
        Seqno = 0,
    });
    
    example, err := fortimanager.NewObjectVpnIpsecFecMappings(ctx, "objectVpnIpsecFecMappingsResource", &fortimanager.ObjectVpnIpsecFecMappingsArgs{
    Fec: pulumi.String("string"),
    Adom: pulumi.String("string"),
    BandwidthBiThreshold: pulumi.Float64(0),
    BandwidthDownThreshold: pulumi.Float64(0),
    BandwidthUpThreshold: pulumi.Float64(0),
    Base: pulumi.Float64(0),
    LatencyThreshold: pulumi.Float64(0),
    ObjectVpnIpsecFecMappingsId: pulumi.String("string"),
    PacketLossThreshold: pulumi.Float64(0),
    Redundant: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    Seqno: pulumi.Float64(0),
    })
    
    var objectVpnIpsecFecMappingsResource = new ObjectVpnIpsecFecMappings("objectVpnIpsecFecMappingsResource", ObjectVpnIpsecFecMappingsArgs.builder()
        .fec("string")
        .adom("string")
        .bandwidthBiThreshold(0)
        .bandwidthDownThreshold(0)
        .bandwidthUpThreshold(0)
        .base(0)
        .latencyThreshold(0)
        .objectVpnIpsecFecMappingsId("string")
        .packetLossThreshold(0)
        .redundant(0)
        .scopetype("string")
        .seqno(0)
        .build());
    
    object_vpn_ipsec_fec_mappings_resource = fortimanager.ObjectVpnIpsecFecMappings("objectVpnIpsecFecMappingsResource",
        fec="string",
        adom="string",
        bandwidth_bi_threshold=0,
        bandwidth_down_threshold=0,
        bandwidth_up_threshold=0,
        base=0,
        latency_threshold=0,
        object_vpn_ipsec_fec_mappings_id="string",
        packet_loss_threshold=0,
        redundant=0,
        scopetype="string",
        seqno=0)
    
    const objectVpnIpsecFecMappingsResource = new fortimanager.ObjectVpnIpsecFecMappings("objectVpnIpsecFecMappingsResource", {
        fec: "string",
        adom: "string",
        bandwidthBiThreshold: 0,
        bandwidthDownThreshold: 0,
        bandwidthUpThreshold: 0,
        base: 0,
        latencyThreshold: 0,
        objectVpnIpsecFecMappingsId: "string",
        packetLossThreshold: 0,
        redundant: 0,
        scopetype: "string",
        seqno: 0,
    });
    
    type: fortimanager:ObjectVpnIpsecFecMappings
    properties:
        adom: string
        bandwidthBiThreshold: 0
        bandwidthDownThreshold: 0
        bandwidthUpThreshold: 0
        base: 0
        fec: string
        latencyThreshold: 0
        objectVpnIpsecFecMappingsId: string
        packetLossThreshold: 0
        redundant: 0
        scopetype: string
        seqno: 0
    

    ObjectVpnIpsecFecMappings 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 ObjectVpnIpsecFecMappings resource accepts the following input properties:

    Fec string
    Fec.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    BandwidthBiThreshold double
    Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
    BandwidthDownThreshold double
    Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
    BandwidthUpThreshold double
    Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
    Base double
    Number of base FEC packets (1 - 20).
    LatencyThreshold double
    Apply FEC parameters when latency is <= threshold (0 means no threshold).
    ObjectVpnIpsecFecMappingsId string
    an identifier for the resource with format {{seqno}}.
    PacketLossThreshold double
    Apply FEC parameters when packet loss is >= threshold (0 - 100, 0 means no threshold).
    Redundant double
    Number of redundant FEC packets (1 - 5).
    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.
    Seqno double
    Sequence number (1 - 64).
    Fec string
    Fec.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    BandwidthBiThreshold float64
    Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
    BandwidthDownThreshold float64
    Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
    BandwidthUpThreshold float64
    Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
    Base float64
    Number of base FEC packets (1 - 20).
    LatencyThreshold float64
    Apply FEC parameters when latency is <= threshold (0 means no threshold).
    ObjectVpnIpsecFecMappingsId string
    an identifier for the resource with format {{seqno}}.
    PacketLossThreshold float64
    Apply FEC parameters when packet loss is >= threshold (0 - 100, 0 means no threshold).
    Redundant float64
    Number of redundant FEC packets (1 - 5).
    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.
    Seqno float64
    Sequence number (1 - 64).
    fec String
    Fec.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bandwidthBiThreshold Double
    Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidthDownThreshold Double
    Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidthUpThreshold Double
    Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
    base Double
    Number of base FEC packets (1 - 20).
    latencyThreshold Double
    Apply FEC parameters when latency is <= threshold (0 means no threshold).
    objectVpnIpsecFecMappingsId String
    an identifier for the resource with format {{seqno}}.
    packetLossThreshold Double
    Apply FEC parameters when packet loss is >= threshold (0 - 100, 0 means no threshold).
    redundant Double
    Number of redundant FEC packets (1 - 5).
    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.
    seqno Double
    Sequence number (1 - 64).
    fec string
    Fec.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bandwidthBiThreshold number
    Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidthDownThreshold number
    Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidthUpThreshold number
    Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
    base number
    Number of base FEC packets (1 - 20).
    latencyThreshold number
    Apply FEC parameters when latency is <= threshold (0 means no threshold).
    objectVpnIpsecFecMappingsId string
    an identifier for the resource with format {{seqno}}.
    packetLossThreshold number
    Apply FEC parameters when packet loss is >= threshold (0 - 100, 0 means no threshold).
    redundant number
    Number of redundant FEC packets (1 - 5).
    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.
    seqno number
    Sequence number (1 - 64).
    fec str
    Fec.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bandwidth_bi_threshold float
    Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidth_down_threshold float
    Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidth_up_threshold float
    Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
    base float
    Number of base FEC packets (1 - 20).
    latency_threshold float
    Apply FEC parameters when latency is <= threshold (0 means no threshold).
    object_vpn_ipsec_fec_mappings_id str
    an identifier for the resource with format {{seqno}}.
    packet_loss_threshold float
    Apply FEC parameters when packet loss is >= threshold (0 - 100, 0 means no threshold).
    redundant float
    Number of redundant FEC packets (1 - 5).
    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.
    seqno float
    Sequence number (1 - 64).
    fec String
    Fec.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bandwidthBiThreshold Number
    Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidthDownThreshold Number
    Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidthUpThreshold Number
    Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
    base Number
    Number of base FEC packets (1 - 20).
    latencyThreshold Number
    Apply FEC parameters when latency is <= threshold (0 means no threshold).
    objectVpnIpsecFecMappingsId String
    an identifier for the resource with format {{seqno}}.
    packetLossThreshold Number
    Apply FEC parameters when packet loss is >= threshold (0 - 100, 0 means no threshold).
    redundant Number
    Number of redundant FEC packets (1 - 5).
    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.
    seqno Number
    Sequence number (1 - 64).

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectVpnIpsecFecMappings 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 ObjectVpnIpsecFecMappings Resource

    Get an existing ObjectVpnIpsecFecMappings 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?: ObjectVpnIpsecFecMappingsState, opts?: CustomResourceOptions): ObjectVpnIpsecFecMappings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            bandwidth_bi_threshold: Optional[float] = None,
            bandwidth_down_threshold: Optional[float] = None,
            bandwidth_up_threshold: Optional[float] = None,
            base: Optional[float] = None,
            fec: Optional[str] = None,
            latency_threshold: Optional[float] = None,
            object_vpn_ipsec_fec_mappings_id: Optional[str] = None,
            packet_loss_threshold: Optional[float] = None,
            redundant: Optional[float] = None,
            scopetype: Optional[str] = None,
            seqno: Optional[float] = None) -> ObjectVpnIpsecFecMappings
    func GetObjectVpnIpsecFecMappings(ctx *Context, name string, id IDInput, state *ObjectVpnIpsecFecMappingsState, opts ...ResourceOption) (*ObjectVpnIpsecFecMappings, error)
    public static ObjectVpnIpsecFecMappings Get(string name, Input<string> id, ObjectVpnIpsecFecMappingsState? state, CustomResourceOptions? opts = null)
    public static ObjectVpnIpsecFecMappings get(String name, Output<String> id, ObjectVpnIpsecFecMappingsState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectVpnIpsecFecMappings    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.
    BandwidthBiThreshold double
    Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
    BandwidthDownThreshold double
    Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
    BandwidthUpThreshold double
    Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
    Base double
    Number of base FEC packets (1 - 20).
    Fec string
    Fec.
    LatencyThreshold double
    Apply FEC parameters when latency is <= threshold (0 means no threshold).
    ObjectVpnIpsecFecMappingsId string
    an identifier for the resource with format {{seqno}}.
    PacketLossThreshold double
    Apply FEC parameters when packet loss is >= threshold (0 - 100, 0 means no threshold).
    Redundant double
    Number of redundant FEC packets (1 - 5).
    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.
    Seqno double
    Sequence number (1 - 64).
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    BandwidthBiThreshold float64
    Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
    BandwidthDownThreshold float64
    Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
    BandwidthUpThreshold float64
    Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
    Base float64
    Number of base FEC packets (1 - 20).
    Fec string
    Fec.
    LatencyThreshold float64
    Apply FEC parameters when latency is <= threshold (0 means no threshold).
    ObjectVpnIpsecFecMappingsId string
    an identifier for the resource with format {{seqno}}.
    PacketLossThreshold float64
    Apply FEC parameters when packet loss is >= threshold (0 - 100, 0 means no threshold).
    Redundant float64
    Number of redundant FEC packets (1 - 5).
    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.
    Seqno float64
    Sequence number (1 - 64).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bandwidthBiThreshold Double
    Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidthDownThreshold Double
    Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidthUpThreshold Double
    Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
    base Double
    Number of base FEC packets (1 - 20).
    fec String
    Fec.
    latencyThreshold Double
    Apply FEC parameters when latency is <= threshold (0 means no threshold).
    objectVpnIpsecFecMappingsId String
    an identifier for the resource with format {{seqno}}.
    packetLossThreshold Double
    Apply FEC parameters when packet loss is >= threshold (0 - 100, 0 means no threshold).
    redundant Double
    Number of redundant FEC packets (1 - 5).
    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.
    seqno Double
    Sequence number (1 - 64).
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bandwidthBiThreshold number
    Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidthDownThreshold number
    Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidthUpThreshold number
    Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
    base number
    Number of base FEC packets (1 - 20).
    fec string
    Fec.
    latencyThreshold number
    Apply FEC parameters when latency is <= threshold (0 means no threshold).
    objectVpnIpsecFecMappingsId string
    an identifier for the resource with format {{seqno}}.
    packetLossThreshold number
    Apply FEC parameters when packet loss is >= threshold (0 - 100, 0 means no threshold).
    redundant number
    Number of redundant FEC packets (1 - 5).
    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.
    seqno number
    Sequence number (1 - 64).
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bandwidth_bi_threshold float
    Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidth_down_threshold float
    Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidth_up_threshold float
    Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
    base float
    Number of base FEC packets (1 - 20).
    fec str
    Fec.
    latency_threshold float
    Apply FEC parameters when latency is <= threshold (0 means no threshold).
    object_vpn_ipsec_fec_mappings_id str
    an identifier for the resource with format {{seqno}}.
    packet_loss_threshold float
    Apply FEC parameters when packet loss is >= threshold (0 - 100, 0 means no threshold).
    redundant float
    Number of redundant FEC packets (1 - 5).
    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.
    seqno float
    Sequence number (1 - 64).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bandwidthBiThreshold Number
    Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidthDownThreshold Number
    Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
    bandwidthUpThreshold Number
    Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
    base Number
    Number of base FEC packets (1 - 20).
    fec String
    Fec.
    latencyThreshold Number
    Apply FEC parameters when latency is <= threshold (0 means no threshold).
    objectVpnIpsecFecMappingsId String
    an identifier for the resource with format {{seqno}}.
    packetLossThreshold Number
    Apply FEC parameters when packet loss is >= threshold (0 - 100, 0 means no threshold).
    redundant Number
    Number of redundant FEC packets (1 - 5).
    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.
    seqno Number
    Sequence number (1 - 64).

    Import

    ObjectVpn IpsecFecMappings can be imported using any of these accepted formats:

    Set import_options = [“fec=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectVpnIpsecFecMappings:ObjectVpnIpsecFecMappings labelname {{seqno}}
    

    $ 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