[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-14 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eProbe\u003c/code\u003e class in the Vertex AI v1beta1 API is used for performing health checks on containers to determine their status.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eProbe\u003c/code\u003e supports different types of health checks, including executing commands, sending gRPC requests, sending HTTP GET requests, and opening TCP socket connections.\u003c/p\u003e\n"],["\u003cp\u003eThe class provides customizable parameters for health checks, such as \u003ccode\u003eFailureThreshold\u003c/code\u003e, \u003ccode\u003eInitialDelaySeconds\u003c/code\u003e, \u003ccode\u003ePeriodSeconds\u003c/code\u003e, \u003ccode\u003eSuccessThreshold\u003c/code\u003e, and \u003ccode\u003eTimeoutSeconds\u003c/code\u003e, which map to Kubernetes probe arguments.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eProbe\u003c/code\u003e has two constructors: a default one and one that takes another \u003ccode\u003eProbe\u003c/code\u003e instance for copying.\u003c/p\u003e\n"],["\u003cp\u003eThe latest version for the \u003ccode\u003eProbe\u003c/code\u003e class is \u003ccode\u003e1.0.0-beta21\u003c/code\u003e as indicated in the first line item.\u003c/p\u003e\n"]]],[],null,["# Vertex AI v1beta1 API - Class Probe (1.0.0-beta47)\n\nVersion latestkeyboard_arrow_down\n\n- [1.0.0-beta47 (latest)](/dotnet/docs/reference/Google.Cloud.AIPlatform.V1Beta1/latest/Google.Cloud.AIPlatform.V1Beta1.Probe)\n- [1.0.0-beta46](/dotnet/docs/reference/Google.Cloud.AIPlatform.V1Beta1/1.0.0-beta46/Google.Cloud.AIPlatform.V1Beta1.Probe) \n\n public sealed class Probe : IMessage\u003cProbe\u003e, IEquatable\u003cProbe\u003e, IDeepCloneable\u003cProbe\u003e, IBufferMessage, IMessage\n\nReference documentation and code samples for the Vertex AI v1beta1 API class Probe.\n\nProbe describes a health check to be performed against a container to\ndetermine whether it is alive or ready to receive traffic. \n\nInheritance\n-----------\n\n[object](https://learn.microsoft.com/dotnet/api/system.object) \\\u003e Probe \n\nImplements\n----------\n\n[IMessage](https://cloud.google.com/dotnet/docs/reference/Google.Protobuf/latest/Google.Protobuf.IMessage-1.html)[Probe](/dotnet/docs/reference/Google.Cloud.AIPlatform.V1Beta1/latest/Google.Cloud.AIPlatform.V1Beta1.Probe), [IEquatable](https://learn.microsoft.com/dotnet/api/system.iequatable-1)[Probe](/dotnet/docs/reference/Google.Cloud.AIPlatform.V1Beta1/latest/Google.Cloud.AIPlatform.V1Beta1.Probe), [IDeepCloneable](https://cloud.google.com/dotnet/docs/reference/Google.Protobuf/latest/Google.Protobuf.IDeepCloneable-1.html)[Probe](/dotnet/docs/reference/Google.Cloud.AIPlatform.V1Beta1/latest/Google.Cloud.AIPlatform.V1Beta1.Probe), [IBufferMessage](https://cloud.google.com/dotnet/docs/reference/Google.Protobuf/latest/Google.Protobuf.IBufferMessage.html), [IMessage](https://cloud.google.com/dotnet/docs/reference/Google.Protobuf/latest/Google.Protobuf.IMessage.html) \n\nInherited Members\n-----------------\n\n[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode) \n[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype) \n[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring)\n\nNamespace\n---------\n\n[Google.Cloud.AIPlatform.V1Beta1](/dotnet/docs/reference/Google.Cloud.AIPlatform.V1Beta1/latest/Google.Cloud.AIPlatform.V1Beta1)\n\nAssembly\n--------\n\nGoogle.Cloud.AIPlatform.V1Beta1.dll\n\nConstructors\n------------\n\n### Probe()\n\n public Probe()\n\n### Probe(Probe)\n\n public Probe(Probe other)\n\nProperties\n----------\n\n### Exec\n\n public Probe.Types.ExecAction Exec { get; set; }\n\nExecAction probes the health of a container by executing a command.\n\n### FailureThreshold\n\n public int FailureThreshold { get; set; }\n\nNumber of consecutive failures before the probe is considered failed.\nDefaults to 3. Minimum value is 1.\n\nMaps to Kubernetes probe argument 'failureThreshold'.\n\n### Grpc\n\n public Probe.Types.GrpcAction Grpc { get; set; }\n\nGrpcAction probes the health of a container by sending a gRPC request.\n\n### HttpGet\n\n public Probe.Types.HttpGetAction HttpGet { get; set; }\n\nHttpGetAction probes the health of a container by sending an HTTP GET\nrequest.\n\n### InitialDelaySeconds\n\n public int InitialDelaySeconds { get; set; }\n\nNumber of seconds to wait before starting the probe. Defaults to 0.\nMinimum value is 0.\n\nMaps to Kubernetes probe argument 'initialDelaySeconds'.\n\n### PeriodSeconds\n\n public int PeriodSeconds { get; set; }\n\nHow often (in seconds) to perform the probe. Default to 10 seconds.\nMinimum value is 1. Must be less than timeout_seconds.\n\nMaps to Kubernetes probe argument 'periodSeconds'.\n\n### ProbeTypeCase\n\n public Probe.ProbeTypeOneofCase ProbeTypeCase { get; }\n\n### SuccessThreshold\n\n public int SuccessThreshold { get; set; }\n\nNumber of consecutive successes before the probe is considered successful.\nDefaults to 1. Minimum value is 1.\n\nMaps to Kubernetes probe argument 'successThreshold'.\n\n### TcpSocket\n\n public Probe.Types.TcpSocketAction TcpSocket { get; set; }\n\nTcpSocketAction probes the health of a container by opening a TCP socket\nconnection.\n\n### TimeoutSeconds\n\n public int TimeoutSeconds { get; set; }\n\nNumber of seconds after which the probe times out. Defaults to 1 second.\nMinimum value is 1. Must be greater or equal to period_seconds.\n\nMaps to Kubernetes probe argument 'timeoutSeconds'."]]