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

fortimanager.WantempSystemSdwanMembers

Explore with Pulumi AI

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

    FortiGate interfaces added to the SD-WAN.

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

    SeqNum double
    Sequence number(1-512).
    Wanprof string
    Wanprof.
    Adom string
    Adom. This value is valid only when the scopetype is adom, 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.
    IngressSpilloverThreshold double
    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.
    PreferredSource 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.
    PriorityInSla double
    Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
    PriorityOutSla double
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    SpilloverThreshold 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.
    TransportGroup double
    Measured transport group (0 - 255).
    VolumeRatio double
    Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
    WantempSystemSdwanMembersId string
    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.
    _dynamicMember string
    _Dynamic-Member.
    SeqNum float64
    Sequence number(1-512).
    Wanprof string
    Wanprof.
    Adom string
    Adom. This value is valid only when the scopetype is adom, 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.
    IngressSpilloverThreshold float64
    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.
    PreferredSource 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.
    PriorityInSla float64
    Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
    PriorityOutSla float64
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    SpilloverThreshold 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.
    TransportGroup float64
    Measured transport group (0 - 255).
    VolumeRatio float64
    Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
    WantempSystemSdwanMembersId string
    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.
    _dynamicMember string
    _Dynamic-Member.
    seqNum Double
    Sequence number(1-512).
    wanprof String
    Wanprof.
    _dynamicMember String
    _Dynamic-Member.
    adom String
    Adom. This value is valid only when the scopetype is adom, 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.
    ingressSpilloverThreshold Double
    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.
    preferredSource 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.
    priorityInSla Double
    Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
    priorityOutSla Double
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    spilloverThreshold 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.
    transportGroup Double
    Measured transport group (0 - 255).
    volumeRatio Double
    Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
    wantempSystemSdwanMembersId String
    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.
    seqNum number
    Sequence number(1-512).
    wanprof string
    Wanprof.
    _dynamicMember string
    _Dynamic-Member.
    adom string
    Adom. This value is valid only when the scopetype is adom, 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.
    ingressSpilloverThreshold number
    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.
    preferredSource 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.
    priorityInSla number
    Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
    priorityOutSla number
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    spilloverThreshold 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.
    transportGroup number
    Measured transport group (0 - 255).
    volumeRatio number
    Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
    wantempSystemSdwanMembersId string
    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_member str
    _Dynamic-Member.
    adom str
    Adom. This value is valid only when the scopetype is adom, 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_threshold float
    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_sla float
    Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
    priority_out_sla float
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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_sdwan_members_id str
    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.
    seqNum Number
    Sequence number(1-512).
    wanprof String
    Wanprof.
    _dynamicMember String
    _Dynamic-Member.
    adom String
    Adom. This value is valid only when the scopetype is adom, 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.
    ingressSpilloverThreshold Number
    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.
    preferredSource 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.
    priorityInSla Number
    Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
    priorityOutSla Number
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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.
    spilloverThreshold 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.
    transportGroup Number
    Measured transport group (0 - 255).
    volumeRatio Number
    Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
    wantempSystemSdwanMembersId String
    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.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    IngressSpilloverThreshold double
    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.
    PreferredSource 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.
    PriorityInSla double
    Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
    PriorityOutSla double
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SeqNum 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.
    SpilloverThreshold 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.
    TransportGroup double
    Measured transport group (0 - 255).
    VolumeRatio double
    Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
    Wanprof string
    Wanprof.
    WantempSystemSdwanMembersId string
    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.
    _dynamicMember string
    _Dynamic-Member.
    Adom string
    Adom. This value is valid only when the scopetype is adom, 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.
    IngressSpilloverThreshold float64
    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.
    PreferredSource 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.
    PriorityInSla float64
    Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
    PriorityOutSla float64
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SeqNum 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.
    SpilloverThreshold 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.
    TransportGroup float64
    Measured transport group (0 - 255).
    VolumeRatio float64
    Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
    Wanprof string
    Wanprof.
    WantempSystemSdwanMembersId string
    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.
    _dynamicMember string
    _Dynamic-Member.
    _dynamicMember String
    _Dynamic-Member.
    adom String
    Adom. This value is valid only when the scopetype is adom, 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.
    ingressSpilloverThreshold Double
    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.
    preferredSource 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.
    priorityInSla Double
    Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
    priorityOutSla Double
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    seqNum 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.
    spilloverThreshold 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.
    transportGroup Double
    Measured transport group (0 - 255).
    volumeRatio Double
    Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
    wanprof String
    Wanprof.
    wantempSystemSdwanMembersId String
    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.
    _dynamicMember string
    _Dynamic-Member.
    adom string
    Adom. This value is valid only when the scopetype is adom, 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.
    ingressSpilloverThreshold number
    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.
    preferredSource 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.
    priorityInSla number
    Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
    priorityOutSla number
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    seqNum 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.
    spilloverThreshold 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.
    transportGroup number
    Measured transport group (0 - 255).
    volumeRatio number
    Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
    wanprof string
    Wanprof.
    wantempSystemSdwanMembersId string
    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_member str
    _Dynamic-Member.
    adom str
    Adom. This value is valid only when the scopetype is adom, 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_threshold float
    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_sla float
    Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
    priority_out_sla float
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    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_sdwan_members_id str
    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.
    _dynamicMember String
    _Dynamic-Member.
    adom String
    Adom. This value is valid only when the scopetype is adom, 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.
    ingressSpilloverThreshold Number
    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.
    preferredSource 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.
    priorityInSla Number
    Preferred priority of routes to this member when this member is in-sla (0 - 65535, default = 0).
    priorityOutSla Number
    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. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    seqNum 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.
    spilloverThreshold 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.
    transportGroup Number
    Measured transport group (0 - 255).
    volumeRatio Number
    Measured volume ratio (this value / sum of all values = percentage of link volume, 1 - 255).
    wanprof String
    Wanprof.
    wantempSystemSdwanMembersId String
    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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev