Show / Hide Table of Contents

Class InstancePoolLoadBalancerAttachment

Represents a load balancer that is attached to an instance pool.

Inheritance
object
InstancePoolLoadBalancerAttachment
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class InstancePoolLoadBalancerAttachment

Properties

BackendSetName

Declaration
[Required(ErrorMessage = "BackendSetName is required.")]
[JsonProperty(PropertyName = "backendSetName")]
public string BackendSetName { get; set; }
Property Value
Type Description
string

The name of the backend set on the load balancer.

Remarks

Required

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The OCID of the load balancer attachment.

Remarks

Required

InstancePoolId

Declaration
[Required(ErrorMessage = "InstancePoolId is required.")]
[JsonProperty(PropertyName = "instancePoolId")]
public string InstancePoolId { get; set; }
Property Value
Type Description
string

The OCID of the instance pool of the load balancer attachment.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InstancePoolLoadBalancerAttachment.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
InstancePoolLoadBalancerAttachment.LifecycleStateEnum?

The status of the interaction between the instance pool and the load balancer.

Remarks

Required

LoadBalancerId

Declaration
[Required(ErrorMessage = "LoadBalancerId is required.")]
[JsonProperty(PropertyName = "loadBalancerId")]
public string LoadBalancerId { get; set; }
Property Value
Type Description
string

The OCID of the load balancer attached to the instance pool.

Remarks

Required

Port

Declaration
[Required(ErrorMessage = "Port is required.")]
[JsonProperty(PropertyName = "port")]
public int? Port { get; set; }
Property Value
Type Description
int?

The port value used for the backends.

Remarks

Required

VnicSelection

Declaration
[Required(ErrorMessage = "VnicSelection is required.")]
[JsonProperty(PropertyName = "vnicSelection")]
public string VnicSelection { get; set; }
Property Value
Type Description
string

Indicates which VNIC on each instance in the instance pool should be used to associate with the load balancer. Possible values are "PrimaryVnic" or the displayName of one of the secondary VNICs on the instance configuration that is associated with the instance pool.

Remarks

Required

In this article
Back to top