Interface SearchLinksResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchLinksResponse
,SearchLinksResponse.Builder
public interface SearchLinksResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Link
getLinks(int index)
The list of links for a given asset.int
getLinksCount()
The list of links for a given asset.List<Link>
getLinksList()
The list of links for a given asset.LinkOrBuilder
getLinksOrBuilder(int index)
The list of links for a given asset.List<? extends LinkOrBuilder>
getLinksOrBuilderList()
The list of links for a given asset.String
getNextPageToken()
The token to specify as `page_token` in the subsequent call to get the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
The token to specify as `page_token` in the subsequent call to get 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
-
getLinksList
List<Link> getLinksList()
The list of links for a given asset. Can be empty if the asset has no relations of requested type (source or target).
repeated .google.cloud.datacatalog.lineage.v1.Link links = 1;
-
getLinks
Link getLinks(int index)
The list of links for a given asset. Can be empty if the asset has no relations of requested type (source or target).
repeated .google.cloud.datacatalog.lineage.v1.Link links = 1;
-
getLinksCount
int getLinksCount()
The list of links for a given asset. Can be empty if the asset has no relations of requested type (source or target).
repeated .google.cloud.datacatalog.lineage.v1.Link links = 1;
-
getLinksOrBuilderList
List<? extends LinkOrBuilder> getLinksOrBuilderList()
The list of links for a given asset. Can be empty if the asset has no relations of requested type (source or target).
repeated .google.cloud.datacatalog.lineage.v1.Link links = 1;
-
getLinksOrBuilder
LinkOrBuilder getLinksOrBuilder(int index)
The list of links for a given asset. Can be empty if the asset has no relations of requested type (source or target).
repeated .google.cloud.datacatalog.lineage.v1.Link links = 1;
-
getNextPageToken
String getNextPageToken()
The token to specify as `page_token` in the subsequent call to get the next page. Omitted if there are no more pages in the response.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The token to specify as `page_token` in the subsequent call to get the next page. Omitted if there are no more pages in the response.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-