Class UpdateHealthCheckerDetails
- java.lang.Object
-
- com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
- com.oracle.bmc.networkloadbalancer.model.UpdateHealthCheckerDetails
-
@Generated(value="OracleSDKGenerator", comments="API Version: 20200501") public final class UpdateHealthCheckerDetails extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
The configuration details of the health checker.
Note: Objects should always be created or deserialized using theUpdateHealthCheckerDetails.Builder
. This model distinguishes fields that are null because they are unset from fields that are explicitly set to null. This is done in the setter methods of theUpdateHealthCheckerDetails.Builder
, which maintain a set of all explicitly set fields calledUpdateHealthCheckerDetails.Builder.__explicitlySet__
. ThehashCode()
andequals(Object)
methods are implemented to take the explicitly set fields into account. The constructor, on the other hand, does not take the explicitly set fields into account (since the constructor cannot distinguish explicit null from unset null).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
UpdateHealthCheckerDetails.Builder
-
Constructor Summary
Constructors Constructor Description UpdateHealthCheckerDetails(HealthCheckProtocols protocol, Integer port, Integer retries, Integer timeoutInMillis, Integer intervalInMillis, String urlPath, String responseBodyRegex, Integer returnCode, byte[] requestData, byte[] responseData, DnsHealthCheckerDetails dns)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdateHealthCheckerDetails.Builder
builder()
Create a new builder.boolean
equals(Object o)
DnsHealthCheckerDetails
getDns()
Integer
getIntervalInMillis()
The interval between health checks, in milliseconds.Integer
getPort()
The backend server port against which to run the health check.HealthCheckProtocols
getProtocol()
The protocol that the health check must use; either HTTP, UDP, or TCP.byte[]
getRequestData()
Base64 encoded pattern to be sent as UDP or TCP health check probe.String
getResponseBodyRegex()
A regular expression for parsing the response body from the backend server.byte[]
getResponseData()
Base64 encoded pattern to be validated as UDP or TCP health check probe response.Integer
getRetries()
The number of retries to attempt before a backend server is considered “unhealthy”.Integer
getReturnCode()
The status code a healthy backend server should return.Integer
getTimeoutInMillis()
The maximum time, in milliseconds, to wait for a reply to a health check.String
getUrlPath()
The path against which to run the health check.int
hashCode()
UpdateHealthCheckerDetails.Builder
toBuilder()
String
toString()
String
toString(boolean includeByteArrayContents)
Return a string representation of the object.
-
-
-
Constructor Detail
-
UpdateHealthCheckerDetails
@Deprecated @ConstructorProperties({"protocol","port","retries","timeoutInMillis","intervalInMillis","urlPath","responseBodyRegex","returnCode","requestData","responseData","dns"}) public UpdateHealthCheckerDetails(HealthCheckProtocols protocol, Integer port, Integer retries, Integer timeoutInMillis, Integer intervalInMillis, String urlPath, String responseBodyRegex, Integer returnCode, byte[] requestData, byte[] responseData, DnsHealthCheckerDetails dns)
Deprecated.
-
-
Method Detail
-
builder
public static UpdateHealthCheckerDetails.Builder builder()
Create a new builder.
-
toBuilder
public UpdateHealthCheckerDetails.Builder toBuilder()
-
getProtocol
public HealthCheckProtocols getProtocol()
The protocol that the health check must use; either HTTP, UDP, or TCP.Example: HTTP
- Returns:
- the value
-
getPort
public Integer getPort()
The backend server port against which to run the health check.Example: 8080
- Returns:
- the value
-
getRetries
public Integer getRetries()
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
- Returns:
- the value
-
getTimeoutInMillis
public Integer getTimeoutInMillis()
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
- Returns:
- the value
-
getIntervalInMillis
public Integer getIntervalInMillis()
The interval between health checks, in milliseconds.Example: 10000
- Returns:
- the value
-
getUrlPath
public String getUrlPath()
The path against which to run the health check.Example: /healthcheck
- Returns:
- the value
-
getResponseBodyRegex
public String getResponseBodyRegex()
A regular expression for parsing the response body from the backend server.Example: ^((?!false).|\\s)*$
- Returns:
- the value
-
getReturnCode
public Integer getReturnCode()
The status code a healthy backend server should return.If you configure the health check policy to use the HTTP protocol, then you can use common HTTP status codes such as “200”.
Example: 200
- Returns:
- the value
-
getRequestData
public byte[] getRequestData()
Base64 encoded pattern to be sent as UDP or TCP health check probe.- Returns:
- the value
-
getResponseData
public byte[] getResponseData()
Base64 encoded pattern to be validated as UDP or TCP health check probe response.- Returns:
- the value
-
getDns
public DnsHealthCheckerDetails getDns()
-
toString
public String toString()
- Overrides:
toString
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
toString
public String toString(boolean includeByteArrayContents)
Return a string representation of the object.- Parameters:
includeByteArrayContents
- true to include the full contents of byte arrays- Returns:
- string representation
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
-