Show / Hide Table of Contents

Class InstancePoolInstanceLoadBalancerBackend

Represents the load balancer Backend that is configured for an instance pool instance.

Inheritance
object
InstancePoolInstanceLoadBalancerBackend
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 InstancePoolInstanceLoadBalancerBackend

Properties

BackendHealthStatus

Declaration
[Required(ErrorMessage = "BackendHealthStatus is required.")]
[JsonProperty(PropertyName = "backendHealthStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InstancePoolInstanceLoadBalancerBackend.BackendHealthStatusEnum? BackendHealthStatus { get; set; }
Property Value
Type Description
InstancePoolInstanceLoadBalancerBackend.BackendHealthStatusEnum?

The health of the backend as observed by the load balancer.

Remarks

Required

BackendName

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

The name of the backend in the backend set.

Remarks

Required

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

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

In this article
Back to top