fortimanager.WantempSystemSdwanMembers
Explore with Pulumi AI
FortiGate interfaces added to the SD-WAN.
This resource is a sub resource for variable
members
of resourcefortimanager.WantempSystemSdwan
. 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 trnameWanTemplate = new fortimanager.WanTemplate("trnameWanTemplate", {
adom: "root",
type: "wanprof",
});
const trnameWantempSystemSdwanMembers = new fortimanager.WantempSystemSdwanMembers("trnameWantempSystemSdwanMembers", {
wanprof: "terr3",
cost: "1",
"interface": "port7",
seqNum: 2,
}, {
dependsOn: [trnameWanTemplate],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_wan_template = fortimanager.WanTemplate("trnameWanTemplate",
adom="root",
type="wanprof")
trname_wantemp_system_sdwan_members = fortimanager.WantempSystemSdwanMembers("trnameWantempSystemSdwanMembers",
wanprof="terr3",
cost="1",
interface="port7",
seq_num=2,
opts = pulumi.ResourceOptions(depends_on=[trname_wan_template]))
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 {
trnameWanTemplate, err := fortimanager.NewWanTemplate(ctx, "trnameWanTemplate", &fortimanager.WanTemplateArgs{
Adom: pulumi.String("root"),
Type: pulumi.String("wanprof"),
})
if err != nil {
return err
}
_, err = fortimanager.NewWantempSystemSdwanMembers(ctx, "trnameWantempSystemSdwanMembers", &fortimanager.WantempSystemSdwanMembersArgs{
Wanprof: pulumi.String("terr3"),
Cost: pulumi.String("1"),
Interface: pulumi.String("port7"),
SeqNum: pulumi.Float64(2),
}, pulumi.DependsOn([]pulumi.Resource{
trnameWanTemplate,
}))
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 trnameWanTemplate = new Fortimanager.WanTemplate("trnameWanTemplate", new()
{
Adom = "root",
Type = "wanprof",
});
var trnameWantempSystemSdwanMembers = new Fortimanager.WantempSystemSdwanMembers("trnameWantempSystemSdwanMembers", new()
{
Wanprof = "terr3",
Cost = "1",
Interface = "port7",
SeqNum = 2,
}, new CustomResourceOptions
{
DependsOn =
{
trnameWanTemplate,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.WanTemplate;
import com.pulumi.fortimanager.WanTemplateArgs;
import com.pulumi.fortimanager.WantempSystemSdwanMembers;
import com.pulumi.fortimanager.WantempSystemSdwanMembersArgs;
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 trnameWanTemplate = new WanTemplate("trnameWanTemplate", WanTemplateArgs.builder()
.adom("root")
.type("wanprof")
.build());
var trnameWantempSystemSdwanMembers = new WantempSystemSdwanMembers("trnameWantempSystemSdwanMembers", WantempSystemSdwanMembersArgs.builder()
.wanprof("terr3")
.cost(1)
.interface_("port7")
.seqNum(2)
.build(), CustomResourceOptions.builder()
.dependsOn(trnameWanTemplate)
.build());
}
}
resources:
trnameWantempSystemSdwanMembers:
type: fortimanager:WantempSystemSdwanMembers
properties:
wanprof: terr3
cost: 1
interface: port7
seqNum: 2
options:
dependsOn:
- ${trnameWanTemplate}
trnameWanTemplate:
type: fortimanager:WanTemplate
properties:
adom: root
type: wanprof
Create WantempSystemSdwanMembers Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WantempSystemSdwanMembers(name: string, args: WantempSystemSdwanMembersArgs, opts?: CustomResourceOptions);
@overload
def WantempSystemSdwanMembers(resource_name: str,
args: WantempSystemSdwanMembersArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WantempSystemSdwanMembers(resource_name: str,
opts: Optional[ResourceOptions] = None,
seq_num: Optional[float] = None,
wanprof: Optional[str] = None,
priority_out_sla: Optional[float] = None,
zone: Optional[str] = None,
_dynamic_member: Optional[str] = None,
gateway6: Optional[str] = None,
ingress_spillover_threshold: Optional[float] = None,
interface: Optional[str] = None,
preferred_source: Optional[str] = None,
priority: Optional[float] = None,
priority6: Optional[float] = None,
comment: Optional[str] = None,
gateway: Optional[str] = None,
cost: Optional[str] = None,
priority_in_sla: Optional[float] = None,
source: Optional[str] = None,
source6: Optional[str] = None,
spillover_threshold: Optional[float] = None,
status: Optional[str] = None,
transport_group: Optional[float] = None,
volume_ratio: Optional[float] = None,
adom: Optional[str] = None,
wantemp_system_sdwan_members_id: Optional[str] = None,
weight: Optional[float] = None,
scopetype: Optional[str] = None)
func NewWantempSystemSdwanMembers(ctx *Context, name string, args WantempSystemSdwanMembersArgs, opts ...ResourceOption) (*WantempSystemSdwanMembers, error)
public WantempSystemSdwanMembers(string name, WantempSystemSdwanMembersArgs args, CustomResourceOptions? opts = null)
public WantempSystemSdwanMembers(String name, WantempSystemSdwanMembersArgs args)
public WantempSystemSdwanMembers(String name, WantempSystemSdwanMembersArgs args, CustomResourceOptions options)
type: fortimanager:WantempSystemSdwanMembers
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 WantempSystemSdwanMembersArgs
- 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 WantempSystemSdwanMembersArgs
- 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 WantempSystemSdwanMembersArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WantempSystemSdwanMembersArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WantempSystemSdwanMembersArgs
- 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 wantempSystemSdwanMembersResource = new Fortimanager.WantempSystemSdwanMembers("wantempSystemSdwanMembersResource", new()
{
SeqNum = 0,
Wanprof = "string",
PriorityOutSla = 0,
Zone = "string",
_dynamicMember = "string",
Gateway6 = "string",
IngressSpilloverThreshold = 0,
Interface = "string",
PreferredSource = "string",
Priority = 0,
Priority6 = 0,
Comment = "string",
Gateway = "string",
Cost = "string",
PriorityInSla = 0,
Source = "string",
Source6 = "string",
SpilloverThreshold = 0,
Status = "string",
TransportGroup = 0,
VolumeRatio = 0,
Adom = "string",
WantempSystemSdwanMembersId = "string",
Weight = 0,
Scopetype = "string",
});
example, err := fortimanager.NewWantempSystemSdwanMembers(ctx, "wantempSystemSdwanMembersResource", &fortimanager.WantempSystemSdwanMembersArgs{
SeqNum: pulumi.Float64(0),
Wanprof: pulumi.String("string"),
PriorityOutSla: pulumi.Float64(0),
Zone: pulumi.String("string"),
_dynamicMember: pulumi.String("string"),
Gateway6: pulumi.String("string"),
IngressSpilloverThreshold: pulumi.Float64(0),
Interface: pulumi.String("string"),
PreferredSource: pulumi.String("string"),
Priority: pulumi.Float64(0),
Priority6: pulumi.Float64(0),
Comment: pulumi.String("string"),
Gateway: pulumi.String("string"),
Cost: pulumi.String("string"),
PriorityInSla: pulumi.Float64(0),
Source: pulumi.String("string"),
Source6: pulumi.String("string"),
SpilloverThreshold: pulumi.Float64(0),
Status: pulumi.String("string"),
TransportGroup: pulumi.Float64(0),
VolumeRatio: pulumi.Float64(0),
Adom: pulumi.String("string"),
WantempSystemSdwanMembersId: pulumi.String("string"),
Weight: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
})
var wantempSystemSdwanMembersResource = new WantempSystemSdwanMembers("wantempSystemSdwanMembersResource", WantempSystemSdwanMembersArgs.builder()
.seqNum(0)
.wanprof("string")
.priorityOutSla(0)
.zone("string")
._dynamicMember("string")
.gateway6("string")
.ingressSpilloverThreshold(0)
.interface_("string")
.preferredSource("string")
.priority(0)
.priority6(0)
.comment("string")
.gateway("string")
.cost("string")
.priorityInSla(0)
.source("string")
.source6("string")
.spilloverThreshold(0)
.status("string")
.transportGroup(0)
.volumeRatio(0)
.adom("string")
.wantempSystemSdwanMembersId("string")
.weight(0)
.scopetype("string")
.build());
wantemp_system_sdwan_members_resource = fortimanager.WantempSystemSdwanMembers("wantempSystemSdwanMembersResource",
seq_num=0,
wanprof="string",
priority_out_sla=0,
zone="string",
_dynamic_member="string",
gateway6="string",
ingress_spillover_threshold=0,
interface="string",
preferred_source="string",
priority=0,
priority6=0,
comment="string",
gateway="string",
cost="string",
priority_in_sla=0,
source="string",
source6="string",
spillover_threshold=0,
status="string",
transport_group=0,
volume_ratio=0,
adom="string",
wantemp_system_sdwan_members_id="string",
weight=0,
scopetype="string")
const wantempSystemSdwanMembersResource = new fortimanager.WantempSystemSdwanMembers("wantempSystemSdwanMembersResource", {
seqNum: 0,
wanprof: "string",
priorityOutSla: 0,
zone: "string",
_dynamicMember: "string",
gateway6: "string",
ingressSpilloverThreshold: 0,
"interface": "string",
preferredSource: "string",
priority: 0,
priority6: 0,
comment: "string",
gateway: "string",
cost: "string",
priorityInSla: 0,
source: "string",
source6: "string",
spilloverThreshold: 0,
status: "string",
transportGroup: 0,
volumeRatio: 0,
adom: "string",
wantempSystemSdwanMembersId: "string",
weight: 0,
scopetype: "string",
});
type: fortimanager:WantempSystemSdwanMembers
properties:
_dynamicMember: string
adom: string
comment: string
cost: string
gateway: string
gateway6: string
ingressSpilloverThreshold: 0
interface: string
preferredSource: string
priority: 0
priority6: 0
priorityInSla: 0
priorityOutSla: 0
scopetype: string
seqNum: 0
source: string
source6: string
spilloverThreshold: 0
status: string
transportGroup: 0
volumeRatio: 0
wanprof: string
wantempSystemSdwanMembersId: string
weight: 0
zone: string
WantempSystemSdwanMembers 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 WantempSystemSdwanMembers resource accepts the following input properties:
- Seq
Num double - Sequence number(1-512).
- Wanprof string
- Wanprof.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comments.
- Cost string
- Cost of this interface for services in SLA mode (0 - 4294967295, default = 0).
- Gateway string
- The default gateway for this interface. Usually the default gateway of the Internet service provider that this interface is connected to.
- Gateway6 string
- IPv6 gateway.
- Ingress
Spillover doubleThreshold - Ingress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- Interface string
- Interface name.
- Preferred
Source string - Preferred source of route for this member.
- Priority double
- Priority of the interface (0 - 65535). Used for SD-WAN rules or priority rules.
- Priority6 double
- Priority of the interface for IPv6 (1 - 65535, default = 1024). Used for SD-WAN rules or priority rules.
- Priority
In doubleSla - Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
- Priority
Out doubleSla - Preferred priority of routes to this member when this member is out-of-sla (0 - 65535, default = 0).
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Source string
- Source IP address used in the health-check packet to the server.
- Source6 string
- Source IPv6 address used in the health-check packet to the server.
- Spillover
Threshold double - Egress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- Status string
- Enable/disable this interface in the SD-WAN. Valid values:
disable
,enable
. - Transport
Group double - Measured transport group (0 - 255).
- Volume
Ratio double - Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
- Wantemp
System stringSdwan Members Id - an identifier for the resource with format {{seq_num}}.
- Weight double
- Weight of this interface for weighted load balancing. (1 - 255) More traffic is directed to interfaces with higher weights.
- Zone string
- Zone name.
- _
dynamic stringMember - _Dynamic-Member.
- Seq
Num float64 - Sequence number(1-512).
- Wanprof string
- Wanprof.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comments.
- Cost string
- Cost of this interface for services in SLA mode (0 - 4294967295, default = 0).
- Gateway string
- The default gateway for this interface. Usually the default gateway of the Internet service provider that this interface is connected to.
- Gateway6 string
- IPv6 gateway.
- Ingress
Spillover float64Threshold - Ingress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- Interface string
- Interface name.
- Preferred
Source string - Preferred source of route for this member.
- Priority float64
- Priority of the interface (0 - 65535). Used for SD-WAN rules or priority rules.
- Priority6 float64
- Priority of the interface for IPv6 (1 - 65535, default = 1024). Used for SD-WAN rules or priority rules.
- Priority
In float64Sla - Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
- Priority
Out float64Sla - Preferred priority of routes to this member when this member is out-of-sla (0 - 65535, default = 0).
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Source string
- Source IP address used in the health-check packet to the server.
- Source6 string
- Source IPv6 address used in the health-check packet to the server.
- Spillover
Threshold float64 - Egress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- Status string
- Enable/disable this interface in the SD-WAN. Valid values:
disable
,enable
. - Transport
Group float64 - Measured transport group (0 - 255).
- Volume
Ratio float64 - Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
- Wantemp
System stringSdwan Members Id - an identifier for the resource with format {{seq_num}}.
- Weight float64
- Weight of this interface for weighted load balancing. (1 - 255) More traffic is directed to interfaces with higher weights.
- Zone string
- Zone name.
- _
dynamic stringMember - _Dynamic-Member.
- seq
Num Double - Sequence number(1-512).
- wanprof String
- Wanprof.
- _
dynamic StringMember - _Dynamic-Member.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comments.
- cost String
- Cost of this interface for services in SLA mode (0 - 4294967295, default = 0).
- gateway String
- The default gateway for this interface. Usually the default gateway of the Internet service provider that this interface is connected to.
- gateway6 String
- IPv6 gateway.
- ingress
Spillover DoubleThreshold - Ingress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- interface_ String
- Interface name.
- preferred
Source String - Preferred source of route for this member.
- priority Double
- Priority of the interface (0 - 65535). Used for SD-WAN rules or priority rules.
- priority6 Double
- Priority of the interface for IPv6 (1 - 65535, default = 1024). Used for SD-WAN rules or priority rules.
- priority
In DoubleSla - Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
- priority
Out DoubleSla - Preferred priority of routes to this member when this member is out-of-sla (0 - 65535, default = 0).
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - source String
- Source IP address used in the health-check packet to the server.
- source6 String
- Source IPv6 address used in the health-check packet to the server.
- spillover
Threshold Double - Egress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- status String
- Enable/disable this interface in the SD-WAN. Valid values:
disable
,enable
. - transport
Group Double - Measured transport group (0 - 255).
- volume
Ratio Double - Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
- wantemp
System StringSdwan Members Id - an identifier for the resource with format {{seq_num}}.
- weight Double
- Weight of this interface for weighted load balancing. (1 - 255) More traffic is directed to interfaces with higher weights.
- zone String
- Zone name.
- seq
Num number - Sequence number(1-512).
- wanprof string
- Wanprof.
- _
dynamic stringMember - _Dynamic-Member.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Comments.
- cost string
- Cost of this interface for services in SLA mode (0 - 4294967295, default = 0).
- gateway string
- The default gateway for this interface. Usually the default gateway of the Internet service provider that this interface is connected to.
- gateway6 string
- IPv6 gateway.
- ingress
Spillover numberThreshold - Ingress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- interface string
- Interface name.
- preferred
Source string - Preferred source of route for this member.
- priority number
- Priority of the interface (0 - 65535). Used for SD-WAN rules or priority rules.
- priority6 number
- Priority of the interface for IPv6 (1 - 65535, default = 1024). Used for SD-WAN rules or priority rules.
- priority
In numberSla - Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
- priority
Out numberSla - Preferred priority of routes to this member when this member is out-of-sla (0 - 65535, default = 0).
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - source string
- Source IP address used in the health-check packet to the server.
- source6 string
- Source IPv6 address used in the health-check packet to the server.
- spillover
Threshold number - Egress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- status string
- Enable/disable this interface in the SD-WAN. Valid values:
disable
,enable
. - transport
Group number - Measured transport group (0 - 255).
- volume
Ratio number - Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
- wantemp
System stringSdwan Members Id - an identifier for the resource with format {{seq_num}}.
- weight number
- Weight of this interface for weighted load balancing. (1 - 255) More traffic is directed to interfaces with higher weights.
- zone string
- Zone name.
- seq_
num float - Sequence number(1-512).
- wanprof str
- Wanprof.
- _
dynamic_ strmember - _Dynamic-Member.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Comments.
- cost str
- Cost of this interface for services in SLA mode (0 - 4294967295, default = 0).
- gateway str
- The default gateway for this interface. Usually the default gateway of the Internet service provider that this interface is connected to.
- gateway6 str
- IPv6 gateway.
- ingress_
spillover_ floatthreshold - Ingress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- interface str
- Interface name.
- preferred_
source str - Preferred source of route for this member.
- priority float
- Priority of the interface (0 - 65535). Used for SD-WAN rules or priority rules.
- priority6 float
- Priority of the interface for IPv6 (1 - 65535, default = 1024). Used for SD-WAN rules or priority rules.
- priority_
in_ floatsla - Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
- priority_
out_ floatsla - Preferred priority of routes to this member when this member is out-of-sla (0 - 65535, default = 0).
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - source str
- Source IP address used in the health-check packet to the server.
- source6 str
- Source IPv6 address used in the health-check packet to the server.
- spillover_
threshold float - Egress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- status str
- Enable/disable this interface in the SD-WAN. Valid values:
disable
,enable
. - transport_
group float - Measured transport group (0 - 255).
- volume_
ratio float - Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
- wantemp_
system_ strsdwan_ members_ id - an identifier for the resource with format {{seq_num}}.
- weight float
- Weight of this interface for weighted load balancing. (1 - 255) More traffic is directed to interfaces with higher weights.
- zone str
- Zone name.
- seq
Num Number - Sequence number(1-512).
- wanprof String
- Wanprof.
- _
dynamic StringMember - _Dynamic-Member.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comments.
- cost String
- Cost of this interface for services in SLA mode (0 - 4294967295, default = 0).
- gateway String
- The default gateway for this interface. Usually the default gateway of the Internet service provider that this interface is connected to.
- gateway6 String
- IPv6 gateway.
- ingress
Spillover NumberThreshold - Ingress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- interface String
- Interface name.
- preferred
Source String - Preferred source of route for this member.
- priority Number
- Priority of the interface (0 - 65535). Used for SD-WAN rules or priority rules.
- priority6 Number
- Priority of the interface for IPv6 (1 - 65535, default = 1024). Used for SD-WAN rules or priority rules.
- priority
In NumberSla - Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
- priority
Out NumberSla - Preferred priority of routes to this member when this member is out-of-sla (0 - 65535, default = 0).
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - source String
- Source IP address used in the health-check packet to the server.
- source6 String
- Source IPv6 address used in the health-check packet to the server.
- spillover
Threshold Number - Egress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- status String
- Enable/disable this interface in the SD-WAN. Valid values:
disable
,enable
. - transport
Group Number - Measured transport group (0 - 255).
- volume
Ratio Number - Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
- wantemp
System StringSdwan Members Id - an identifier for the resource with format {{seq_num}}.
- weight Number
- Weight of this interface for weighted load balancing. (1 - 255) More traffic is directed to interfaces with higher weights.
- zone String
- Zone name.
Outputs
All input properties are implicitly available as output properties. Additionally, the WantempSystemSdwanMembers 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 WantempSystemSdwanMembers Resource
Get an existing WantempSystemSdwanMembers 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?: WantempSystemSdwanMembersState, opts?: CustomResourceOptions): WantempSystemSdwanMembers
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
_dynamic_member: Optional[str] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
cost: Optional[str] = None,
gateway: Optional[str] = None,
gateway6: Optional[str] = None,
ingress_spillover_threshold: Optional[float] = None,
interface: Optional[str] = None,
preferred_source: Optional[str] = None,
priority: Optional[float] = None,
priority6: Optional[float] = None,
priority_in_sla: Optional[float] = None,
priority_out_sla: Optional[float] = None,
scopetype: Optional[str] = None,
seq_num: Optional[float] = None,
source: Optional[str] = None,
source6: Optional[str] = None,
spillover_threshold: Optional[float] = None,
status: Optional[str] = None,
transport_group: Optional[float] = None,
volume_ratio: Optional[float] = None,
wanprof: Optional[str] = None,
wantemp_system_sdwan_members_id: Optional[str] = None,
weight: Optional[float] = None,
zone: Optional[str] = None) -> WantempSystemSdwanMembers
func GetWantempSystemSdwanMembers(ctx *Context, name string, id IDInput, state *WantempSystemSdwanMembersState, opts ...ResourceOption) (*WantempSystemSdwanMembers, error)
public static WantempSystemSdwanMembers Get(string name, Input<string> id, WantempSystemSdwanMembersState? state, CustomResourceOptions? opts = null)
public static WantempSystemSdwanMembers get(String name, Output<String> id, WantempSystemSdwanMembersState state, CustomResourceOptions options)
resources: _: type: fortimanager:WantempSystemSdwanMembers 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. - Comment string
- Comments.
- Cost string
- Cost of this interface for services in SLA mode (0 - 4294967295, default = 0).
- Gateway string
- The default gateway for this interface. Usually the default gateway of the Internet service provider that this interface is connected to.
- Gateway6 string
- IPv6 gateway.
- Ingress
Spillover doubleThreshold - Ingress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- Interface string
- Interface name.
- Preferred
Source string - Preferred source of route for this member.
- Priority double
- Priority of the interface (0 - 65535). Used for SD-WAN rules or priority rules.
- Priority6 double
- Priority of the interface for IPv6 (1 - 65535, default = 1024). Used for SD-WAN rules or priority rules.
- Priority
In doubleSla - Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
- Priority
Out doubleSla - Preferred priority of routes to this member when this member is out-of-sla (0 - 65535, default = 0).
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Seq
Num double - Sequence number(1-512).
- Source string
- Source IP address used in the health-check packet to the server.
- Source6 string
- Source IPv6 address used in the health-check packet to the server.
- Spillover
Threshold double - Egress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- Status string
- Enable/disable this interface in the SD-WAN. Valid values:
disable
,enable
. - Transport
Group double - Measured transport group (0 - 255).
- Volume
Ratio double - Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
- Wanprof string
- Wanprof.
- Wantemp
System stringSdwan Members Id - an identifier for the resource with format {{seq_num}}.
- Weight double
- Weight of this interface for weighted load balancing. (1 - 255) More traffic is directed to interfaces with higher weights.
- Zone string
- Zone name.
- _
dynamic stringMember - _Dynamic-Member.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comments.
- Cost string
- Cost of this interface for services in SLA mode (0 - 4294967295, default = 0).
- Gateway string
- The default gateway for this interface. Usually the default gateway of the Internet service provider that this interface is connected to.
- Gateway6 string
- IPv6 gateway.
- Ingress
Spillover float64Threshold - Ingress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- Interface string
- Interface name.
- Preferred
Source string - Preferred source of route for this member.
- Priority float64
- Priority of the interface (0 - 65535). Used for SD-WAN rules or priority rules.
- Priority6 float64
- Priority of the interface for IPv6 (1 - 65535, default = 1024). Used for SD-WAN rules or priority rules.
- Priority
In float64Sla - Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
- Priority
Out float64Sla - Preferred priority of routes to this member when this member is out-of-sla (0 - 65535, default = 0).
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Seq
Num float64 - Sequence number(1-512).
- Source string
- Source IP address used in the health-check packet to the server.
- Source6 string
- Source IPv6 address used in the health-check packet to the server.
- Spillover
Threshold float64 - Egress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- Status string
- Enable/disable this interface in the SD-WAN. Valid values:
disable
,enable
. - Transport
Group float64 - Measured transport group (0 - 255).
- Volume
Ratio float64 - Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
- Wanprof string
- Wanprof.
- Wantemp
System stringSdwan Members Id - an identifier for the resource with format {{seq_num}}.
- Weight float64
- Weight of this interface for weighted load balancing. (1 - 255) More traffic is directed to interfaces with higher weights.
- Zone string
- Zone name.
- _
dynamic stringMember - _Dynamic-Member.
- _
dynamic StringMember - _Dynamic-Member.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comments.
- cost String
- Cost of this interface for services in SLA mode (0 - 4294967295, default = 0).
- gateway String
- The default gateway for this interface. Usually the default gateway of the Internet service provider that this interface is connected to.
- gateway6 String
- IPv6 gateway.
- ingress
Spillover DoubleThreshold - Ingress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- interface_ String
- Interface name.
- preferred
Source String - Preferred source of route for this member.
- priority Double
- Priority of the interface (0 - 65535). Used for SD-WAN rules or priority rules.
- priority6 Double
- Priority of the interface for IPv6 (1 - 65535, default = 1024). Used for SD-WAN rules or priority rules.
- priority
In DoubleSla - Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
- priority
Out DoubleSla - Preferred priority of routes to this member when this member is out-of-sla (0 - 65535, default = 0).
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - seq
Num Double - Sequence number(1-512).
- source String
- Source IP address used in the health-check packet to the server.
- source6 String
- Source IPv6 address used in the health-check packet to the server.
- spillover
Threshold Double - Egress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- status String
- Enable/disable this interface in the SD-WAN. Valid values:
disable
,enable
. - transport
Group Double - Measured transport group (0 - 255).
- volume
Ratio Double - Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
- wanprof String
- Wanprof.
- wantemp
System StringSdwan Members Id - an identifier for the resource with format {{seq_num}}.
- weight Double
- Weight of this interface for weighted load balancing. (1 - 255) More traffic is directed to interfaces with higher weights.
- zone String
- Zone name.
- _
dynamic stringMember - _Dynamic-Member.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Comments.
- cost string
- Cost of this interface for services in SLA mode (0 - 4294967295, default = 0).
- gateway string
- The default gateway for this interface. Usually the default gateway of the Internet service provider that this interface is connected to.
- gateway6 string
- IPv6 gateway.
- ingress
Spillover numberThreshold - Ingress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- interface string
- Interface name.
- preferred
Source string - Preferred source of route for this member.
- priority number
- Priority of the interface (0 - 65535). Used for SD-WAN rules or priority rules.
- priority6 number
- Priority of the interface for IPv6 (1 - 65535, default = 1024). Used for SD-WAN rules or priority rules.
- priority
In numberSla - Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
- priority
Out numberSla - Preferred priority of routes to this member when this member is out-of-sla (0 - 65535, default = 0).
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - seq
Num number - Sequence number(1-512).
- source string
- Source IP address used in the health-check packet to the server.
- source6 string
- Source IPv6 address used in the health-check packet to the server.
- spillover
Threshold number - Egress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- status string
- Enable/disable this interface in the SD-WAN. Valid values:
disable
,enable
. - transport
Group number - Measured transport group (0 - 255).
- volume
Ratio number - Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
- wanprof string
- Wanprof.
- wantemp
System stringSdwan Members Id - an identifier for the resource with format {{seq_num}}.
- weight number
- Weight of this interface for weighted load balancing. (1 - 255) More traffic is directed to interfaces with higher weights.
- zone string
- Zone name.
- _
dynamic_ strmember - _Dynamic-Member.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Comments.
- cost str
- Cost of this interface for services in SLA mode (0 - 4294967295, default = 0).
- gateway str
- The default gateway for this interface. Usually the default gateway of the Internet service provider that this interface is connected to.
- gateway6 str
- IPv6 gateway.
- ingress_
spillover_ floatthreshold - Ingress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- interface str
- Interface name.
- preferred_
source str - Preferred source of route for this member.
- priority float
- Priority of the interface (0 - 65535). Used for SD-WAN rules or priority rules.
- priority6 float
- Priority of the interface for IPv6 (1 - 65535, default = 1024). Used for SD-WAN rules or priority rules.
- priority_
in_ floatsla - Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
- priority_
out_ floatsla - Preferred priority of routes to this member when this member is out-of-sla (0 - 65535, default = 0).
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - seq_
num float - Sequence number(1-512).
- source str
- Source IP address used in the health-check packet to the server.
- source6 str
- Source IPv6 address used in the health-check packet to the server.
- spillover_
threshold float - Egress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- status str
- Enable/disable this interface in the SD-WAN. Valid values:
disable
,enable
. - transport_
group float - Measured transport group (0 - 255).
- volume_
ratio float - Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
- wanprof str
- Wanprof.
- wantemp_
system_ strsdwan_ members_ id - an identifier for the resource with format {{seq_num}}.
- weight float
- Weight of this interface for weighted load balancing. (1 - 255) More traffic is directed to interfaces with higher weights.
- zone str
- Zone name.
- _
dynamic StringMember - _Dynamic-Member.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comments.
- cost String
- Cost of this interface for services in SLA mode (0 - 4294967295, default = 0).
- gateway String
- The default gateway for this interface. Usually the default gateway of the Internet service provider that this interface is connected to.
- gateway6 String
- IPv6 gateway.
- ingress
Spillover NumberThreshold - Ingress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- interface String
- Interface name.
- preferred
Source String - Preferred source of route for this member.
- priority Number
- Priority of the interface (0 - 65535). Used for SD-WAN rules or priority rules.
- priority6 Number
- Priority of the interface for IPv6 (1 - 65535, default = 1024). Used for SD-WAN rules or priority rules.
- priority
In NumberSla - Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
- priority
Out NumberSla - Preferred priority of routes to this member when this member is out-of-sla (0 - 65535, default = 0).
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - seq
Num Number - Sequence number(1-512).
- source String
- Source IP address used in the health-check packet to the server.
- source6 String
- Source IPv6 address used in the health-check packet to the server.
- spillover
Threshold Number - Egress spillover threshold for this interface (0 - 16776000 kbit/s). When this traffic volume threshold is reached, new sessions spill over to other interfaces in the SD-WAN.
- status String
- Enable/disable this interface in the SD-WAN. Valid values:
disable
,enable
. - transport
Group Number - Measured transport group (0 - 255).
- volume
Ratio Number - Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
- wanprof String
- Wanprof.
- wantemp
System StringSdwan Members Id - an identifier for the resource with format {{seq_num}}.
- weight Number
- Weight of this interface for weighted load balancing. (1 - 255) More traffic is directed to interfaces with higher weights.
- zone String
- Zone name.
Import
Wantemp SystemSdwanMembers can be imported using any of these accepted formats:
Set import_options = [“wanprof=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/wantempSystemSdwanMembers:WantempSystemSdwanMembers labelname {{seq_num}}
$ 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.