Class FindBlobsOptions

    • Constructor Detail

      • FindBlobsOptions

        public FindBlobsOptions​(String query)
        Parameters:
        query - Filters the results to return only blobs whose tags match the specified expression.
    • Method Detail

      • getQuery

        public String getQuery()
        Returns:
        Filters the results to return only blobs whose tags match the specified expression.
      • getMaxResultsPerPage

        public Integer getMaxResultsPerPage()
        Specifies the maximum number of blobs to return. If the request does not specify maxResultsPerPage or specifies a value greater than 5,000, the server will return up to 5,000 items.
        Returns:
        the number of blobs that will be returned in a single response
      • setMaxResultsPerPage

        public FindBlobsOptions setMaxResultsPerPage​(Integer maxResultsPerPage)
        Specifies the maximum number of blobs to return. If the request does not specify maxResultsPerPage or specifies a value greater than 5,000, the server will return up to 5,000 items.
        Parameters:
        maxResultsPerPage - The number of blobs to returned in a single response
        Returns:
        the updated FindBlobsOptions object
        Throws:
        IllegalArgumentException - If maxResultsPerPage is less than or equal to 0.