Class UpdateHealthCheckerDetails
- java.lang.Object
-
- com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
- com.oracle.bmc.loadbalancer.model.UpdateHealthCheckerDetails
-
@Generated(value="OracleSDKGenerator", comments="API Version: 20170115") public final class UpdateHealthCheckerDetails extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
The health checker’s configuration details.
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
-
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)
Integer
getIntervalInMillis()
The interval between health checks, in milliseconds.Boolean
getIsForcePlainText()
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.Integer
getPort()
The backend server port against which to run the health check.String
getProtocol()
The protocol the health check must use; either HTTP or TCP.String
getResponseBodyRegex()
A regular expression for parsing the response body from the backend server.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","urlPath","port","returnCode","retries","timeoutInMillis","intervalInMillis","responseBodyRegex","isForcePlainText"}) public UpdateHealthCheckerDetails(String protocol, String urlPath, Integer port, Integer returnCode, Integer retries, Integer timeoutInMillis, Integer intervalInMillis, String responseBodyRegex, Boolean isForcePlainText)
Deprecated.
-
-
Method Detail
-
builder
public static UpdateHealthCheckerDetails.Builder builder()
Create a new builder.
-
toBuilder
public UpdateHealthCheckerDetails.Builder toBuilder()
-
getProtocol
public String getProtocol()
The protocol the health check must use; either HTTP or TCP.Example: HTTP
- Returns:
- the value
-
getUrlPath
public String getUrlPath()
The path against which to run the health check.Example: /healthcheck
- Returns:
- the value
-
getPort
public Integer getPort()
The backend server port against which to run the health check.Example: 8080
- Returns:
- the value
-
getReturnCode
public Integer getReturnCode()
The status code a healthy backend server should return.Example: 200
- 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
-
getResponseBodyRegex
public String getResponseBodyRegex()
A regular expression for parsing the response body from the backend server.Example: ^((?!false).|\\s)*$
- Returns:
- the value
-
getIsForcePlainText
public Boolean getIsForcePlainText()
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
- Returns:
- the value
-
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
-
-