Show / Hide Table of Contents

Namespace Pulumi.F5BigIP.Net

Classes

Route

f5bigip.net.Route Manages a route configuration

For resources should be named with their "full path". The full path is the combination of the partition + name of the resource. For example /Common/my-pool.

Example Usage

using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

class MyStack : Stack
{
public MyStack()
{
    var route2 = new F5BigIP.Net.Route("route2", new F5BigIP.Net.RouteArgs
    {
        Gw = "1.1.1.2",
        Name = "external-route",
        Network = "10.10.10.0/24",
    });
}

}

RouteArgs

RouteState

SelfIp

f5bigip.net.SelfIp Manages a selfip configuration

Resource should be named with their "full path". The full path is the combination of the partition + name of the resource, for example /Common/my-selfip.

Example Usage

using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

class MyStack : Stack
{
public MyStack()
{
    var selfip1 = new F5BigIP.Net.SelfIp("selfip1", new F5BigIP.Net.SelfIpArgs
    {
        Name = "/Common/internalselfIP",
        Ip = "11.1.1.1/24",
        Vlan = "/Common/internal",
        TrafficGroup = "traffic-group-1",
    });
}

}

SelfIpArgs

SelfIpState

Vlan

f5bigip.net.Vlan Manages a vlan configuration

For resources should be named with their "full path". The full path is the combination of the partition + name of the resource. For example /Common/my-pool.

Example Usage

using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

class MyStack : Stack
{
public MyStack()
{
    var vlan1 = new F5BigIP.Net.Vlan("vlan1", new F5BigIP.Net.VlanArgs
    {
        Interfaces = 
        {
            new F5BigIP.Net.Inputs.VlanInterfaceArgs
            {
                Tagged = false,
                Vlanport = 1.2,
            },
        },
        Name = "/Common/Internal",
        Tag = 101,
    });
}

}

VlanArgs

VlanState

Back to top Copyright 2016-2020, Pulumi Corporation.