Package com.google.cloud.aiplatform.v1
Interface ListDataItemsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDataItemsResponse,ListDataItemsResponse.Builder
public interface ListDataItemsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataItemgetDataItems(int index)A list of DataItems that matches the specified filter in the request.intgetDataItemsCount()A list of DataItems that matches the specified filter in the request.List<DataItem>getDataItemsList()A list of DataItems that matches the specified filter in the request.DataItemOrBuildergetDataItemsOrBuilder(int index)A list of DataItems that matches the specified filter in the request.List<? extends DataItemOrBuilder>getDataItemsOrBuilderList()A list of DataItems that matches the specified filter in the request.StringgetNextPageToken()The standard List next-page token.com.google.protobuf.ByteStringgetNextPageTokenBytes()The standard List next-page token.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDataItemsList
List<DataItem> getDataItemsList()
A list of DataItems that matches the specified filter in the request.
repeated .google.cloud.aiplatform.v1.DataItem data_items = 1;
-
getDataItems
DataItem getDataItems(int index)
A list of DataItems that matches the specified filter in the request.
repeated .google.cloud.aiplatform.v1.DataItem data_items = 1;
-
getDataItemsCount
int getDataItemsCount()
A list of DataItems that matches the specified filter in the request.
repeated .google.cloud.aiplatform.v1.DataItem data_items = 1;
-
getDataItemsOrBuilderList
List<? extends DataItemOrBuilder> getDataItemsOrBuilderList()
A list of DataItems that matches the specified filter in the request.
repeated .google.cloud.aiplatform.v1.DataItem data_items = 1;
-
getDataItemsOrBuilder
DataItemOrBuilder getDataItemsOrBuilder(int index)
A list of DataItems that matches the specified filter in the request.
repeated .google.cloud.aiplatform.v1.DataItem data_items = 1;
-
getNextPageToken
String getNextPageToken()
The standard List next-page token.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The standard List next-page token.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-