Interface Probe.HttpGetActionOrBuilder (3.59.0)

public static interface Probe.HttpGetActionOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getHost()

public abstract String getHost()

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

string host = 3;

Returns
Type Description
String

The host.

getHostBytes()

public abstract ByteString getHostBytes()

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

string host = 3;

Returns
Type Description
ByteString

The bytes for host.

getHttpHeaders(int index)

public abstract Probe.HttpHeader getHttpHeaders(int index)

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

repeated .google.cloud.aiplatform.v1.Probe.HttpHeader http_headers = 5;

Parameter
Name Description
index int
Returns
Type Description
Probe.HttpHeader

getHttpHeadersCount()

public abstract int getHttpHeadersCount()

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

repeated .google.cloud.aiplatform.v1.Probe.HttpHeader http_headers = 5;

Returns
Type Description
int

getHttpHeadersList()

public abstract List<Probe.HttpHeader> getHttpHeadersList()

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

repeated .google.cloud.aiplatform.v1.Probe.HttpHeader http_headers = 5;

Returns
Type Description
List<HttpHeader>

getHttpHeadersOrBuilder(int index)

public abstract Probe.HttpHeaderOrBuilder getHttpHeadersOrBuilder(int index)

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

repeated .google.cloud.aiplatform.v1.Probe.HttpHeader http_headers = 5;

Parameter
Name Description
index int
Returns
Type Description
Probe.HttpHeaderOrBuilder

getHttpHeadersOrBuilderList()

public abstract List<? extends Probe.HttpHeaderOrBuilder> getHttpHeadersOrBuilderList()

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

repeated .google.cloud.aiplatform.v1.Probe.HttpHeader http_headers = 5;

Returns
Type Description
List<? extends com.google.cloud.aiplatform.v1.Probe.HttpHeaderOrBuilder>

getPath()

public abstract String getPath()

Path to access on the HTTP server.

string path = 1;

Returns
Type Description
String

The path.

getPathBytes()

public abstract ByteString getPathBytes()

Path to access on the HTTP server.

string path = 1;

Returns
Type Description
ByteString

The bytes for path.

getPort()

public abstract int getPort()

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

int32 port = 2;

Returns
Type Description
int

The port.

getScheme()

public abstract String getScheme()

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

string scheme = 4;

Returns
Type Description
String

The scheme.

getSchemeBytes()

public abstract ByteString getSchemeBytes()

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

string scheme = 4;

Returns
Type Description
ByteString

The bytes for scheme.