Interface BatchSearchLinkProcessesRequestOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getLinks​(int index)
      Required.
      com.google.protobuf.ByteString getLinksBytes​(int index)
      Required.
      int getLinksCount()
      Required.
      List<String> getLinksList()
      Required.
      int getPageSize()
      The maximum number of processes to return in a single page of the response.
      String getPageToken()
      The page token received from a previous `BatchSearchLinkProcesses` call.
      com.google.protobuf.ByteString getPageTokenBytes()
      The page token received from a previous `BatchSearchLinkProcesses` call.
      String getParent()
      Required.
      com.google.protobuf.ByteString getParentBytes()
      Required.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getParent

        String getParent()
         Required. The project and location you want search in the format `projects/*/locations/*`
         
        string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
        Returns:
        The parent.
      • getParentBytes

        com.google.protobuf.ByteString getParentBytes()
         Required. The project and location you want search in the format `projects/*/locations/*`
         
        string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
        Returns:
        The bytes for parent.
      • getLinksList

        List<String> getLinksList()
         Required. An array of links to check for their associated LineageProcesses.
        
         The maximum number of items in this array is 100.
         If the request contains more than 100 links, it returns the
         `INVALID_ARGUMENT` error.
        
         Format: `projects/{project}/locations/{location}/links/{link}`.
         
        repeated string links = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        A list containing the links.
      • getLinksCount

        int getLinksCount()
         Required. An array of links to check for their associated LineageProcesses.
        
         The maximum number of items in this array is 100.
         If the request contains more than 100 links, it returns the
         `INVALID_ARGUMENT` error.
        
         Format: `projects/{project}/locations/{location}/links/{link}`.
         
        repeated string links = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The count of links.
      • getLinks

        String getLinks​(int index)
         Required. An array of links to check for their associated LineageProcesses.
        
         The maximum number of items in this array is 100.
         If the request contains more than 100 links, it returns the
         `INVALID_ARGUMENT` error.
        
         Format: `projects/{project}/locations/{location}/links/{link}`.
         
        repeated string links = 2 [(.google.api.field_behavior) = REQUIRED];
        Parameters:
        index - The index of the element to return.
        Returns:
        The links at the given index.
      • getLinksBytes

        com.google.protobuf.ByteString getLinksBytes​(int index)
         Required. An array of links to check for their associated LineageProcesses.
        
         The maximum number of items in this array is 100.
         If the request contains more than 100 links, it returns the
         `INVALID_ARGUMENT` error.
        
         Format: `projects/{project}/locations/{location}/links/{link}`.
         
        repeated string links = 2 [(.google.api.field_behavior) = REQUIRED];
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the links at the given index.
      • getPageSize

        int getPageSize()
         The maximum number of processes to return in a single page of the response.
         A page may contain fewer results than this value.
         
        int32 page_size = 3;
        Returns:
        The pageSize.
      • getPageToken

        String getPageToken()
         The page token received from a previous `BatchSearchLinkProcesses` call.
         Use it to get the next page.
        
         When requesting subsequent pages of a response, remember that
         all parameters must match the values you provided
         in the original request.
         
        string page_token = 4;
        Returns:
        The pageToken.
      • getPageTokenBytes

        com.google.protobuf.ByteString getPageTokenBytes()
         The page token received from a previous `BatchSearchLinkProcesses` call.
         Use it to get the next page.
        
         When requesting subsequent pages of a response, remember that
         all parameters must match the values you provided
         in the original request.
         
        string page_token = 4;
        Returns:
        The bytes for pageToken.