Package com.google.cloud.aiplatform.v1
Interface ListDatasetsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDatasetsResponse
,ListDatasetsResponse.Builder
public interface ListDatasetsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Dataset
getDatasets(int index)
A list of Datasets that matches the specified filter in the request.int
getDatasetsCount()
A list of Datasets that matches the specified filter in the request.List<Dataset>
getDatasetsList()
A list of Datasets that matches the specified filter in the request.DatasetOrBuilder
getDatasetsOrBuilder(int index)
A list of Datasets that matches the specified filter in the request.List<? extends DatasetOrBuilder>
getDatasetsOrBuilderList()
A list of Datasets that matches the specified filter in the request.String
getNextPageToken()
The standard List next-page token.com.google.protobuf.ByteString
getNextPageTokenBytes()
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
-
getDatasetsList
List<Dataset> getDatasetsList()
A list of Datasets that matches the specified filter in the request.
repeated .google.cloud.aiplatform.v1.Dataset datasets = 1;
-
getDatasets
Dataset getDatasets(int index)
A list of Datasets that matches the specified filter in the request.
repeated .google.cloud.aiplatform.v1.Dataset datasets = 1;
-
getDatasetsCount
int getDatasetsCount()
A list of Datasets that matches the specified filter in the request.
repeated .google.cloud.aiplatform.v1.Dataset datasets = 1;
-
getDatasetsOrBuilderList
List<? extends DatasetOrBuilder> getDatasetsOrBuilderList()
A list of Datasets that matches the specified filter in the request.
repeated .google.cloud.aiplatform.v1.Dataset datasets = 1;
-
getDatasetsOrBuilder
DatasetOrBuilder getDatasetsOrBuilder(int index)
A list of Datasets that matches the specified filter in the request.
repeated .google.cloud.aiplatform.v1.Dataset datasets = 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.
-
-