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",
});
}
}
Inherited Members
Namespace: Pulumi.F5BigIP.Ltm
Assembly: Pulumi.F5BigIP.dll
Syntax
public class VirtualAddress : CustomResource
Constructors
View SourceVirtualAddress(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 SourceAdvertizeRoute
Enabled dynamic routing of the address
Declaration
public Output<bool?> AdvertizeRoute { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Nullable<System.Boolean>> |
Arp
Enable or disable ARP for the virtual address
Declaration
public Output<bool?> Arp { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Nullable<System.Boolean>> |
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>> |
ConnLimit
Max number of connections for virtual address
Declaration
public Output<int?> ConnLimit { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Nullable<System.Int32>> |
Enabled
Enable or disable the virtual address
Declaration
public Output<bool?> Enabled { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Nullable<System.Boolean>> |
IcmpEcho
Enable/Disable ICMP response to the virtual address
Declaration
public Output<bool?> IcmpEcho { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Nullable<System.Boolean>> |
Name
Name of the virtual address
Declaration
public Output<string> Name { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
TrafficGroup
Specify the partition and traffic group
Declaration
public Output<string> TrafficGroup { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Methods
View SourceGet(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 |