Show / Hide Table of Contents

Class BackendHealth

The health status of the specified backend server.

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

Properties

HealthCheckResults

Declaration
[Required(ErrorMessage = "HealthCheckResults is required.")]
[JsonProperty(PropertyName = "healthCheckResults")]
public List<HealthCheckResult> HealthCheckResults { get; set; }
Property Value
Type Description
List<HealthCheckResult>

A list of the most recent health check results returned for the specified backend server.

Remarks

Required

Status

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

The general health status of the specified backend server.

  • OK: All health check probes return OK
  • WARNING: At least one of the health check probes does not return OK
  • CRITICAL: None of the health check probes return OK.
  • UNKNOWN: One of the health checks probes return UNKNOWN,
  • or the system is unable to retrieve metrics at this time.
Remarks

Required

In this article
Back to top