1. Packages
  2. F5bigip Provider
  3. API Docs
  4. net
  5. SelfIp
f5 BIG-IP v3.17.10 published on Tuesday, Apr 8, 2025 by Pulumi

f5bigip.net.SelfIp

Explore with Pulumi AI

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

import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";

const vlan1 = new f5bigip.net.Vlan("vlan1", {
    name: "/Common/Internal",
    tag: 101,
    interfaces: [{
        vlanport: "1.2",
        tagged: false,
    }],
});
const selfip1 = new f5bigip.net.SelfIp("selfip1", {
    name: "/Common/internalselfIP",
    ip: "11.1.1.1/24",
    vlan: "/Common/internal",
}, {
    dependsOn: [vlan1],
});
Copy
import pulumi
import pulumi_f5bigip as f5bigip

vlan1 = f5bigip.net.Vlan("vlan1",
    name="/Common/Internal",
    tag=101,
    interfaces=[{
        "vlanport": "1.2",
        "tagged": False,
    }])
selfip1 = f5bigip.net.SelfIp("selfip1",
    name="/Common/internalselfIP",
    ip="11.1.1.1/24",
    vlan="/Common/internal",
    opts = pulumi.ResourceOptions(depends_on=[vlan1]))
Copy
package main

import (
	"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/net"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		vlan1, err := net.NewVlan(ctx, "vlan1", &net.VlanArgs{
			Name: pulumi.String("/Common/Internal"),
			Tag:  pulumi.Int(101),
			Interfaces: net.VlanInterfaceArray{
				&net.VlanInterfaceArgs{
					Vlanport: pulumi.String("1.2"),
					Tagged:   pulumi.Bool(false),
				},
			},
		})
		if err != nil {
			return err
		}
		_, err = net.NewSelfIp(ctx, "selfip1", &net.SelfIpArgs{
			Name: pulumi.String("/Common/internalselfIP"),
			Ip:   pulumi.String("11.1.1.1/24"),
			Vlan: pulumi.String("/Common/internal"),
		}, pulumi.DependsOn([]pulumi.Resource{
			vlan1,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

return await Deployment.RunAsync(() => 
{
    var vlan1 = new F5BigIP.Net.Vlan("vlan1", new()
    {
        Name = "/Common/Internal",
        Tag = 101,
        Interfaces = new[]
        {
            new F5BigIP.Net.Inputs.VlanInterfaceArgs
            {
                Vlanport = "1.2",
                Tagged = false,
            },
        },
    });

    var selfip1 = new F5BigIP.Net.SelfIp("selfip1", new()
    {
        Name = "/Common/internalselfIP",
        Ip = "11.1.1.1/24",
        Vlan = "/Common/internal",
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            vlan1,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.net.Vlan;
import com.pulumi.f5bigip.net.VlanArgs;
import com.pulumi.f5bigip.net.inputs.VlanInterfaceArgs;
import com.pulumi.f5bigip.net.SelfIp;
import com.pulumi.f5bigip.net.SelfIpArgs;
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 vlan1 = new Vlan("vlan1", VlanArgs.builder()
            .name("/Common/Internal")
            .tag(101)
            .interfaces(VlanInterfaceArgs.builder()
                .vlanport(1.2)
                .tagged(false)
                .build())
            .build());

        var selfip1 = new SelfIp("selfip1", SelfIpArgs.builder()
            .name("/Common/internalselfIP")
            .ip("11.1.1.1/24")
            .vlan("/Common/internal")
            .build(), CustomResourceOptions.builder()
                .dependsOn(vlan1)
                .build());

    }
}
Copy
resources:
  vlan1:
    type: f5bigip:net:Vlan
    properties:
      name: /Common/Internal
      tag: 101
      interfaces:
        - vlanport: 1.2
          tagged: false
  selfip1:
    type: f5bigip:net:SelfIp
    properties:
      name: /Common/internalselfIP
      ip: 11.1.1.1/24
      vlan: /Common/internal
    options:
      dependsOn:
        - ${vlan1}
Copy

Example usage with port_lockdown

import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";

const selfip1 = new f5bigip.net.SelfIp("selfip1", {
    name: "/Common/internalselfIP",
    ip: "11.1.1.1/24",
    vlan: "/Common/internal",
    trafficGroup: "traffic-group-1",
    portLockdowns: [
        "tcp:4040",
        "udp:5050",
        "egp:0",
    ],
}, {
    dependsOn: [vlan1],
});
Copy
import pulumi
import pulumi_f5bigip as f5bigip

selfip1 = f5bigip.net.SelfIp("selfip1",
    name="/Common/internalselfIP",
    ip="11.1.1.1/24",
    vlan="/Common/internal",
    traffic_group="traffic-group-1",
    port_lockdowns=[
        "tcp:4040",
        "udp:5050",
        "egp:0",
    ],
    opts = pulumi.ResourceOptions(depends_on=[vlan1]))
Copy
package main

import (
	"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/net"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := net.NewSelfIp(ctx, "selfip1", &net.SelfIpArgs{
			Name:         pulumi.String("/Common/internalselfIP"),
			Ip:           pulumi.String("11.1.1.1/24"),
			Vlan:         pulumi.String("/Common/internal"),
			TrafficGroup: pulumi.String("traffic-group-1"),
			PortLockdowns: pulumi.StringArray{
				pulumi.String("tcp:4040"),
				pulumi.String("udp:5050"),
				pulumi.String("egp:0"),
			},
		}, pulumi.DependsOn([]pulumi.Resource{
			vlan1,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

return await Deployment.RunAsync(() => 
{
    var selfip1 = new F5BigIP.Net.SelfIp("selfip1", new()
    {
        Name = "/Common/internalselfIP",
        Ip = "11.1.1.1/24",
        Vlan = "/Common/internal",
        TrafficGroup = "traffic-group-1",
        PortLockdowns = new[]
        {
            "tcp:4040",
            "udp:5050",
            "egp:0",
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            vlan1,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.net.SelfIp;
import com.pulumi.f5bigip.net.SelfIpArgs;
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 selfip1 = new SelfIp("selfip1", SelfIpArgs.builder()
            .name("/Common/internalselfIP")
            .ip("11.1.1.1/24")
            .vlan("/Common/internal")
            .trafficGroup("traffic-group-1")
            .portLockdowns(            
                "tcp:4040",
                "udp:5050",
                "egp:0")
            .build(), CustomResourceOptions.builder()
                .dependsOn(vlan1)
                .build());

    }
}
Copy
resources:
  selfip1:
    type: f5bigip:net:SelfIp
    properties:
      name: /Common/internalselfIP
      ip: 11.1.1.1/24
      vlan: /Common/internal
      trafficGroup: traffic-group-1
      portLockdowns:
        - tcp:4040
        - udp:5050
        - egp:0
    options:
      dependsOn:
        - ${vlan1}
Copy

Example usage with port_lockdown set to ["none"]

import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";

const selfip1 = new f5bigip.net.SelfIp("selfip1", {
    name: "/Common/internalselfIP",
    ip: "11.1.1.1/24",
    vlan: "/Common/internal",
    trafficGroup: "traffic-group-1",
    portLockdowns: ["none"],
}, {
    dependsOn: [vlan1],
});
Copy
import pulumi
import pulumi_f5bigip as f5bigip

selfip1 = f5bigip.net.SelfIp("selfip1",
    name="/Common/internalselfIP",
    ip="11.1.1.1/24",
    vlan="/Common/internal",
    traffic_group="traffic-group-1",
    port_lockdowns=["none"],
    opts = pulumi.ResourceOptions(depends_on=[vlan1]))
Copy
package main

import (
	"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/net"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := net.NewSelfIp(ctx, "selfip1", &net.SelfIpArgs{
			Name:         pulumi.String("/Common/internalselfIP"),
			Ip:           pulumi.String("11.1.1.1/24"),
			Vlan:         pulumi.String("/Common/internal"),
			TrafficGroup: pulumi.String("traffic-group-1"),
			PortLockdowns: pulumi.StringArray{
				pulumi.String("none"),
			},
		}, pulumi.DependsOn([]pulumi.Resource{
			vlan1,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

return await Deployment.RunAsync(() => 
{
    var selfip1 = new F5BigIP.Net.SelfIp("selfip1", new()
    {
        Name = "/Common/internalselfIP",
        Ip = "11.1.1.1/24",
        Vlan = "/Common/internal",
        TrafficGroup = "traffic-group-1",
        PortLockdowns = new[]
        {
            "none",
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            vlan1,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.net.SelfIp;
import com.pulumi.f5bigip.net.SelfIpArgs;
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 selfip1 = new SelfIp("selfip1", SelfIpArgs.builder()
            .name("/Common/internalselfIP")
            .ip("11.1.1.1/24")
            .vlan("/Common/internal")
            .trafficGroup("traffic-group-1")
            .portLockdowns("none")
            .build(), CustomResourceOptions.builder()
                .dependsOn(vlan1)
                .build());

    }
}
Copy
resources:
  selfip1:
    type: f5bigip:net:SelfIp
    properties:
      name: /Common/internalselfIP
      ip: 11.1.1.1/24
      vlan: /Common/internal
      trafficGroup: traffic-group-1
      portLockdowns:
        - none
    options:
      dependsOn:
        - ${vlan1}
Copy

Example usage with route domain embedded in the ip

import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";

const selfip1 = new f5bigip.net.SelfIp("selfip1", {
    name: "/Common/internalselfIP",
    ip: "11.1.1.1%4/24",
    vlan: "/Common/internal",
    trafficGroup: "traffic-group-1",
    portLockdowns: ["none"],
}, {
    dependsOn: [vlan1],
});
Copy
import pulumi
import pulumi_f5bigip as f5bigip

selfip1 = f5bigip.net.SelfIp("selfip1",
    name="/Common/internalselfIP",
    ip="11.1.1.1%4/24",
    vlan="/Common/internal",
    traffic_group="traffic-group-1",
    port_lockdowns=["none"],
    opts = pulumi.ResourceOptions(depends_on=[vlan1]))
Copy
package main

import (
	"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/net"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := net.NewSelfIp(ctx, "selfip1", &net.SelfIpArgs{
			Name:         pulumi.String("/Common/internalselfIP"),
			Ip:           pulumi.String("11.1.1.1%4/24"),
			Vlan:         pulumi.String("/Common/internal"),
			TrafficGroup: pulumi.String("traffic-group-1"),
			PortLockdowns: pulumi.StringArray{
				pulumi.String("none"),
			},
		}, pulumi.DependsOn([]pulumi.Resource{
			vlan1,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

return await Deployment.RunAsync(() => 
{
    var selfip1 = new F5BigIP.Net.SelfIp("selfip1", new()
    {
        Name = "/Common/internalselfIP",
        Ip = "11.1.1.1%4/24",
        Vlan = "/Common/internal",
        TrafficGroup = "traffic-group-1",
        PortLockdowns = new[]
        {
            "none",
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            vlan1,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.net.SelfIp;
import com.pulumi.f5bigip.net.SelfIpArgs;
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 selfip1 = new SelfIp("selfip1", SelfIpArgs.builder()
            .name("/Common/internalselfIP")
            .ip("11.1.1.1%4/24")
            .vlan("/Common/internal")
            .trafficGroup("traffic-group-1")
            .portLockdowns("none")
            .build(), CustomResourceOptions.builder()
                .dependsOn(vlan1)
                .build());

    }
}
Copy
resources:
  selfip1:
    type: f5bigip:net:SelfIp
    properties:
      name: /Common/internalselfIP
      ip: 11.1.1.1%4/24
      vlan: /Common/internal
      trafficGroup: traffic-group-1
      portLockdowns:
        - none
    options:
      dependsOn:
        - ${vlan1}
Copy

Create SelfIp Resource

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

Constructor syntax

new SelfIp(name: string, args: SelfIpArgs, opts?: CustomResourceOptions);
@overload
def SelfIp(resource_name: str,
           args: SelfIpArgs,
           opts: Optional[ResourceOptions] = None)

@overload
def SelfIp(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           ip: Optional[str] = None,
           name: Optional[str] = None,
           vlan: Optional[str] = None,
           port_lockdowns: Optional[Sequence[str]] = None,
           traffic_group: Optional[str] = None)
func NewSelfIp(ctx *Context, name string, args SelfIpArgs, opts ...ResourceOption) (*SelfIp, error)
public SelfIp(string name, SelfIpArgs args, CustomResourceOptions? opts = null)
public SelfIp(String name, SelfIpArgs args)
public SelfIp(String name, SelfIpArgs args, CustomResourceOptions options)
type: f5bigip:net:SelfIp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SelfIpArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SelfIpArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SelfIpArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SelfIpArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SelfIpArgs
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 selfIpResource = new F5BigIP.Net.SelfIp("selfIpResource", new()
{
    Ip = "string",
    Name = "string",
    Vlan = "string",
    PortLockdowns = new[]
    {
        "string",
    },
    TrafficGroup = "string",
});
Copy
example, err := net.NewSelfIp(ctx, "selfIpResource", &net.SelfIpArgs{
	Ip:   pulumi.String("string"),
	Name: pulumi.String("string"),
	Vlan: pulumi.String("string"),
	PortLockdowns: pulumi.StringArray{
		pulumi.String("string"),
	},
	TrafficGroup: pulumi.String("string"),
})
Copy
var selfIpResource = new SelfIp("selfIpResource", SelfIpArgs.builder()
    .ip("string")
    .name("string")
    .vlan("string")
    .portLockdowns("string")
    .trafficGroup("string")
    .build());
Copy
self_ip_resource = f5bigip.net.SelfIp("selfIpResource",
    ip="string",
    name="string",
    vlan="string",
    port_lockdowns=["string"],
    traffic_group="string")
Copy
const selfIpResource = new f5bigip.net.SelfIp("selfIpResource", {
    ip: "string",
    name: "string",
    vlan: "string",
    portLockdowns: ["string"],
    trafficGroup: "string",
});
Copy
type: f5bigip:net:SelfIp
properties:
    ip: string
    name: string
    portLockdowns:
        - string
    trafficGroup: string
    vlan: string
Copy

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

Ip
This property is required.
Changes to this property will trigger replacement.
string
The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%4/24.
Name
This property is required.
Changes to this property will trigger replacement.
string
Name of the selfip
Vlan This property is required. string
Specifies the VLAN for which you are setting a self IP address. This setting must be provided when a self IP is created.
PortLockdowns List<string>
Specifies the port lockdown, defaults to Allow None if not specified.
TrafficGroup string
Specifies the traffic group, defaults to traffic-group-local-only if not specified.
Ip
This property is required.
Changes to this property will trigger replacement.
string
The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%4/24.
Name
This property is required.
Changes to this property will trigger replacement.
string
Name of the selfip
Vlan This property is required. string
Specifies the VLAN for which you are setting a self IP address. This setting must be provided when a self IP is created.
PortLockdowns []string
Specifies the port lockdown, defaults to Allow None if not specified.
TrafficGroup string
Specifies the traffic group, defaults to traffic-group-local-only if not specified.
ip
This property is required.
Changes to this property will trigger replacement.
String
The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%4/24.
name
This property is required.
Changes to this property will trigger replacement.
String
Name of the selfip
vlan This property is required. String
Specifies the VLAN for which you are setting a self IP address. This setting must be provided when a self IP is created.
portLockdowns List<String>
Specifies the port lockdown, defaults to Allow None if not specified.
trafficGroup String
Specifies the traffic group, defaults to traffic-group-local-only if not specified.
ip
This property is required.
Changes to this property will trigger replacement.
string
The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%4/24.
name
This property is required.
Changes to this property will trigger replacement.
string
Name of the selfip
vlan This property is required. string
Specifies the VLAN for which you are setting a self IP address. This setting must be provided when a self IP is created.
portLockdowns string[]
Specifies the port lockdown, defaults to Allow None if not specified.
trafficGroup string
Specifies the traffic group, defaults to traffic-group-local-only if not specified.
ip
This property is required.
Changes to this property will trigger replacement.
str
The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%4/24.
name
This property is required.
Changes to this property will trigger replacement.
str
Name of the selfip
vlan This property is required. str
Specifies the VLAN for which you are setting a self IP address. This setting must be provided when a self IP is created.
port_lockdowns Sequence[str]
Specifies the port lockdown, defaults to Allow None if not specified.
traffic_group str
Specifies the traffic group, defaults to traffic-group-local-only if not specified.
ip
This property is required.
Changes to this property will trigger replacement.
String
The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%4/24.
name
This property is required.
Changes to this property will trigger replacement.
String
Name of the selfip
vlan This property is required. String
Specifies the VLAN for which you are setting a self IP address. This setting must be provided when a self IP is created.
portLockdowns List<String>
Specifies the port lockdown, defaults to Allow None if not specified.
trafficGroup String
Specifies the traffic group, defaults to traffic-group-local-only if not specified.

Outputs

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

Get an existing SelfIp 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?: SelfIpState, opts?: CustomResourceOptions): SelfIp
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        ip: Optional[str] = None,
        name: Optional[str] = None,
        port_lockdowns: Optional[Sequence[str]] = None,
        traffic_group: Optional[str] = None,
        vlan: Optional[str] = None) -> SelfIp
func GetSelfIp(ctx *Context, name string, id IDInput, state *SelfIpState, opts ...ResourceOption) (*SelfIp, error)
public static SelfIp Get(string name, Input<string> id, SelfIpState? state, CustomResourceOptions? opts = null)
public static SelfIp get(String name, Output<String> id, SelfIpState state, CustomResourceOptions options)
resources:  _:    type: f5bigip:net:SelfIp    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Ip Changes to this property will trigger replacement. string
The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%4/24.
Name Changes to this property will trigger replacement. string
Name of the selfip
PortLockdowns List<string>
Specifies the port lockdown, defaults to Allow None if not specified.
TrafficGroup string
Specifies the traffic group, defaults to traffic-group-local-only if not specified.
Vlan string
Specifies the VLAN for which you are setting a self IP address. This setting must be provided when a self IP is created.
Ip Changes to this property will trigger replacement. string
The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%4/24.
Name Changes to this property will trigger replacement. string
Name of the selfip
PortLockdowns []string
Specifies the port lockdown, defaults to Allow None if not specified.
TrafficGroup string
Specifies the traffic group, defaults to traffic-group-local-only if not specified.
Vlan string
Specifies the VLAN for which you are setting a self IP address. This setting must be provided when a self IP is created.
ip Changes to this property will trigger replacement. String
The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%4/24.
name Changes to this property will trigger replacement. String
Name of the selfip
portLockdowns List<String>
Specifies the port lockdown, defaults to Allow None if not specified.
trafficGroup String
Specifies the traffic group, defaults to traffic-group-local-only if not specified.
vlan String
Specifies the VLAN for which you are setting a self IP address. This setting must be provided when a self IP is created.
ip Changes to this property will trigger replacement. string
The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%4/24.
name Changes to this property will trigger replacement. string
Name of the selfip
portLockdowns string[]
Specifies the port lockdown, defaults to Allow None if not specified.
trafficGroup string
Specifies the traffic group, defaults to traffic-group-local-only if not specified.
vlan string
Specifies the VLAN for which you are setting a self IP address. This setting must be provided when a self IP is created.
ip Changes to this property will trigger replacement. str
The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%4/24.
name Changes to this property will trigger replacement. str
Name of the selfip
port_lockdowns Sequence[str]
Specifies the port lockdown, defaults to Allow None if not specified.
traffic_group str
Specifies the traffic group, defaults to traffic-group-local-only if not specified.
vlan str
Specifies the VLAN for which you are setting a self IP address. This setting must be provided when a self IP is created.
ip Changes to this property will trigger replacement. String
The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%4/24.
name Changes to this property will trigger replacement. String
Name of the selfip
portLockdowns List<String>
Specifies the port lockdown, defaults to Allow None if not specified.
trafficGroup String
Specifies the traffic group, defaults to traffic-group-local-only if not specified.
vlan String
Specifies the VLAN for which you are setting a self IP address. This setting must be provided when a self IP is created.

Package Details

Repository
f5 BIG-IP pulumi/pulumi-f5bigip
License
Apache-2.0
Notes
This Pulumi package is based on the bigip Terraform Provider.