Interface SearchCatalogResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchCatalogResponse
,SearchCatalogResponse.Builder
public interface SearchCatalogResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
The token that can be used to retrieve the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
The token that can be used to retrieve the next page of results.SearchCatalogResult
getResults(int index)
Search results.int
getResultsCount()
Search results.List<SearchCatalogResult>
getResultsList()
Search results.SearchCatalogResultOrBuilder
getResultsOrBuilder(int index)
Search results.List<? extends SearchCatalogResultOrBuilder>
getResultsOrBuilderList()
Search results.int
getTotalSize()
The approximate total number of entries matched by the query.String
getUnreachable(int index)
Unreachable locations.com.google.protobuf.ByteString
getUnreachableBytes(int index)
Unreachable locations.int
getUnreachableCount()
Unreachable locations.List<String>
getUnreachableList()
Unreachable locations.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResultsList
List<SearchCatalogResult> getResultsList()
Search results.
repeated .google.cloud.datacatalog.v1beta1.SearchCatalogResult results = 1;
-
getResults
SearchCatalogResult getResults(int index)
Search results.
repeated .google.cloud.datacatalog.v1beta1.SearchCatalogResult results = 1;
-
getResultsCount
int getResultsCount()
Search results.
repeated .google.cloud.datacatalog.v1beta1.SearchCatalogResult results = 1;
-
getResultsOrBuilderList
List<? extends SearchCatalogResultOrBuilder> getResultsOrBuilderList()
Search results.
repeated .google.cloud.datacatalog.v1beta1.SearchCatalogResult results = 1;
-
getResultsOrBuilder
SearchCatalogResultOrBuilder getResultsOrBuilder(int index)
Search results.
repeated .google.cloud.datacatalog.v1beta1.SearchCatalogResult results = 1;
-
getTotalSize
int getTotalSize()
The approximate total number of entries matched by the query.
int32 total_size = 2;
- Returns:
- The totalSize.
-
getNextPageToken
String getNextPageToken()
The token that can be used to retrieve the next page of results.
string next_page_token = 3;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The token that can be used to retrieve the next page of results.
string next_page_token = 3;
- Returns:
- The bytes for nextPageToken.
-
getUnreachableList
List<String> getUnreachableList()
Unreachable locations. Search result does not include data from those locations. Users can get additional information on the error by repeating the search request with a more restrictive parameter -- setting the value for `SearchDataCatalogRequest.scope.restricted_locations`.
repeated string unreachable = 6;
- Returns:
- A list containing the unreachable.
-
getUnreachableCount
int getUnreachableCount()
Unreachable locations. Search result does not include data from those locations. Users can get additional information on the error by repeating the search request with a more restrictive parameter -- setting the value for `SearchDataCatalogRequest.scope.restricted_locations`.
repeated string unreachable = 6;
- Returns:
- The count of unreachable.
-
getUnreachable
String getUnreachable(int index)
Unreachable locations. Search result does not include data from those locations. Users can get additional information on the error by repeating the search request with a more restrictive parameter -- setting the value for `SearchDataCatalogRequest.scope.restricted_locations`.
repeated string unreachable = 6;
- Parameters:
index
- The index of the element to return.- Returns:
- The unreachable at the given index.
-
getUnreachableBytes
com.google.protobuf.ByteString getUnreachableBytes(int index)
Unreachable locations. Search result does not include data from those locations. Users can get additional information on the error by repeating the search request with a more restrictive parameter -- setting the value for `SearchDataCatalogRequest.scope.restricted_locations`.
repeated string unreachable = 6;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the unreachable at the given index.
-
-