Show / Hide Table of Contents

Class LoadBalancerHealthSummary

A health status summary for the specified load balancer.

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

Properties

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 the health status is associated with.

Remarks

Required

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LoadBalancerHealthSummary.StatusEnum? Status { get; set; }
Property Value
Type Description
LoadBalancerHealthSummary.StatusEnum?

The overall health status of the load balancer.

  • OK: All backend sets associated with the load balancer return a status of OK.
  • WARNING: At least one of the backend sets associated with the load balancer returns a status of WARNING, no backend sets return a status of CRITICAL, and the load balancer life cycle state is ACTIVE.
  • CRITICAL: One or more of the backend sets associated with the load balancer return a status of CRITICAL.
  • UNKNOWN: If any one of the following conditions is true:
    • The load balancer life cycle state is not ACTIVE.
    • No backend sets are defined for the load balancer.
    • More than half of the backend sets associated with the load balancer return a status of UNKNOWN, none of the backend sets return a status of WARNING or CRITICAL, and the load balancer life cycle state is ACTIVE.
    • The system could not retrieve metrics for any reason.
Remarks

Required

In this article
Back to top