Class GoogleCloudAiplatformV1beta1Probe
Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1beta1.Data
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class GoogleCloudAiplatformV1beta1Probe : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Exec
ExecAction probes the health of a container by executing a command.
Declaration
[JsonProperty("exec")]
public virtual GoogleCloudAiplatformV1beta1ProbeExecAction Exec { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1beta1ProbeExecAction |
PeriodSeconds
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'.
Declaration
[JsonProperty("periodSeconds")]
public virtual int? PeriodSeconds { get; set; }
Property Value
Type | Description |
---|---|
int? |
TimeoutSeconds
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'.
Declaration
[JsonProperty("timeoutSeconds")]
public virtual int? TimeoutSeconds { get; set; }
Property Value
Type | Description |
---|---|
int? |