Show / Hide Table of Contents

Class MembersMemberArgs

Inheritance
System.Object
InputArgs
ResourceArgs
MembersMemberArgs
Inherited Members
ResourceArgs.Empty
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.OpenStack.LoadBalancer.Inputs
Assembly: Pulumi.OpenStack.dll
Syntax
public sealed class MembersMemberArgs : ResourceArgs

Constructors

View Source

MembersMemberArgs()

Declaration
public MembersMemberArgs()

Properties

View Source

Address

The IP address of the members to receive traffic from the load balancer.

Declaration
public Input<string> Address { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
View Source

Id

The unique ID for the members.

Declaration
public Input<string> Id { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Human-readable name for the member.

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

ProtocolPort

The port on which to listen for client traffic.

Declaration
public Input<int> ProtocolPort { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

SubnetId

The subnet in which to access the member.

Declaration
public Input<string> SubnetId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Weight

A positive integer value that indicates the relative portion of traffic that this members 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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.