public interface ProbeOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
Probe.ExecAction |
getExec()
ExecAction probes the health of a container by executing a command.
|
Probe.ExecActionOrBuilder |
getExecOrBuilder()
ExecAction probes the health of a container by executing a command.
|
int |
getFailureThreshold()
Number of consecutive failures before the probe is considered failed.
|
Probe.GrpcAction |
getGrpc()
GrpcAction probes the health of a container by sending a gRPC request.
|
Probe.GrpcActionOrBuilder |
getGrpcOrBuilder()
GrpcAction probes the health of a container by sending a gRPC request.
|
Probe.HttpGetAction |
getHttpGet()
HttpGetAction probes the health of a container by sending an HTTP GET
request.
|
Probe.HttpGetActionOrBuilder |
getHttpGetOrBuilder()
HttpGetAction probes the health of a container by sending an HTTP GET
request.
|
int |
getInitialDelaySeconds()
Number of seconds to wait before starting the probe.
|
int |
getPeriodSeconds()
How often (in seconds) to perform the probe.
|
Probe.ProbeTypeCase |
getProbeTypeCase() |
int |
getSuccessThreshold()
Number of consecutive successes before the probe is considered successful.
|
Probe.TcpSocketAction |
getTcpSocket()
TcpSocketAction probes the health of a container by opening a TCP socket
connection.
|
Probe.TcpSocketActionOrBuilder |
getTcpSocketOrBuilder()
TcpSocketAction probes the health of a container by opening a TCP socket
connection.
|
int |
getTimeoutSeconds()
Number of seconds after which the probe times out.
|
boolean |
hasExec()
ExecAction probes the health of a container by executing a command.
|
boolean |
hasGrpc()
GrpcAction probes the health of a container by sending a gRPC request.
|
boolean |
hasHttpGet()
HttpGetAction probes the health of a container by sending an HTTP GET
request.
|
boolean |
hasTcpSocket()
TcpSocketAction probes the health of a container by opening a TCP socket
connection.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofboolean hasExec()
ExecAction probes the health of a container by executing a command.
.google.cloud.aiplatform.v1.Probe.ExecAction exec = 1;Probe.ExecAction getExec()
ExecAction probes the health of a container by executing a command.
.google.cloud.aiplatform.v1.Probe.ExecAction exec = 1;Probe.ExecActionOrBuilder getExecOrBuilder()
ExecAction probes the health of a container by executing a command.
.google.cloud.aiplatform.v1.Probe.ExecAction exec = 1;boolean hasHttpGet()
HttpGetAction probes the health of a container by sending an HTTP GET request.
.google.cloud.aiplatform.v1.Probe.HttpGetAction http_get = 4;Probe.HttpGetAction getHttpGet()
HttpGetAction probes the health of a container by sending an HTTP GET request.
.google.cloud.aiplatform.v1.Probe.HttpGetAction http_get = 4;Probe.HttpGetActionOrBuilder getHttpGetOrBuilder()
HttpGetAction probes the health of a container by sending an HTTP GET request.
.google.cloud.aiplatform.v1.Probe.HttpGetAction http_get = 4;boolean hasGrpc()
GrpcAction probes the health of a container by sending a gRPC request.
.google.cloud.aiplatform.v1.Probe.GrpcAction grpc = 5;Probe.GrpcAction getGrpc()
GrpcAction probes the health of a container by sending a gRPC request.
.google.cloud.aiplatform.v1.Probe.GrpcAction grpc = 5;Probe.GrpcActionOrBuilder getGrpcOrBuilder()
GrpcAction probes the health of a container by sending a gRPC request.
.google.cloud.aiplatform.v1.Probe.GrpcAction grpc = 5;boolean hasTcpSocket()
TcpSocketAction probes the health of a container by opening a TCP socket connection.
.google.cloud.aiplatform.v1.Probe.TcpSocketAction tcp_socket = 6;Probe.TcpSocketAction getTcpSocket()
TcpSocketAction probes the health of a container by opening a TCP socket connection.
.google.cloud.aiplatform.v1.Probe.TcpSocketAction tcp_socket = 6;Probe.TcpSocketActionOrBuilder getTcpSocketOrBuilder()
TcpSocketAction probes the health of a container by opening a TCP socket connection.
.google.cloud.aiplatform.v1.Probe.TcpSocketAction tcp_socket = 6;int getPeriodSeconds()
How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Must be less than timeout_seconds. Maps to Kubernetes probe argument 'periodSeconds'.
int32 period_seconds = 2;int getTimeoutSeconds()
Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Must be greater or equal to period_seconds. Maps to Kubernetes probe argument 'timeoutSeconds'.
int32 timeout_seconds = 3;int getFailureThreshold()
Number of consecutive failures before the probe is considered failed. Defaults to 3. Minimum value is 1. Maps to Kubernetes probe argument 'failureThreshold'.
int32 failure_threshold = 7;int getSuccessThreshold()
Number of consecutive successes before the probe is considered successful. Defaults to 1. Minimum value is 1. Maps to Kubernetes probe argument 'successThreshold'.
int32 success_threshold = 8;int getInitialDelaySeconds()
Number of seconds to wait before starting the probe. Defaults to 0. Minimum value is 0. Maps to Kubernetes probe argument 'initialDelaySeconds'.
int32 initial_delay_seconds = 9;Probe.ProbeTypeCase getProbeTypeCase()
Copyright © 2025 Google LLC. All rights reserved.