Vertex AI v1beta1 API - Class Probe.Types.HttpGetAction (1.0.0-beta17)

public sealed class Probe.Types.HttpGetAction : IMessage<Probe.Types.HttpGetAction>, IEquatable<Probe.Types.HttpGetAction>, IDeepCloneable<Probe.Types.HttpGetAction>, IBufferMessage, IMessage

Reference documentation and code samples for the Vertex AI v1beta1 API class Probe.Types.HttpGetAction.

HttpGetAction describes an action based on HTTP Get requests.

Inheritance

object > Probe.Types.HttpGetAction

Namespace

Google.Cloud.AIPlatform.V1Beta1

Assembly

Google.Cloud.AIPlatform.V1Beta1.dll

Constructors

HttpGetAction()

public HttpGetAction()

HttpGetAction(HttpGetAction)

public HttpGetAction(Probe.Types.HttpGetAction other)
Parameter
Name Description
other ProbeTypesHttpGetAction

Properties

Host

public string Host { get; set; }

Host name to connect to, defaults to the model serving container's IP. You probably want to set "Host" in httpHeaders instead.

Property Value
Type Description
string

HttpHeaders

public RepeatedField<Probe.Types.HttpHeader> HttpHeaders { get; }

Custom headers to set in the request. HTTP allows repeated headers.

Property Value
Type Description
RepeatedFieldProbeTypesHttpHeader

Path

public string Path { get; set; }

Path to access on the HTTP server.

Property Value
Type Description
string

Port

public int Port { get; set; }

Number of the port to access on the container. Number must be in the range 1 to 65535.

Property Value
Type Description
int

Scheme

public string Scheme { get; set; }

Scheme to use for connecting to the host. Defaults to HTTP. Acceptable values are "HTTP" or "HTTPS".

Property Value
Type Description
string