Interface BatchSearchLinkProcessesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BatchSearchLinkProcessesResponse
,BatchSearchLinkProcessesResponse.Builder
public interface BatchSearchLinkProcessesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.ProcessLinks
getProcessLinks(int index)
An array of processes associated with the specified links.int
getProcessLinksCount()
An array of processes associated with the specified links.List<ProcessLinks>
getProcessLinksList()
An array of processes associated with the specified links.ProcessLinksOrBuilder
getProcessLinksOrBuilder(int index)
An array of processes associated with the specified links.List<? extends ProcessLinksOrBuilder>
getProcessLinksOrBuilderList()
An array of processes associated with the specified links.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProcessLinksList
List<ProcessLinks> getProcessLinksList()
An array of processes associated with the specified links.
repeated .google.cloud.datacatalog.lineage.v1.ProcessLinks process_links = 1;
-
getProcessLinks
ProcessLinks getProcessLinks(int index)
An array of processes associated with the specified links.
repeated .google.cloud.datacatalog.lineage.v1.ProcessLinks process_links = 1;
-
getProcessLinksCount
int getProcessLinksCount()
An array of processes associated with the specified links.
repeated .google.cloud.datacatalog.lineage.v1.ProcessLinks process_links = 1;
-
getProcessLinksOrBuilderList
List<? extends ProcessLinksOrBuilder> getProcessLinksOrBuilderList()
An array of processes associated with the specified links.
repeated .google.cloud.datacatalog.lineage.v1.ProcessLinks process_links = 1;
-
getProcessLinksOrBuilder
ProcessLinksOrBuilder getProcessLinksOrBuilder(int index)
An array of processes associated with the specified links.
repeated .google.cloud.datacatalog.lineage.v1.ProcessLinks process_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.
-
-