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],
});
import pulumi
import pulumi_f5bigip as f5bigip
vlan1 = f5bigip.net.Vlan("vlan1",
name="/Common/Internal",
tag=101,
interfaces=[f5bigip.net.VlanInterfaceArgs(
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]))
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
})
}
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,
},
});
});
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());
}
}
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}
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],
});
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]))
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
})
}
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,
},
});
});
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());
}
}
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}
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],
});
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]))
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
})
}
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,
},
});
});
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());
}
}
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}
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],
});
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]))
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
})
}
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,
},
});
});
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());
}
}
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}
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 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.
- args 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 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.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
var selfIpResource = new SelfIp("selfIpResource", SelfIpArgs.builder()
.ip("string")
.name("string")
.vlan("string")
.portLockdowns("string")
.trafficGroup("string")
.build());
self_ip_resource = f5bigip.net.SelfIp("selfIpResource",
ip="string",
name="string",
vlan="string",
port_lockdowns=["string"],
traffic_group="string")
const selfIpResource = new f5bigip.net.SelfIp("selfIpResource", {
ip: "string",
name: "string",
vlan: "string",
portLockdowns: ["string"],
trafficGroup: "string",
});
type: f5bigip:net:SelfIp
properties:
ip: string
name: string
portLockdowns:
- string
trafficGroup: string
vlan: string
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
The SelfIp resource accepts the following input properties:
- Ip 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 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.
- Port
Lockdowns List<string> - Specifies the port lockdown, defaults to
Allow None
if not specified. - Traffic
Group string - Specifies the traffic group, defaults to
traffic-group-local-only
if not specified.
- Ip 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 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.
- Port
Lockdowns []string - Specifies the port lockdown, defaults to
Allow None
if not specified. - Traffic
Group string - Specifies the traffic group, defaults to
traffic-group-local-only
if not specified.
- ip 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 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.
- port
Lockdowns List<String> - Specifies the port lockdown, defaults to
Allow None
if not specified. - traffic
Group String - Specifies the traffic group, defaults to
traffic-group-local-only
if not specified.
- ip 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 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.
- port
Lockdowns string[] - Specifies the port lockdown, defaults to
Allow None
if not specified. - traffic
Group string - Specifies the traffic group, defaults to
traffic-group-local-only
if not specified.
- ip 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 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.
- 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 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 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.
- port
Lockdowns List<String> - Specifies the port lockdown, defaults to
Allow None
if not specified. - traffic
Group 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)
Resource lookup is not supported in YAML
- 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.
- Ip 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 string
- Name of the selfip
- Port
Lockdowns List<string> - Specifies the port lockdown, defaults to
Allow None
if not specified. - Traffic
Group 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. The IP address could also contain the route domain, e.g.
10.12.13.14%4/24
. - Name string
- Name of the selfip
- Port
Lockdowns []string - Specifies the port lockdown, defaults to
Allow None
if not specified. - Traffic
Group 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. The IP address could also contain the route domain, e.g.
10.12.13.14%4/24
. - name String
- Name of the selfip
- port
Lockdowns List<String> - Specifies the port lockdown, defaults to
Allow None
if not specified. - traffic
Group 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. The IP address could also contain the route domain, e.g.
10.12.13.14%4/24
. - name string
- Name of the selfip
- port
Lockdowns string[] - Specifies the port lockdown, defaults to
Allow None
if not specified. - traffic
Group 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. The IP address could also contain the route domain, e.g.
10.12.13.14%4/24
. - name 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 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 String
- Name of the selfip
- port
Lockdowns List<String> - Specifies the port lockdown, defaults to
Allow None
if not specified. - traffic
Group 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.