1. Packages
  2. Ibm Provider
  3. API Docs
  4. LbVpxVip
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.LbVpxVip

Explore with Pulumi AI

Example Usage

The following example configuration supports NetScaler VPX 10.1 and 10.5:

Create LbVpxVip Resource

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

Constructor syntax

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

@overload
def LbVpxVip(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             load_balancing_method: Optional[str] = None,
             nad_controller_id: Optional[float] = None,
             source_port: Optional[float] = None,
             type: Optional[str] = None,
             virtual_ip_address: Optional[str] = None,
             lb_vpx_vip_id: Optional[str] = None,
             name: Optional[str] = None,
             persistence: Optional[str] = None,
             security_certificate_id: Optional[float] = None,
             tags: Optional[Sequence[str]] = None)
func NewLbVpxVip(ctx *Context, name string, args LbVpxVipArgs, opts ...ResourceOption) (*LbVpxVip, error)
public LbVpxVip(string name, LbVpxVipArgs args, CustomResourceOptions? opts = null)
public LbVpxVip(String name, LbVpxVipArgs args)
public LbVpxVip(String name, LbVpxVipArgs args, CustomResourceOptions options)
type: ibm:LbVpxVip
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. LbVpxVipArgs
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. LbVpxVipArgs
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. LbVpxVipArgs
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. LbVpxVipArgs
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. LbVpxVipArgs
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 lbVpxVipResource = new Ibm.LbVpxVip("lbVpxVipResource", new()
{
    LoadBalancingMethod = "string",
    NadControllerId = 0,
    SourcePort = 0,
    Type = "string",
    VirtualIpAddress = "string",
    LbVpxVipId = "string",
    Name = "string",
    Persistence = "string",
    SecurityCertificateId = 0,
    Tags = new[]
    {
        "string",
    },
});
Copy
example, err := ibm.NewLbVpxVip(ctx, "lbVpxVipResource", &ibm.LbVpxVipArgs{
LoadBalancingMethod: pulumi.String("string"),
NadControllerId: pulumi.Float64(0),
SourcePort: pulumi.Float64(0),
Type: pulumi.String("string"),
VirtualIpAddress: pulumi.String("string"),
LbVpxVipId: pulumi.String("string"),
Name: pulumi.String("string"),
Persistence: pulumi.String("string"),
SecurityCertificateId: pulumi.Float64(0),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
Copy
var lbVpxVipResource = new LbVpxVip("lbVpxVipResource", LbVpxVipArgs.builder()
    .loadBalancingMethod("string")
    .nadControllerId(0)
    .sourcePort(0)
    .type("string")
    .virtualIpAddress("string")
    .lbVpxVipId("string")
    .name("string")
    .persistence("string")
    .securityCertificateId(0)
    .tags("string")
    .build());
Copy
lb_vpx_vip_resource = ibm.LbVpxVip("lbVpxVipResource",
    load_balancing_method="string",
    nad_controller_id=0,
    source_port=0,
    type="string",
    virtual_ip_address="string",
    lb_vpx_vip_id="string",
    name="string",
    persistence="string",
    security_certificate_id=0,
    tags=["string"])
Copy
const lbVpxVipResource = new ibm.LbVpxVip("lbVpxVipResource", {
    loadBalancingMethod: "string",
    nadControllerId: 0,
    sourcePort: 0,
    type: "string",
    virtualIpAddress: "string",
    lbVpxVipId: "string",
    name: "string",
    persistence: "string",
    securityCertificateId: 0,
    tags: ["string"],
});
Copy
type: ibm:LbVpxVip
properties:
    lbVpxVipId: string
    loadBalancingMethod: string
    nadControllerId: 0
    name: string
    persistence: string
    securityCertificateId: 0
    sourcePort: 0
    tags:
        - string
    type: string
    virtualIpAddress: string
Copy

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

LoadBalancingMethod This property is required. string
Load balancing method
NadControllerId This property is required. double
NAD controller ID
SourcePort This property is required. double
Source Port number
Type This property is required. string
Type
VirtualIpAddress This property is required. string
Virtual IP address
LbVpxVipId string
(String) The unique identifier of the VPX load balancer virtual IP.
Name string
Name
Persistence string
Persistance value
SecurityCertificateId double
security certificate ID
Tags List<string>
List of tags
LoadBalancingMethod This property is required. string
Load balancing method
NadControllerId This property is required. float64
NAD controller ID
SourcePort This property is required. float64
Source Port number
Type This property is required. string
Type
VirtualIpAddress This property is required. string
Virtual IP address
LbVpxVipId string
(String) The unique identifier of the VPX load balancer virtual IP.
Name string
Name
Persistence string
Persistance value
SecurityCertificateId float64
security certificate ID
Tags []string
List of tags
loadBalancingMethod This property is required. String
Load balancing method
nadControllerId This property is required. Double
NAD controller ID
sourcePort This property is required. Double
Source Port number
type This property is required. String
Type
virtualIpAddress This property is required. String
Virtual IP address
lbVpxVipId String
(String) The unique identifier of the VPX load balancer virtual IP.
name String
Name
persistence String
Persistance value
securityCertificateId Double
security certificate ID
tags List<String>
List of tags
loadBalancingMethod This property is required. string
Load balancing method
nadControllerId This property is required. number
NAD controller ID
sourcePort This property is required. number
Source Port number
type This property is required. string
Type
virtualIpAddress This property is required. string
Virtual IP address
lbVpxVipId string
(String) The unique identifier of the VPX load balancer virtual IP.
name string
Name
persistence string
Persistance value
securityCertificateId number
security certificate ID
tags string[]
List of tags
load_balancing_method This property is required. str
Load balancing method
nad_controller_id This property is required. float
NAD controller ID
source_port This property is required. float
Source Port number
type This property is required. str
Type
virtual_ip_address This property is required. str
Virtual IP address
lb_vpx_vip_id str
(String) The unique identifier of the VPX load balancer virtual IP.
name str
Name
persistence str
Persistance value
security_certificate_id float
security certificate ID
tags Sequence[str]
List of tags
loadBalancingMethod This property is required. String
Load balancing method
nadControllerId This property is required. Number
NAD controller ID
sourcePort This property is required. Number
Source Port number
type This property is required. String
Type
virtualIpAddress This property is required. String
Virtual IP address
lbVpxVipId String
(String) The unique identifier of the VPX load balancer virtual IP.
name String
Name
persistence String
Persistance value
securityCertificateId Number
security certificate ID
tags List<String>
List of tags

Outputs

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

Get an existing LbVpxVip 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?: LbVpxVipState, opts?: CustomResourceOptions): LbVpxVip
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        lb_vpx_vip_id: Optional[str] = None,
        load_balancing_method: Optional[str] = None,
        nad_controller_id: Optional[float] = None,
        name: Optional[str] = None,
        persistence: Optional[str] = None,
        security_certificate_id: Optional[float] = None,
        source_port: Optional[float] = None,
        tags: Optional[Sequence[str]] = None,
        type: Optional[str] = None,
        virtual_ip_address: Optional[str] = None) -> LbVpxVip
