
io.kubernetes.client.models.V1Probe Maven / Gradle / Ivy
/*
* Kubernetes
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: v1.11.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.kubernetes.client.models;
import java.util.Objects;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.kubernetes.client.models.V1ExecAction;
import io.kubernetes.client.models.V1HTTPGetAction;
import io.kubernetes.client.models.V1TCPSocketAction;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
*/
@ApiModel(description = "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.")
public class V1Probe {
@SerializedName("exec")
private V1ExecAction exec = null;
@SerializedName("failureThreshold")
private Integer failureThreshold = null;
@SerializedName("httpGet")
private V1HTTPGetAction httpGet = null;
@SerializedName("initialDelaySeconds")
private Integer initialDelaySeconds = null;
@SerializedName("periodSeconds")
private Integer periodSeconds = null;
@SerializedName("successThreshold")
private Integer successThreshold = null;
@SerializedName("tcpSocket")
private V1TCPSocketAction tcpSocket = null;
@SerializedName("timeoutSeconds")
private Integer timeoutSeconds = null;
public V1Probe exec(V1ExecAction exec) {
this.exec = exec;
return this;
}
/**
* One and only one of the following should be specified. Exec specifies the action to take.
* @return exec
**/
@ApiModelProperty(value = "One and only one of the following should be specified. Exec specifies the action to take.")
public V1ExecAction getExec() {
return exec;
}
public void setExec(V1ExecAction exec) {
this.exec = exec;
}
public V1Probe failureThreshold(Integer failureThreshold) {
this.failureThreshold = failureThreshold;
return this;
}
/**
* Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
* @return failureThreshold
**/
@ApiModelProperty(value = "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.")
public Integer getFailureThreshold() {
return failureThreshold;
}
public void setFailureThreshold(Integer failureThreshold) {
this.failureThreshold = failureThreshold;
}
public V1Probe httpGet(V1HTTPGetAction httpGet) {
this.httpGet = httpGet;
return this;
}
/**
* HTTPGet specifies the http request to perform.
* @return httpGet
**/
@ApiModelProperty(value = "HTTPGet specifies the http request to perform.")
public V1HTTPGetAction getHttpGet() {
return httpGet;
}
public void setHttpGet(V1HTTPGetAction httpGet) {
this.httpGet = httpGet;
}
public V1Probe initialDelaySeconds(Integer initialDelaySeconds) {
this.initialDelaySeconds = initialDelaySeconds;
return this;
}
/**
* Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
* @return initialDelaySeconds
**/
@ApiModelProperty(value = "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes")
public Integer getInitialDelaySeconds() {
return initialDelaySeconds;
}
public void setInitialDelaySeconds(Integer initialDelaySeconds) {
this.initialDelaySeconds = initialDelaySeconds;
}
public V1Probe periodSeconds(Integer periodSeconds) {
this.periodSeconds = periodSeconds;
return this;
}
/**
* How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
* @return periodSeconds
**/
@ApiModelProperty(value = "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.")
public Integer getPeriodSeconds() {
return periodSeconds;
}
public void setPeriodSeconds(Integer periodSeconds) {
this.periodSeconds = periodSeconds;
}
public V1Probe successThreshold(Integer successThreshold) {
this.successThreshold = successThreshold;
return this;
}
/**
* Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.
* @return successThreshold
**/
@ApiModelProperty(value = "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.")
public Integer getSuccessThreshold() {
return successThreshold;
}
public void setSuccessThreshold(Integer successThreshold) {
this.successThreshold = successThreshold;
}
public V1Probe tcpSocket(V1TCPSocketAction tcpSocket) {
this.tcpSocket = tcpSocket;
return this;
}
/**
* TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported
* @return tcpSocket
**/
@ApiModelProperty(value = "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported")
public V1TCPSocketAction getTcpSocket() {
return tcpSocket;
}
public void setTcpSocket(V1TCPSocketAction tcpSocket) {
this.tcpSocket = tcpSocket;
}
public V1Probe timeoutSeconds(Integer timeoutSeconds) {
this.timeoutSeconds = timeoutSeconds;
return this;
}
/**
* Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
* @return timeoutSeconds
**/
@ApiModelProperty(value = "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes")
public Integer getTimeoutSeconds() {
return timeoutSeconds;
}
public void setTimeoutSeconds(Integer timeoutSeconds) {
this.timeoutSeconds = timeoutSeconds;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1Probe v1Probe = (V1Probe) o;
return Objects.equals(this.exec, v1Probe.exec) &&
Objects.equals(this.failureThreshold, v1Probe.failureThreshold) &&
Objects.equals(this.httpGet, v1Probe.httpGet) &&
Objects.equals(this.initialDelaySeconds, v1Probe.initialDelaySeconds) &&
Objects.equals(this.periodSeconds, v1Probe.periodSeconds) &&
Objects.equals(this.successThreshold, v1Probe.successThreshold) &&
Objects.equals(this.tcpSocket, v1Probe.tcpSocket) &&
Objects.equals(this.timeoutSeconds, v1Probe.timeoutSeconds);
}
@Override
public int hashCode() {
return Objects.hash(exec, failureThreshold, httpGet, initialDelaySeconds, periodSeconds, successThreshold, tcpSocket, timeoutSeconds);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1Probe {\n");
sb.append(" exec: ").append(toIndentedString(exec)).append("\n");
sb.append(" failureThreshold: ").append(toIndentedString(failureThreshold)).append("\n");
sb.append(" httpGet: ").append(toIndentedString(httpGet)).append("\n");
sb.append(" initialDelaySeconds: ").append(toIndentedString(initialDelaySeconds)).append("\n");
sb.append(" periodSeconds: ").append(toIndentedString(periodSeconds)).append("\n");
sb.append(" successThreshold: ").append(toIndentedString(successThreshold)).append("\n");
sb.append(" tcpSocket: ").append(toIndentedString(tcpSocket)).append("\n");
sb.append(" timeoutSeconds: ").append(toIndentedString(timeoutSeconds)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy