Show / Hide Table of Contents

Class UpdateHealthCheckerDetails

The health checker's configuration details.

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

Properties

IntervalInMillis

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

The interval between health checks, in milliseconds.
Example: 10000

Remarks

Required

IsForcePlainText

Declaration
[JsonProperty(PropertyName = "isForcePlainText")]
public bool? IsForcePlainText { get; set; }
Property Value
Type Description
bool?

Specifies if health checks should always be done using plain text instead of depending on whether or not the associated backend set is using SSL.
If "true", health checks will be done using plain text even if the associated backend set is configured to use SSL.
If "false", health checks will be done using SSL encryption if the associated backend set is configured to use SSL. If the backend set is not so configured the health checks will be done using plain text.
Example: true

Port

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

The backend server port against which to run the health check.
Example: 8080

Remarks

Required

Protocol

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

The protocol the health check must use; either HTTP or TCP.
Example: HTTP

Remarks

Required

ResponseBodyRegex

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

A regular expression for parsing the response body from the backend server.
Example: ^((?!false).|\s)*$

Remarks

Required

Retries

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

The number of retries to attempt before a backend server is considered "unhealthy". This number also applies when recovering a server to the "healthy" state.
Example: 3

Remarks

Required

ReturnCode

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

The status code a healthy backend server should return.
Example: 200

Remarks

Required

TimeoutInMillis

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

The maximum time, in milliseconds, to wait for a reply to a health check. A health check is successful only if a reply returns within this timeout period.
Example: 3000

Remarks

Required

UrlPath

Declaration
[JsonProperty(PropertyName = "urlPath")]
public string UrlPath { get; set; }
Property Value
Type Description
string

The path against which to run the health check.
Example: /healthcheck

In this article
Back to top