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",
        });
    }

}

Coming soon!

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")
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",
});

Create a SelfIp Resource

new SelfIp(name: string, args: SelfIpArgs, opts?: CustomResourceOptions);
def SelfIp(resource_name, opts=None, ip=None, name=None, traffic_group=None, vlan=None, __props__=None);
func NewSelfIp(ctx *Context, name string, args SelfIpArgs, opts ...ResourceOption) (*SelfIp, error)
public SelfIp(string name, SelfIpArgs args, CustomResourceOptions? opts = null)
name string
The unique name of the resource.
args SelfIpArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args SelfIpArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args SelfIpArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

SelfIp Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The SelfIp resource accepts the following input properties:

Ip string

The Self IP’s address and netmask.

Name string

Name of the selfip

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.

TrafficGroup string

Specifies the traffic group, defaults to traffic-group-local-only if not specified.

Ip string

The Self IP’s address and netmask.

Name string

Name of the selfip

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.

TrafficGroup string

Specifies the traffic group, defaults to traffic-group-local-only if not specified.

ip string

The Self IP’s address and netmask.

name string

Name of the selfip

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.

trafficGroup string

Specifies the traffic group, defaults to traffic-group-local-only if not specified.

ip str

The Self IP’s address and netmask.

name str

Name of the selfip

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.

traffic_group str

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 str
The provider-assigned unique ID for this managed resource.

Look up an 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
static get(resource_name, id, opts=None, ip=None, name=None, traffic_group=None, vlan=None, __props__=None);
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)
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.

The following state arguments are supported:

Ip string

The Self IP’s address and netmask.

Name string

Name of the selfip

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 string

The Self IP’s address and netmask.

Name string

Name of the selfip

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 string

The Self IP’s address and netmask.

name string

Name of the selfip

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 str

The Self IP’s address and netmask.

name str

Name of the selfip

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.

Package Details

Repository
https://github.com/pulumi/pulumi-f5bigip
License
Apache-2.0
Notes
This Pulumi package is based on the bigip Terraform Provider.