Interface ListCrawledUrlsRequestOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    ListCrawledUrlsRequest, ListCrawledUrlsRequest.Builder

    public interface ListCrawledUrlsRequestOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getPageSize()
      The maximum number of CrawledUrls to return, can be limited by server.
      String getPageToken()
      A token identifying a page of results to be returned.
      com.google.protobuf.ByteString getPageTokenBytes()
      A token identifying a page of results to be returned.
      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 parent resource name, which should be a scan run resource name in the
         format
         'projects/{projectId}/scanConfigs/{scanConfigId}/scanRuns/{scanRunId}'.
         
        string parent = 1;
        Returns:
        The parent.
      • getParentBytes

        com.google.protobuf.ByteString getParentBytes()
         Required. The parent resource name, which should be a scan run resource name in the
         format
         'projects/{projectId}/scanConfigs/{scanConfigId}/scanRuns/{scanRunId}'.
         
        string parent = 1;
        Returns:
        The bytes for parent.
      • getPageToken

        String getPageToken()
         A token identifying a page of results to be returned. This should be a
         `next_page_token` value returned from a previous List request.
         If unspecified, the first page of results is returned.
         
        string page_token = 2;
        Returns:
        The pageToken.
      • getPageTokenBytes

        com.google.protobuf.ByteString getPageTokenBytes()
         A token identifying a page of results to be returned. This should be a
         `next_page_token` value returned from a previous List request.
         If unspecified, the first page of results is returned.
         
        string page_token = 2;
        Returns:
        The bytes for pageToken.
      • getPageSize

        int getPageSize()
         The maximum number of CrawledUrls to return, can be limited by server.
         If not specified or not positive, the implementation will select a
         reasonable value.
         
        int32 page_size = 3;
        Returns:
        The pageSize.