fortimanager.ObjectVpnIpsecFecMappings
Explore with Pulumi AI
FEC redundancy mapping table.
This resource is a sub resource for variable
mappings
of resourcefortimanager.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
isadom
, otherwise the value of adom in the provider will be inherited. - Bandwidth
Bi doubleThreshold - Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
- Bandwidth
Down doubleThreshold - Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
- Bandwidth
Up doubleThreshold - Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
- Base double
- Number of base FEC packets (1 - 20).
- Latency
Threshold double - Apply FEC parameters when latency is <= threshold (0 means no threshold).
- Object
Vpn stringIpsec Fec Mappings Id - an identifier for the resource with format {{seqno}}.
- Packet
Loss doubleThreshold - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Seqno double
- Sequence number (1 - 64).
- Fec string
- Fec.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Bandwidth
Bi float64Threshold - Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
- Bandwidth
Down float64Threshold - Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
- Bandwidth
Up float64Threshold - Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
- Base float64
- Number of base FEC packets (1 - 20).
- Latency
Threshold float64 - Apply FEC parameters when latency is <= threshold (0 means no threshold).
- Object
Vpn stringIpsec Fec Mappings Id - an identifier for the resource with format {{seqno}}.
- Packet
Loss float64Threshold - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Seqno float64
- Sequence number (1 - 64).
- fec String
- Fec.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Bi DoubleThreshold - Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth
Down DoubleThreshold - Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth
Up DoubleThreshold - Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
- base Double
- Number of base FEC packets (1 - 20).
- latency
Threshold Double - Apply FEC parameters when latency is <= threshold (0 means no threshold).
- object
Vpn StringIpsec Fec Mappings Id - an identifier for the resource with format {{seqno}}.
- packet
Loss DoubleThreshold - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - seqno Double
- Sequence number (1 - 64).
- fec string
- Fec.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Bi numberThreshold - Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth
Down numberThreshold - Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth
Up numberThreshold - Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
- base number
- Number of base FEC packets (1 - 20).
- latency
Threshold number - Apply FEC parameters when latency is <= threshold (0 means no threshold).
- object
Vpn stringIpsec Fec Mappings Id - an identifier for the resource with format {{seqno}}.
- packet
Loss numberThreshold - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - seqno number
- Sequence number (1 - 64).
- fec str
- Fec.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth_
bi_ floatthreshold - Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth_
down_ floatthreshold - Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth_
up_ floatthreshold - 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_ stripsec_ fec_ mappings_ id - an identifier for the resource with format {{seqno}}.
- packet_
loss_ floatthreshold - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - seqno float
- Sequence number (1 - 64).
- fec String
- Fec.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Bi NumberThreshold - Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth
Down NumberThreshold - Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth
Up NumberThreshold - Apply FEC parameters when available up bandwidth is >= threshold (kbps, 0 means no threshold).
- base Number
- Number of base FEC packets (1 - 20).
- latency
Threshold Number - Apply FEC parameters when latency is <= threshold (0 means no threshold).
- object
Vpn StringIpsec Fec Mappings Id - an identifier for the resource with format {{seqno}}.
- packet
Loss NumberThreshold - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Bandwidth
Bi doubleThreshold - Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
- Bandwidth
Down doubleThreshold - Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
- Bandwidth
Up doubleThreshold - 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.
- Latency
Threshold double - Apply FEC parameters when latency is <= threshold (0 means no threshold).
- Object
Vpn stringIpsec Fec Mappings Id - an identifier for the resource with format {{seqno}}.
- Packet
Loss doubleThreshold - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Seqno double
- Sequence number (1 - 64).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Bandwidth
Bi float64Threshold - Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
- Bandwidth
Down float64Threshold - Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
- Bandwidth
Up float64Threshold - 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.
- Latency
Threshold float64 - Apply FEC parameters when latency is <= threshold (0 means no threshold).
- Object
Vpn stringIpsec Fec Mappings Id - an identifier for the resource with format {{seqno}}.
- Packet
Loss float64Threshold - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Seqno float64
- Sequence number (1 - 64).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Bi DoubleThreshold - Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth
Down DoubleThreshold - Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth
Up DoubleThreshold - 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.
- latency
Threshold Double - Apply FEC parameters when latency is <= threshold (0 means no threshold).
- object
Vpn StringIpsec Fec Mappings Id - an identifier for the resource with format {{seqno}}.
- packet
Loss DoubleThreshold - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - seqno Double
- Sequence number (1 - 64).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Bi numberThreshold - Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth
Down numberThreshold - Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth
Up numberThreshold - 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.
- latency
Threshold number - Apply FEC parameters when latency is <= threshold (0 means no threshold).
- object
Vpn stringIpsec Fec Mappings Id - an identifier for the resource with format {{seqno}}.
- packet
Loss numberThreshold - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - seqno number
- Sequence number (1 - 64).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth_
bi_ floatthreshold - Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth_
down_ floatthreshold - Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth_
up_ floatthreshold - 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_ stripsec_ fec_ mappings_ id - an identifier for the resource with format {{seqno}}.
- packet_
loss_ floatthreshold - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - seqno float
- Sequence number (1 - 64).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - bandwidth
Bi NumberThreshold - Apply FEC parameters when available bi-bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth
Down NumberThreshold - Apply FEC parameters when available down bandwidth is >= threshold (kbps, 0 means no threshold).
- bandwidth
Up NumberThreshold - 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.
- latency
Threshold Number - Apply FEC parameters when latency is <= threshold (0 means no threshold).
- object
Vpn StringIpsec Fec Mappings Id - an identifier for the resource with format {{seqno}}.
- packet
Loss NumberThreshold - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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.