Show / Hide Table of Contents

Class VirtualAddress

f5bigip.ltm.VirtualAddress Configures Virtual Server

For resources should be named with their "full path". The full path is the combination of the partition + name of the resource. For example /Common/my-pool.

Example Usage

using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

class MyStack : Stack
{
public MyStack()
{
    var vsVa = new F5BigIP.Ltm.VirtualAddress("vsVa", new F5BigIP.Ltm.VirtualAddressArgs
    {
        AdvertizeRoute = true,
        Name = "/Common/vs_va",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
VirtualAddress
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.F5BigIP.Ltm
Assembly: Pulumi.F5BigIP.dll
Syntax
public class VirtualAddress : CustomResource

Constructors

View Source

VirtualAddress(String, VirtualAddressArgs, CustomResourceOptions)

Create a VirtualAddress resource with the given unique name, arguments, and options.

Declaration
public VirtualAddress(string name, VirtualAddressArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

VirtualAddressArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

AdvertizeRoute

Enabled dynamic routing of the address

Declaration
public Output<bool?> AdvertizeRoute { get; }
Property Value
Type Description
Output<System.Nullable<System.Boolean>>
View Source

Arp

Enable or disable ARP for the virtual address

Declaration
public Output<bool?> Arp { get; }
Property Value
Type Description
Output<System.Nullable<System.Boolean>>
View Source

AutoDelete

Automatically delete the virtual address with the virtual server

Declaration
public Output<bool?> AutoDelete { get; }
Property Value
Type Description
Output<System.Nullable<System.Boolean>>
View Source

ConnLimit

Max number of connections for virtual address

Declaration
public Output<int?> ConnLimit { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

Enabled

Enable or disable the virtual address

Declaration
public Output<bool?> Enabled { get; }
Property Value
Type Description
Output<System.Nullable<System.Boolean>>
View Source

IcmpEcho

Enable/Disable ICMP response to the virtual address

Declaration
public Output<bool?> IcmpEcho { get; }
Property Value
Type Description
Output<System.Nullable<System.Boolean>>
View Source

Name

Name of the virtual address

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>
View Source

TrafficGroup

Specify the partition and traffic group

Declaration
public Output<string> TrafficGroup { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, VirtualAddressState, CustomResourceOptions)

Get an existing VirtualAddress resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static VirtualAddress Get(string name, Input<string> id, VirtualAddressState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

VirtualAddressState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
VirtualAddress
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.