func GetLbVpxVip(ctx *Context, name string, id IDInput, state *LbVpxVipState, opts ...ResourceOption) (*LbVpxVip, error)
public static LbVpxVip Get(string name, Input<string> id, LbVpxVipState? state, CustomResourceOptions? opts = null)
public static LbVpxVip get(String name, Output<String> id, LbVpxVipState state, CustomResourceOptions options)
resources:  _:    type: ibm:LbVpxVip    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:
LbVpxVipId string
(String) The unique identifier of the VPX load balancer virtual IP.
LoadBalancingMethod string
Load balancing method
NadControllerId double
NAD controller ID
Name string
Name
Persistence string
Persistance value
SecurityCertificateId double
security certificate ID
SourcePort double
Source Port number
Tags List<string>
List of tags
Type string
Type
VirtualIpAddress string
Virtual IP address
LbVpxVipId string
(String) The unique identifier of the VPX load balancer virtual IP.
LoadBalancingMethod string
Load balancing method
NadControllerId float64
NAD controller ID
Name string
Name
Persistence string
Persistance value
SecurityCertificateId float64
security certificate ID
SourcePort float64
Source Port number
Tags []string
List of tags
Type string
Type
VirtualIpAddress string
Virtual IP address
lbVpxVipId String
(String) The unique identifier of the VPX load balancer virtual IP.
loadBalancingMethod String
Load balancing method
nadControllerId Double
NAD controller ID
name String
Name
persistence String
Persistance value
securityCertificateId Double
security certificate ID
sourcePort Double
Source Port number
tags List<String>
List of tags
type String
Type
virtualIpAddress String
Virtual IP address
lbVpxVipId string
(String) The unique identifier of the VPX load balancer virtual IP.
loadBalancingMethod string
Load balancing method
nadControllerId number
NAD controller ID
name string
Name
persistence string
Persistance value
securityCertificateId number
security certificate ID
sourcePort number
Source Port number
tags string[]
List of tags
type string
Type
virtualIpAddress string
Virtual IP address
lb_vpx_vip_id str
(String) The unique identifier of the VPX load balancer virtual IP.
load_balancing_method str
Load balancing method
nad_controller_id float
NAD controller ID
name str
Name
persistence str
Persistance value
security_certificate_id float
security certificate ID
source_port float
Source Port number
tags Sequence[str]
List of tags
type str
Type
virtual_ip_address str
Virtual IP address
lbVpxVipId String
(String) The unique identifier of the VPX load balancer virtual IP.
loadBalancingMethod String
Load balancing method
nadControllerId Number
NAD controller ID
name String
Name
persistence String
Persistance value
securityCertificateId Number
security certificate ID
sourcePort Number
Source Port number
tags List<String>
List of tags
type String
Type
virtualIpAddress String
Virtual IP address

Package Details

Repository
ibm ibm-cloud/terraform-provider-ibm
License
Notes
This Pulumi package is based on the ibm Terraform Provider.