Show / Hide Table of Contents

Class HealthCheckResult

Information about a single backend server health check result reported by a network load balancer.

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

Properties

HealthCheckStatus

Declaration
[Required(ErrorMessage = "HealthCheckStatus is required.")]
[JsonProperty(PropertyName = "healthCheckStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public HealthCheckResult.HealthCheckStatusEnum? HealthCheckStatus { get; set; }
Property Value
Type Description
HealthCheckResult.HealthCheckStatusEnum?

The result of the most recent health check.

Remarks

Required

Timestamp

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

The date and time the data was retrieved, in the format defined by RFC3339.
Example: 2020-05-01T18:28:11+00:00

Remarks

Required

In this article
Back to top