Interface ListMetadataStoresResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListMetadataStoresResponse
,ListMetadataStoresResponse.Builder
public interface ListMetadataStoresResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetadataStore
getMetadataStores(int index)
The MetadataStores found for the Location.int
getMetadataStoresCount()
The MetadataStores found for the Location.List<MetadataStore>
getMetadataStoresList()
The MetadataStores found for the Location.MetadataStoreOrBuilder
getMetadataStoresOrBuilder(int index)
The MetadataStores found for the Location.List<? extends MetadataStoreOrBuilder>
getMetadataStoresOrBuilderList()
The MetadataStores found for the Location.String
getNextPageToken()
A token, which can be sent as [ListMetadataStoresRequest.page_token][google.cloud.aiplatform.v1beta1.ListMetadataStoresRequest.page_token] to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token, which can be sent as [ListMetadataStoresRequest.page_token][google.cloud.aiplatform.v1beta1.ListMetadataStoresRequest.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
-
getMetadataStoresList
List<MetadataStore> getMetadataStoresList()
The MetadataStores found for the Location.
repeated .google.cloud.aiplatform.v1beta1.MetadataStore metadata_stores = 1;
-
getMetadataStores
MetadataStore getMetadataStores(int index)
The MetadataStores found for the Location.
repeated .google.cloud.aiplatform.v1beta1.MetadataStore metadata_stores = 1;
-
getMetadataStoresCount
int getMetadataStoresCount()
The MetadataStores found for the Location.
repeated .google.cloud.aiplatform.v1beta1.MetadataStore metadata_stores = 1;
-
getMetadataStoresOrBuilderList
List<? extends MetadataStoreOrBuilder> getMetadataStoresOrBuilderList()
The MetadataStores found for the Location.
repeated .google.cloud.aiplatform.v1beta1.MetadataStore metadata_stores = 1;
-
getMetadataStoresOrBuilder
MetadataStoreOrBuilder getMetadataStoresOrBuilder(int index)
The MetadataStores found for the Location.
repeated .google.cloud.aiplatform.v1beta1.MetadataStore metadata_stores = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as [ListMetadataStoresRequest.page_token][google.cloud.aiplatform.v1beta1.ListMetadataStoresRequest.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 [ListMetadataStoresRequest.page_token][google.cloud.aiplatform.v1beta1.ListMetadataStoresRequest.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.
-
-