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

fortimanager.ObjectWirelesscontrollerWagprofile

Explore with Pulumi AI

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

    Configure wireless access gateway (WAG) profiles used for tunnels on AP.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectWirelesscontrollerWagprofile("trname", {
        comment: "This is a Terraform example",
        dhcpIpAddr: "192.168.1.1",
        pingInterval: 1,
        pingNumber: 5,
        returnPacketTimeout: 160,
        tunnelType: "gre",
        wagIp: "0.0.0.0",
        wagPort: 1701,
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectWirelesscontrollerWagprofile("trname",
        comment="This is a Terraform example",
        dhcp_ip_addr="192.168.1.1",
        ping_interval=1,
        ping_number=5,
        return_packet_timeout=160,
        tunnel_type="gre",
        wag_ip="0.0.0.0",
        wag_port=1701)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewObjectWirelesscontrollerWagprofile(ctx, "trname", &fortimanager.ObjectWirelesscontrollerWagprofileArgs{
    			Comment:             pulumi.String("This is a Terraform example"),
    			DhcpIpAddr:          pulumi.String("192.168.1.1"),
    			PingInterval:        pulumi.Float64(1),
    			PingNumber:          pulumi.Float64(5),
    			ReturnPacketTimeout: pulumi.Float64(160),
    			TunnelType:          pulumi.String("gre"),
    			WagIp:               pulumi.String("0.0.0.0"),
    			WagPort:             pulumi.Float64(1701),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortimanager.ObjectWirelesscontrollerWagprofile("trname", new()
        {
            Comment = "This is a Terraform example",
            DhcpIpAddr = "192.168.1.1",
            PingInterval = 1,
            PingNumber = 5,
            ReturnPacketTimeout = 160,
            TunnelType = "gre",
            WagIp = "0.0.0.0",
            WagPort = 1701,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerWagprofile;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerWagprofileArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var trname = new ObjectWirelesscontrollerWagprofile("trname", ObjectWirelesscontrollerWagprofileArgs.builder()
                .comment("This is a Terraform example")
                .dhcpIpAddr("192.168.1.1")
                .pingInterval(1)
                .pingNumber(5)
                .returnPacketTimeout(160)
                .tunnelType("gre")
                .wagIp("0.0.0.0")
                .wagPort(1701)
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectWirelesscontrollerWagprofile
        properties:
          comment: This is a Terraform example
          dhcpIpAddr: 192.168.1.1
          pingInterval: 1
          pingNumber: 5
          returnPacketTimeout: 160
          tunnelType: gre
          wagIp: 0.0.0.0
          wagPort: 1701
    

    Create ObjectWirelesscontrollerWagprofile Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerWagprofile(name: string, args?: ObjectWirelesscontrollerWagprofileArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerWagprofile(resource_name: str,
                                           args: Optional[ObjectWirelesscontrollerWagprofileArgs] = None,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerWagprofile(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           adom: Optional[str] = None,
                                           comment: Optional[str] = None,
                                           dhcp_ip_addr: Optional[str] = None,
                                           name: Optional[str] = None,
                                           object_wirelesscontroller_wagprofile_id: Optional[str] = None,
                                           ping_interval: Optional[float] = None,
                                           ping_number: Optional[float] = None,
                                           return_packet_timeout: Optional[float] = None,
                                           scopetype: Optional[str] = None,
                                           tunnel_type: Optional[str] = None,
                                           wag_ip: Optional[str] = None,
                                           wag_port: Optional[float] = None)
    func NewObjectWirelesscontrollerWagprofile(ctx *Context, name string, args *ObjectWirelesscontrollerWagprofileArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerWagprofile, error)
    public ObjectWirelesscontrollerWagprofile(string name, ObjectWirelesscontrollerWagprofileArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerWagprofile(String name, ObjectWirelesscontrollerWagprofileArgs args)
    public ObjectWirelesscontrollerWagprofile(String name, ObjectWirelesscontrollerWagprofileArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerWagprofile
    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 ObjectWirelesscontrollerWagprofileArgs
    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 ObjectWirelesscontrollerWagprofileArgs
    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 ObjectWirelesscontrollerWagprofileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerWagprofileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerWagprofileArgs
    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 objectWirelesscontrollerWagprofileResource = new Fortimanager.ObjectWirelesscontrollerWagprofile("objectWirelesscontrollerWagprofileResource", new()
    {
        Adom = "string",
        Comment = "string",
        DhcpIpAddr = "string",
        Name = "string",
        ObjectWirelesscontrollerWagprofileId = "string",
        PingInterval = 0,
        PingNumber = 0,
        ReturnPacketTimeout = 0,
        Scopetype = "string",
        TunnelType = "string",
        WagIp = "string",
        WagPort = 0,
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerWagprofile(ctx, "objectWirelesscontrollerWagprofileResource", &fortimanager.ObjectWirelesscontrollerWagprofileArgs{
    Adom: pulumi.String("string"),
    Comment: pulumi.String("string"),
    DhcpIpAddr: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectWirelesscontrollerWagprofileId: pulumi.String("string"),
    PingInterval: pulumi.Float64(0),
    PingNumber: pulumi.Float64(0),
    ReturnPacketTimeout: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    TunnelType: pulumi.String("string"),
    WagIp: pulumi.String("string"),
    WagPort: pulumi.Float64(0),
    })
    
    var objectWirelesscontrollerWagprofileResource = new ObjectWirelesscontrollerWagprofile("objectWirelesscontrollerWagprofileResource", ObjectWirelesscontrollerWagprofileArgs.builder()
        .adom("string")
        .comment("string")
        .dhcpIpAddr("string")
        .name("string")
        .objectWirelesscontrollerWagprofileId("string")
        .pingInterval(0)
        .pingNumber(0)
        .returnPacketTimeout(0)
        .scopetype("string")
        .tunnelType("string")
        .wagIp("string")
        .wagPort(0)
        .build());
    
    object_wirelesscontroller_wagprofile_resource = fortimanager.ObjectWirelesscontrollerWagprofile("objectWirelesscontrollerWagprofileResource",
        adom="string",
        comment="string",
        dhcp_ip_addr="string",
        name="string",
        object_wirelesscontroller_wagprofile_id="string",
        ping_interval=0,
        ping_number=0,
        return_packet_timeout=0,
        scopetype="string",
        tunnel_type="string",
        wag_ip="string",
        wag_port=0)
    
    const objectWirelesscontrollerWagprofileResource = new fortimanager.ObjectWirelesscontrollerWagprofile("objectWirelesscontrollerWagprofileResource", {
        adom: "string",
        comment: "string",
        dhcpIpAddr: "string",
        name: "string",
        objectWirelesscontrollerWagprofileId: "string",
        pingInterval: 0,
        pingNumber: 0,
        returnPacketTimeout: 0,
        scopetype: "string",
        tunnelType: "string",
        wagIp: "string",
        wagPort: 0,
    });
    
    type: fortimanager:ObjectWirelesscontrollerWagprofile
    properties:
        adom: string
        comment: string
        dhcpIpAddr: string
        name: string
        objectWirelesscontrollerWagprofileId: string
        pingInterval: 0
        pingNumber: 0
        returnPacketTimeout: 0
        scopetype: string
        tunnelType: string
        wagIp: string
        wagPort: 0
    

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

    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
    Comment.
    DhcpIpAddr string
    IP address of the monitoring DHCP request packet sent through the tunnel.
    Name string
    Tunnel profile name.
    ObjectWirelesscontrollerWagprofileId string
    an identifier for the resource with format {{name}}.
    PingInterval double
    Interval between two tunnel monitoring echo packets (1 - 65535 sec, default = 1).
    PingNumber double
    Number of the tunnel monitoring echo packets (1 - 65535, default = 5).
    ReturnPacketTimeout double
    Window of time for the return packets from the tunnel's remote end (1 - 65535 sec, default = 160).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    TunnelType string
    Tunnel type. Valid values: gre, l2tpv3.
    WagIp string
    IP Address of the wireless access gateway.
    WagPort double
    UDP port of the wireless access gateway.
    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
    Comment.
    DhcpIpAddr string
    IP address of the monitoring DHCP request packet sent through the tunnel.
    Name string
    Tunnel profile name.
    ObjectWirelesscontrollerWagprofileId string
    an identifier for the resource with format {{name}}.
    PingInterval float64
    Interval between two tunnel monitoring echo packets (1 - 65535 sec, default = 1).
    PingNumber float64
    Number of the tunnel monitoring echo packets (1 - 65535, default = 5).
    ReturnPacketTimeout float64
    Window of time for the return packets from the tunnel's remote end (1 - 65535 sec, default = 160).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    TunnelType string
    Tunnel type. Valid values: gre, l2tpv3.
    WagIp string
    IP Address of the wireless access gateway.
    WagPort float64
    UDP port of the wireless access gateway.
    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
    Comment.
    dhcpIpAddr String
    IP address of the monitoring DHCP request packet sent through the tunnel.
    name String
    Tunnel profile name.
    objectWirelesscontrollerWagprofileId String
    an identifier for the resource with format {{name}}.
    pingInterval Double
    Interval between two tunnel monitoring echo packets (1 - 65535 sec, default = 1).
    pingNumber Double
    Number of the tunnel monitoring echo packets (1 - 65535, default = 5).
    returnPacketTimeout Double
    Window of time for the return packets from the tunnel's remote end (1 - 65535 sec, default = 160).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    tunnelType String
    Tunnel type. Valid values: gre, l2tpv3.
    wagIp String
    IP Address of the wireless access gateway.
    wagPort Double
    UDP port of the wireless access gateway.
    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
    Comment.
    dhcpIpAddr string
    IP address of the monitoring DHCP request packet sent through the tunnel.
    name string
    Tunnel profile name.
    objectWirelesscontrollerWagprofileId string
    an identifier for the resource with format {{name}}.
    pingInterval number
    Interval between two tunnel monitoring echo packets (1 - 65535 sec, default = 1).
    pingNumber number
    Number of the tunnel monitoring echo packets (1 - 65535, default = 5).
    returnPacketTimeout number
    Window of time for the return packets from the tunnel's remote end (1 - 65535 sec, default = 160).
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    tunnelType string
    Tunnel type. Valid values: gre, l2tpv3.
    wagIp string
    IP Address of the wireless access gateway.
    wagPort number
    UDP port of the wireless access gateway.
    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
    Comment.
    dhcp_ip_addr str
    IP address of the monitoring DHCP request packet sent through the tunnel.
    name str
    Tunnel profile name.
    object_wirelesscontroller_wagprofile_id str
    an identifier for the resource with format {{name}}.
    ping_interval float
    Interval between two tunnel monitoring echo packets (1 - 65535 sec, default = 1).
    ping_number float
    Number of the tunnel monitoring echo packets (1 - 65535, default = 5).
    return_packet_timeout float
    Window of time for the return packets from the tunnel's remote end (1 - 65535 sec, default = 160).
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    tunnel_type str
    Tunnel type. Valid values: gre, l2tpv3.
    wag_ip str
    IP Address of the wireless access gateway.
    wag_port float
    UDP port of the wireless access gateway.
    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
    Comment.
    dhcpIpAddr String
    IP address of the monitoring DHCP request packet sent through the tunnel.
    name String
    Tunnel profile name.
    objectWirelesscontrollerWagprofileId String
    an identifier for the resource with format {{name}}.
    pingInterval Number
    Interval between two tunnel monitoring echo packets (1 - 65535 sec, default = 1).
    pingNumber Number
    Number of the tunnel monitoring echo packets (1 - 65535, default = 5).
    returnPacketTimeout Number
    Window of time for the return packets from the tunnel's remote end (1 - 65535 sec, default = 160).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    tunnelType String
    Tunnel type. Valid values: gre, l2tpv3.
    wagIp String
    IP Address of the wireless access gateway.
    wagPort Number
    UDP port of the wireless access gateway.

    Outputs

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

    Get an existing ObjectWirelesscontrollerWagprofile 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?: ObjectWirelesscontrollerWagprofileState, opts?: CustomResourceOptions): ObjectWirelesscontrollerWagprofile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            comment: Optional[str] = None,
            dhcp_ip_addr: Optional[str] = None,
            name: Optional[str] = None,
            object_wirelesscontroller_wagprofile_id: Optional[str] = None,
            ping_interval: Optional[float] = None,
            ping_number: Optional[float] = None,
            return_packet_timeout: Optional[float] = None,
            scopetype: Optional[str] = None,
            tunnel_type: Optional[str] = None,
            wag_ip: Optional[str] = None,
            wag_port: Optional[float] = None) -> ObjectWirelesscontrollerWagprofile
    func GetObjectWirelesscontrollerWagprofile(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerWagprofileState, opts ...ResourceOption) (*ObjectWirelesscontrollerWagprofile, error)
    public static ObjectWirelesscontrollerWagprofile Get(string name, Input<string> id, ObjectWirelesscontrollerWagprofileState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerWagprofile get(String name, Output<String> id, ObjectWirelesscontrollerWagprofileState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerWagprofile    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
    Comment.
    DhcpIpAddr string
    IP address of the monitoring DHCP request packet sent through the tunnel.
    Name string
    Tunnel profile name.
    ObjectWirelesscontrollerWagprofileId string
    an identifier for the resource with format {{name}}.
    PingInterval double
    Interval between two tunnel monitoring echo packets (1 - 65535 sec, default = 1).
    PingNumber double
    Number of the tunnel monitoring echo packets (1 - 65535, default = 5).
    ReturnPacketTimeout double
    Window of time for the return packets from the tunnel's remote end (1 - 65535 sec, default = 160).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    TunnelType string
    Tunnel type. Valid values: gre, l2tpv3.
    WagIp string
    IP Address of the wireless access gateway.
    WagPort double
    UDP port of the wireless access gateway.
    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
    Comment.
    DhcpIpAddr string
    IP address of the monitoring DHCP request packet sent through the tunnel.
    Name string
    Tunnel profile name.
    ObjectWirelesscontrollerWagprofileId string
    an identifier for the resource with format {{name}}.
    PingInterval float64
    Interval between two tunnel monitoring echo packets (1 - 65535 sec, default = 1).
    PingNumber float64
    Number of the tunnel monitoring echo packets (1 - 65535, default = 5).
    ReturnPacketTimeout float64
    Window of time for the return packets from the tunnel's remote end (1 - 65535 sec, default = 160).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    TunnelType string
    Tunnel type. Valid values: gre, l2tpv3.
    WagIp string
    IP Address of the wireless access gateway.
    WagPort float64
    UDP port of the wireless access gateway.
    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
    Comment.
    dhcpIpAddr String
    IP address of the monitoring DHCP request packet sent through the tunnel.
    name String
    Tunnel profile name.
    objectWirelesscontrollerWagprofileId String
    an identifier for the resource with format {{name}}.
    pingInterval Double
    Interval between two tunnel monitoring echo packets (1 - 65535 sec, default = 1).
    pingNumber Double
    Number of the tunnel monitoring echo packets (1 - 65535, default = 5).
    returnPacketTimeout Double
    Window of time for the return packets from the tunnel's remote end (1 - 65535 sec, default = 160).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    tunnelType String
    Tunnel type. Valid values: gre, l2tpv3.
    wagIp String
    IP Address of the wireless access gateway.
    wagPort Double
    UDP port of the wireless access gateway.
    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
    Comment.
    dhcpIpAddr string
    IP address of the monitoring DHCP request packet sent through the tunnel.
    name string
    Tunnel profile name.
    objectWirelesscontrollerWagprofileId string
    an identifier for the resource with format {{name}}.
    pingInterval number
    Interval between two tunnel monitoring echo packets (1 - 65535 sec, default = 1).
    pingNumber number
    Number of the tunnel monitoring echo packets (1 - 65535, default = 5).
    returnPacketTimeout number
    Window of time for the return packets from the tunnel's remote end (1 - 65535 sec, default = 160).
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    tunnelType string
    Tunnel type. Valid values: gre, l2tpv3.
    wagIp string
    IP Address of the wireless access gateway.
    wagPort number
    UDP port of the wireless access gateway.
    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
    Comment.
    dhcp_ip_addr str
    IP address of the monitoring DHCP request packet sent through the tunnel.
    name str
    Tunnel profile name.
    object_wirelesscontroller_wagprofile_id str
    an identifier for the resource with format {{name}}.
    ping_interval float
    Interval between two tunnel monitoring echo packets (1 - 65535 sec, default = 1).
    ping_number float
    Number of the tunnel monitoring echo packets (1 - 65535, default = 5).
    return_packet_timeout float
    Window of time for the return packets from the tunnel's remote end (1 - 65535 sec, default = 160).
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    tunnel_type str
    Tunnel type. Valid values: gre, l2tpv3.
    wag_ip str
    IP Address of the wireless access gateway.
    wag_port float
    UDP port of the wireless access gateway.
    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
    Comment.
    dhcpIpAddr String
    IP address of the monitoring DHCP request packet sent through the tunnel.
    name String
    Tunnel profile name.
    objectWirelesscontrollerWagprofileId String
    an identifier for the resource with format {{name}}.
    pingInterval Number
    Interval between two tunnel monitoring echo packets (1 - 65535 sec, default = 1).
    pingNumber Number
    Number of the tunnel monitoring echo packets (1 - 65535, default = 5).
    returnPacketTimeout Number
    Window of time for the return packets from the tunnel's remote end (1 - 65535 sec, default = 160).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    tunnelType String
    Tunnel type. Valid values: gre, l2tpv3.
    wagIp String
    IP Address of the wireless access gateway.
    wagPort Number
    UDP port of the wireless access gateway.

    Import

    ObjectWirelessController WagProfile can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerWagprofile:ObjectWirelesscontrollerWagprofile labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev