Class MemberState
Inherited Members
Namespace: Pulumi.OpenStack.LoadBalancer
Assembly: Pulumi.OpenStack.dll
Syntax
public sealed class MemberState : ResourceArgs
Constructors
View SourceMemberState()
Declaration
public MemberState()
Properties
View SourceAddress
The IP address of the member to receive traffic from the load balancer. Changing this creates a new member.
Declaration
public Input<string> Address { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
AdminStateUp
The administrative state of the member. A valid value is true (UP) or false (DOWN). Defaults to true.
Declaration
public Input<bool> AdminStateUp { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Name
Human-readable name for the member.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PoolId
The id of the pool that this member will be assigned to. Changing this creates a new member.
Declaration
public Input<string> PoolId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ProtocolPort
The port on which to listen for client traffic. Changing this creates a new member.
Declaration
public Input<int> ProtocolPort { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Region
The region in which to obtain the V2 Networking client.
A Networking client is needed to create a member. If omitted, the region
argument of the provider is used. Changing this creates a new member.
Declaration
public Input<string> Region { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SubnetId
The subnet in which to access the member. Changing this creates a new member.
Declaration
public Input<string> SubnetId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
TenantId
Required for admins. The UUID of the tenant who owns the member. Only administrative users can specify a tenant UUID other than their own. Changing this creates a new member.
Declaration
public Input<string> TenantId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Weight
A positive integer value that indicates the relative portion of traffic that this member should receive from the pool. For example, a member with a weight of 10 receives five times as much traffic as a member with a weight of 2. Defaults to 1.
Declaration
public Input<int> Weight { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |