Interface ProbeOrBuilder (0.5.0)

public interface ProbeOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getFailureThreshold()

public abstract int getFailureThreshold()

Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.

int32 failure_threshold = 4;

Returns
TypeDescription
int

The failureThreshold.

getHttpGet()

public abstract HTTPGetAction getHttpGet()

HTTPGet specifies the http request to perform. Exactly one of HTTPGet or TCPSocket must be specified.

.google.cloud.run.v2.HTTPGetAction http_get = 5;

Returns
TypeDescription
HTTPGetAction

The httpGet.

getHttpGetOrBuilder()

public abstract HTTPGetActionOrBuilder getHttpGetOrBuilder()

HTTPGet specifies the http request to perform. Exactly one of HTTPGet or TCPSocket must be specified.

.google.cloud.run.v2.HTTPGetAction http_get = 5;

Returns
TypeDescription
HTTPGetActionOrBuilder

getInitialDelaySeconds()

public abstract int getInitialDelaySeconds()

Number of seconds after the container has started before the probe is initiated. Defaults to 0 seconds. Minimum value is 0. Maximum value for liveness probe is 3600. Maximum value for startup probe is 240. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

int32 initial_delay_seconds = 1;

Returns
TypeDescription
int

The initialDelaySeconds.

getPeriodSeconds()

public abstract int getPeriodSeconds()

How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value for liveness probe is 3600. Maximum value for startup probe is 240. Must be greater or equal than timeout_seconds.

int32 period_seconds = 3;

Returns
TypeDescription
int

The periodSeconds.

getProbeTypeCase()

public abstract Probe.ProbeTypeCase getProbeTypeCase()
Returns
TypeDescription
Probe.ProbeTypeCase

getTcpSocket()

public abstract TCPSocketAction getTcpSocket()

TCPSocket specifies an action involving a TCP port. Exactly one of HTTPGet or TCPSocket must be specified.

.google.cloud.run.v2.TCPSocketAction tcp_socket = 6;

Returns
TypeDescription
TCPSocketAction

The tcpSocket.

getTcpSocketOrBuilder()

public abstract TCPSocketActionOrBuilder getTcpSocketOrBuilder()

TCPSocket specifies an action involving a TCP port. Exactly one of HTTPGet or TCPSocket must be specified.

.google.cloud.run.v2.TCPSocketAction tcp_socket = 6;

Returns
TypeDescription
TCPSocketActionOrBuilder

getTimeoutSeconds()

public abstract int getTimeoutSeconds()

Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 3600. Must be smaller than period_seconds. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

int32 timeout_seconds = 2;

Returns
TypeDescription
int

The timeoutSeconds.

hasHttpGet()

public abstract boolean hasHttpGet()

HTTPGet specifies the http request to perform. Exactly one of HTTPGet or TCPSocket must be specified.

.google.cloud.run.v2.HTTPGetAction http_get = 5;

Returns
TypeDescription
boolean

Whether the httpGet field is set.

hasTcpSocket()

public abstract boolean hasTcpSocket()

TCPSocket specifies an action involving a TCP port. Exactly one of HTTPGet or TCPSocket must be specified.

.google.cloud.run.v2.TCPSocketAction tcp_socket = 6;

Returns
TypeDescription
boolean

Whether the tcpSocket field is set.