fortimanager.ObjectVpnIpsecFec
Explore with Pulumi AI
Configure Forward Error Correction (FEC) mapping profiles.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
mappings
:fortimanager.ObjectVpnIpsecFecMappings
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectVpnIpsecFec("trname", {mappings: [{
bandwidthBiThreshold: 12,
}]});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectVpnIpsecFec("trname", mappings=[{
"bandwidth_bi_threshold": 12,
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewObjectVpnIpsecFec(ctx, "trname", &fortimanager.ObjectVpnIpsecFecArgs{
Mappings: fortimanager.ObjectVpnIpsecFecMappingArray{
&fortimanager.ObjectVpnIpsecFecMappingArgs{
BandwidthBiThreshold: pulumi.Float64(12),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.ObjectVpnIpsecFec("trname", new()
{
Mappings = new[]
{
new Fortimanager.Inputs.ObjectVpnIpsecFecMappingArgs
{
BandwidthBiThreshold = 12,
},
},
});
});
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.ObjectVpnIpsecFecArgs;
import com.pulumi.fortimanager.inputs.ObjectVpnIpsecFecMappingArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new ObjectVpnIpsecFec("trname", ObjectVpnIpsecFecArgs.builder()
.mappings(ObjectVpnIpsecFecMappingArgs.builder()
.bandwidthBiThreshold(12)
.build())
.build());
}
}
resources:
trname:
type: fortimanager:ObjectVpnIpsecFec
properties:
mappings:
- bandwidthBiThreshold: 12
Create ObjectVpnIpsecFec Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectVpnIpsecFec(name: string, args?: ObjectVpnIpsecFecArgs, opts?: CustomResourceOptions);
@overload
def ObjectVpnIpsecFec(resource_name: str,
args: Optional[ObjectVpnIpsecFecArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectVpnIpsecFec(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
mappings: Optional[Sequence[ObjectVpnIpsecFecMappingArgs]] = None,
name: Optional[str] = None,
object_vpn_ipsec_fec_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectVpnIpsecFec(ctx *Context, name string, args *ObjectVpnIpsecFecArgs, opts ...ResourceOption) (*ObjectVpnIpsecFec, error)
public ObjectVpnIpsecFec(string name, ObjectVpnIpsecFecArgs? args = null, CustomResourceOptions? opts = null)
public ObjectVpnIpsecFec(String name, ObjectVpnIpsecFecArgs args)
public ObjectVpnIpsecFec(String name, ObjectVpnIpsecFecArgs args, CustomResourceOptions options)
type: fortimanager:ObjectVpnIpsecFec
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 ObjectVpnIpsecFecArgs
- 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 ObjectVpnIpsecFecArgs
- 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 ObjectVpnIpsecFecArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectVpnIpsecFecArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectVpnIpsecFecArgs
- 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 objectVpnIpsecFecResource = new Fortimanager.ObjectVpnIpsecFec("objectVpnIpsecFecResource", new()
{
Adom = "string",
DynamicSortSubtable = "string",
Mappings = new[]
{
new Fortimanager.Inputs.ObjectVpnIpsecFecMappingArgs
{
BandwidthBiThreshold = 0,
BandwidthDownThreshold = 0,
BandwidthUpThreshold = 0,
Base = 0,
LatencyThreshold = 0,
PacketLossThreshold = 0,
Redundant = 0,
Seqno = 0,
},
},
Name = "string",
ObjectVpnIpsecFecId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectVpnIpsecFec(ctx, "objectVpnIpsecFecResource", &fortimanager.ObjectVpnIpsecFecArgs{
Adom: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
Mappings: .ObjectVpnIpsecFecMappingArray{
&.ObjectVpnIpsecFecMappingArgs{
BandwidthBiThreshold: pulumi.Float64(0),
BandwidthDownThreshold: pulumi.Float64(0),
BandwidthUpThreshold: pulumi.Float64(0),
Base: pulumi.Float64(0),
LatencyThreshold: pulumi.Float64(0),
PacketLossThreshold: pulumi.Float64(0),
Redundant: pulumi.Float64(0),
Seqno: pulumi.Float64(0),
},
},
Name: pulumi.String("string"),
ObjectVpnIpsecFecId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectVpnIpsecFecResource = new ObjectVpnIpsecFec("objectVpnIpsecFecResource", ObjectVpnIpsecFecArgs.builder()
.adom("string")
.dynamicSortSubtable("string")
.mappings(ObjectVpnIpsecFecMappingArgs.builder()
.bandwidthBiThreshold(0)
.bandwidthDownThreshold(0)
.bandwidthUpThreshold(0)
.base(0)
.latencyThreshold(0)
.packetLossThreshold(0)
.redundant(0)
.seqno(0)
.build())
.name("string")
.objectVpnIpsecFecId("string")
.scopetype("string")
.build());
object_vpn_ipsec_fec_resource = fortimanager.ObjectVpnIpsecFec("objectVpnIpsecFecResource",
adom="string",
dynamic_sort_subtable="string",
mappings=[{
"bandwidth_bi_threshold": 0,
"bandwidth_down_threshold": 0,
"bandwidth_up_threshold": 0,
"base": 0,
"latency_threshold": 0,
"packet_loss_threshold": 0,
"redundant": 0,
"seqno": 0,
}],
name="string",
object_vpn_ipsec_fec_id="string",
scopetype="string")
const objectVpnIpsecFecResource = new fortimanager.ObjectVpnIpsecFec("objectVpnIpsecFecResource", {
adom: "string",
dynamicSortSubtable: "string",
mappings: [{
bandwidthBiThreshold: 0,
bandwidthDownThreshold: 0,
bandwidthUpThreshold: 0,
base: 0,
latencyThreshold: 0,
packetLossThreshold: 0,
redundant: 0,
seqno: 0,
}],
name: "string",
objectVpnIpsecFecId: "string",
scopetype: "string",
});
type: fortimanager:ObjectVpnIpsecFec
properties:
adom: string
dynamicSortSubtable: string
mappings:
- bandwidthBiThreshold: 0
bandwidthDownThreshold: 0
bandwidthUpThreshold: 0
base: 0
latencyThreshold: 0
packetLossThreshold: 0
redundant: 0
seqno: 0
name: string
objectVpnIpsecFecId: string
scopetype: string
ObjectVpnIpsecFec 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 ObjectVpnIpsecFec resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Mappings
List<Object
Vpn Ipsec Fec Mapping> - Mappings. The structure of
mappings
block is documented below. - Name string
- Profile name.
- Object
Vpn stringIpsec Fec Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Mappings
[]Object
Vpn Ipsec Fec Mapping Args - Mappings. The structure of
mappings
block is documented below. - Name string
- Profile name.
- Object
Vpn stringIpsec Fec Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- mappings
List<Object
Vpn Ipsec Fec Mapping> - Mappings. The structure of
mappings
block is documented below. - name String
- Profile name.
- object
Vpn StringIpsec Fec Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- mappings
Object
Vpn Ipsec Fec Mapping[] - Mappings. The structure of
mappings
block is documented below. - name string
- Profile name.
- object
Vpn stringIpsec Fec Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- mappings
Sequence[Object
Vpn Ipsec Fec Mapping Args] - Mappings. The structure of
mappings
block is documented below. - name str
- Profile name.
- object_
vpn_ stripsec_ fec_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- mappings List<Property Map>
- Mappings. The structure of
mappings
block is documented below. - name String
- Profile name.
- object
Vpn StringIpsec Fec Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectVpnIpsecFec 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 ObjectVpnIpsecFec Resource
Get an existing ObjectVpnIpsecFec 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?: ObjectVpnIpsecFecState, opts?: CustomResourceOptions): ObjectVpnIpsecFec
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
mappings: Optional[Sequence[ObjectVpnIpsecFecMappingArgs]] = None,
name: Optional[str] = None,
object_vpn_ipsec_fec_id: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectVpnIpsecFec
func GetObjectVpnIpsecFec(ctx *Context, name string, id IDInput, state *ObjectVpnIpsecFecState, opts ...ResourceOption) (*ObjectVpnIpsecFec, error)
public static ObjectVpnIpsecFec Get(string name, Input<string> id, ObjectVpnIpsecFecState? state, CustomResourceOptions? opts = null)
public static ObjectVpnIpsecFec get(String name, Output<String> id, ObjectVpnIpsecFecState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectVpnIpsecFec 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. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Mappings
List<Object
Vpn Ipsec Fec Mapping> - Mappings. The structure of
mappings
block is documented below. - Name string
- Profile name.
- Object
Vpn stringIpsec Fec Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Mappings
[]Object
Vpn Ipsec Fec Mapping Args - Mappings. The structure of
mappings
block is documented below. - Name string
- Profile name.
- Object
Vpn stringIpsec Fec Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- mappings
List<Object
Vpn Ipsec Fec Mapping> - Mappings. The structure of
mappings
block is documented below. - name String
- Profile name.
- object
Vpn StringIpsec Fec Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- mappings
Object
Vpn Ipsec Fec Mapping[] - Mappings. The structure of
mappings
block is documented below. - name string
- Profile name.
- object
Vpn stringIpsec Fec Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- mappings
Sequence[Object
Vpn Ipsec Fec Mapping Args] - Mappings. The structure of
mappings
block is documented below. - name str
- Profile name.
- object_
vpn_ stripsec_ fec_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- mappings List<Property Map>
- Mappings. The structure of
mappings
block is documented below. - name String
- Profile name.
- object
Vpn StringIpsec Fec Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Supporting Types
ObjectVpnIpsecFecMapping, ObjectVpnIpsecFecMappingArgs
- 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).
- 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).
- Seqno double
- Sequence number (1 - 64).
- 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).
- 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).
- Seqno float64
- Sequence number (1 - 64).
- 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).
- 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).
- seqno Double
- Sequence number (1 - 64).
- 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).
- 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).
- seqno number
- Sequence number (1 - 64).
- 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).
- 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).
- seqno float
- Sequence number (1 - 64).
- 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).
- 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).
- seqno Number
- Sequence number (1 - 64).
Import
ObjectVpn IpsecFec can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectVpnIpsecFec:ObjectVpnIpsecFec labelname {{name}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.