Package com.google.cloud.aiplatform.v1
Interface Probe.HttpGetActionOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Probe.HttpGetAction,Probe.HttpGetAction.Builder
- Enclosing class:
- Probe
public static interface Probe.HttpGetActionOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetHost()Host name to connect to, defaults to the model serving container's IP.com.google.protobuf.ByteStringHost name to connect to, defaults to the model serving container's IP.getHttpHeaders(int index) Custom headers to set in the request.intCustom headers to set in the request.Custom headers to set in the request.getHttpHeadersOrBuilder(int index) Custom headers to set in the request.List<? extends Probe.HttpHeaderOrBuilder>Custom headers to set in the request.getPath()Path to access on the HTTP server.com.google.protobuf.ByteStringPath to access on the HTTP server.intgetPort()Number of the port to access on the container.Scheme to use for connecting to the host.com.google.protobuf.ByteStringScheme to use for connecting to the host.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getPath
String getPath()Path to access on the HTTP server.
string path = 1;- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()Path to access on the HTTP server.
string path = 1;- Returns:
- The bytes for path.
-
getPort
int getPort()Number of the port to access on the container. Number must be in the range 1 to 65535.
int32 port = 2;- Returns:
- The port.
-
getHost
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:
- The host.
-
getHostBytes
com.google.protobuf.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:
- The bytes for host.
-
getScheme
String getScheme()Scheme to use for connecting to the host. Defaults to HTTP. Acceptable values are "HTTP" or "HTTPS".
string scheme = 4;- Returns:
- The scheme.
-
getSchemeBytes
com.google.protobuf.ByteString getSchemeBytes()Scheme to use for connecting to the host. Defaults to HTTP. Acceptable values are "HTTP" or "HTTPS".
string scheme = 4;- Returns:
- The bytes for scheme.
-
getHttpHeadersList
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; -
getHttpHeaders
Custom headers to set in the request. HTTP allows repeated headers.
repeated .google.cloud.aiplatform.v1.Probe.HttpHeader http_headers = 5; -
getHttpHeadersCount
int getHttpHeadersCount()Custom headers to set in the request. HTTP allows repeated headers.
repeated .google.cloud.aiplatform.v1.Probe.HttpHeader http_headers = 5; -
getHttpHeadersOrBuilderList
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; -
getHttpHeadersOrBuilder
Custom headers to set in the request. HTTP allows repeated headers.
repeated .google.cloud.aiplatform.v1.Probe.HttpHeader http_headers = 5;
-