Package com.google.cloud.aiplatform.v1
Interface ListContextsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListContextsResponse
,ListContextsResponse.Builder
public interface ListContextsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Context
getContexts(int index)
The Contexts retrieved from the MetadataStore.int
getContextsCount()
The Contexts retrieved from the MetadataStore.List<Context>
getContextsList()
The Contexts retrieved from the MetadataStore.ContextOrBuilder
getContextsOrBuilder(int index)
The Contexts retrieved from the MetadataStore.List<? extends ContextOrBuilder>
getContextsOrBuilderList()
The Contexts retrieved from the MetadataStore.String
getNextPageToken()
A token, which can be sent as [ListContextsRequest.page_token][google.cloud.aiplatform.v1.ListContextsRequest.page_token] to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token, which can be sent as [ListContextsRequest.page_token][google.cloud.aiplatform.v1.ListContextsRequest.page_token] to retrieve the next page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getContextsList
List<Context> getContextsList()
The Contexts retrieved from the MetadataStore.
repeated .google.cloud.aiplatform.v1.Context contexts = 1;
-
getContexts
Context getContexts(int index)
The Contexts retrieved from the MetadataStore.
repeated .google.cloud.aiplatform.v1.Context contexts = 1;
-
getContextsCount
int getContextsCount()
The Contexts retrieved from the MetadataStore.
repeated .google.cloud.aiplatform.v1.Context contexts = 1;
-
getContextsOrBuilderList
List<? extends ContextOrBuilder> getContextsOrBuilderList()
The Contexts retrieved from the MetadataStore.
repeated .google.cloud.aiplatform.v1.Context contexts = 1;
-
getContextsOrBuilder
ContextOrBuilder getContextsOrBuilder(int index)
The Contexts retrieved from the MetadataStore.
repeated .google.cloud.aiplatform.v1.Context contexts = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as [ListContextsRequest.page_token][google.cloud.aiplatform.v1.ListContextsRequest.page_token] to retrieve the next page. If this field is not populated, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token, which can be sent as [ListContextsRequest.page_token][google.cloud.aiplatform.v1.ListContextsRequest.page_token] to retrieve the next page. If this field is not populated, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-