- 0.52.0 (latest)
- 0.51.0
- 0.49.0
- 0.48.0
- 0.47.0
- 0.46.0
- 0.45.0
- 0.44.0
- 0.43.0
- 0.42.0
- 0.41.0
- 0.40.0
- 0.39.0
- 0.37.0
- 0.36.0
- 0.35.0
- 0.34.0
- 0.33.0
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.14.0
- 0.13.0
- 0.12.0
- 0.11.0
- 0.9.0
- 0.8.0
- 0.7.0
- 0.6.0
- 0.5.0
- 0.4.0
- 0.3.5
- 0.2.1
- 0.1.2
public interface ProbeOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
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 | |
---|---|
Type | Description |
int |
The failureThreshold. |
getGrpc()
public abstract GRPCAction getGrpc()
GRPC specifies an action involving a gRPC port. Exactly one of httpGet, tcpSocket, or grpc must be specified.
.google.cloud.run.v2.GRPCAction grpc = 7;
Returns | |
---|---|
Type | Description |
GRPCAction |
The grpc. |
getGrpcOrBuilder()
public abstract GRPCActionOrBuilder getGrpcOrBuilder()
GRPC specifies an action involving a gRPC port. Exactly one of httpGet, tcpSocket, or grpc must be specified.
.google.cloud.run.v2.GRPCAction grpc = 7;
Returns | |
---|---|
Type | Description |
GRPCActionOrBuilder |
getHttpGet()
public abstract HTTPGetAction getHttpGet()
HTTPGet specifies the http request to perform. Exactly one of httpGet, tcpSocket, or grpc must be specified.
.google.cloud.run.v2.HTTPGetAction http_get = 5;
Returns | |
---|---|
Type | Description |
HTTPGetAction |
The httpGet. |
getHttpGetOrBuilder()
public abstract HTTPGetActionOrBuilder getHttpGetOrBuilder()
HTTPGet specifies the http request to perform. Exactly one of httpGet, tcpSocket, or grpc must be specified.
.google.cloud.run.v2.HTTPGetAction http_get = 5;
Returns | |
---|---|
Type | Description |
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.
int32 initial_delay_seconds = 1;
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
int |
The periodSeconds. |
getProbeTypeCase()
public abstract Probe.ProbeTypeCase getProbeTypeCase()
Returns | |
---|---|
Type | Description |
Probe.ProbeTypeCase |
getTcpSocket()
public abstract TCPSocketAction getTcpSocket()
TCPSocket specifies an action involving a TCP port. Exactly one of httpGet, tcpSocket, or grpc must be specified.
.google.cloud.run.v2.TCPSocketAction tcp_socket = 6;
Returns | |
---|---|
Type | Description |
TCPSocketAction |
The tcpSocket. |
getTcpSocketOrBuilder()
public abstract TCPSocketActionOrBuilder getTcpSocketOrBuilder()
TCPSocket specifies an action involving a TCP port. Exactly one of httpGet, tcpSocket, or grpc must be specified.
.google.cloud.run.v2.TCPSocketAction tcp_socket = 6;
Returns | |
---|---|
Type | Description |
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.
int32 timeout_seconds = 2;
Returns | |
---|---|
Type | Description |
int |
The timeoutSeconds. |
hasGrpc()
public abstract boolean hasGrpc()
GRPC specifies an action involving a gRPC port. Exactly one of httpGet, tcpSocket, or grpc must be specified.
.google.cloud.run.v2.GRPCAction grpc = 7;
Returns | |
---|---|
Type | Description |
boolean |
Whether the grpc field is set. |
hasHttpGet()
public abstract boolean hasHttpGet()
HTTPGet specifies the http request to perform. Exactly one of httpGet, tcpSocket, or grpc must be specified.
.google.cloud.run.v2.HTTPGetAction http_get = 5;
Returns | |
---|---|
Type | Description |
boolean |
Whether the httpGet field is set. |
hasTcpSocket()
public abstract boolean hasTcpSocket()
TCPSocket specifies an action involving a TCP port. Exactly one of httpGet, tcpSocket, or grpc must be specified.
.google.cloud.run.v2.TCPSocketAction tcp_socket = 6;
Returns | |
---|---|
Type | Description |
boolean |
Whether the tcpSocket field is set. |