1. Packages
  2. F5 BIG-IP
  3. API Docs
  4. net
  5. SelfIp
f5 BIG-IP v3.17.0 published on Thursday, Mar 28, 2024 by Pulumi

f5bigip.net.SelfIp

Explore with Pulumi AI

f5bigip logo
f5 BIG-IP v3.17.0 published on Thursday, Mar 28, 2024 by Pulumi

    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 = new[]
            {
                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: [bigip_net_vlan.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=[bigip_net_vlan["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{
    			bigip_net_vlan.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 = new[]
            {
                bigip_net_vlan.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(bigip_net_vlan.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:
            - ${bigip_net_vlan.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: [bigip_net_vlan.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=[bigip_net_vlan["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{
    			bigip_net_vlan.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 = new[]
            {
                bigip_net_vlan.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(bigip_net_vlan.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:
            - ${bigip_net_vlan.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: [bigip_net_vlan.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=[bigip_net_vlan["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{
    			bigip_net_vlan.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 = new[]
            {
                bigip_net_vlan.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(bigip_net_vlan.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:
            - ${bigip_net_vlan.vlan1}
    

    Create SelfIp Resource

    new SelfIp(name: string, args: SelfIpArgs, opts?: CustomResourceOptions);
    @overload
    def SelfIp(resource_name: 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)
    @overload
    def SelfIp(resource_name: str,
               args: SelfIpArgs,
               opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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%!/(MISSING)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.
    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 string
    The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%!/(MISSING)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.
    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 String
    The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%!/(MISSING)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.
    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 string
    The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%!/(MISSING)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.
    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 str
    The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%!/(MISSING)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%!/(MISSING)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.
    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)
    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.
    The following state arguments are supported:
    Ip string
    The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%!/(MISSING)24.
    Name 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 string
    The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%!/(MISSING)24.
    Name 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 String
    The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%!/(MISSING)24.
    name 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 string
    The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%!/(MISSING)24.
    name 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 str
    The Self IP's address and netmask. The IP address could also contain the route domain, e.g. 10.12.13.14%!/(MISSING)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%!/(MISSING)24.
    name 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.
    f5bigip logo
    f5 BIG-IP v3.17.0 published on Thursday, Mar 28, 2024 by Pulumi