Class ListOptions

    • Constructor Detail

      • ListOptions

        public ListOptions()
    • Method Detail

      • withDetails

        public ListOptions withDetails()
        Provides detailed results for list operations.
      • limit

        public ListOptions limit​(int limit)
        To reduce load on the service, list operations will return a maximum of 1,000 items at a time. To navigate the collection, the parameters limit and offset can be set in the URI (e.g.?limit=0&offset=0). If an offset is given beyond the end of a list an empty list will be returned.

        Note that list operations never return itemNotFound (404) faults.

        Overrides:
        limit in class PaginationOptions
      • marker

        public ListOptions marker​(String marker)
        The marker parameter is the ID of the last item in the previous list. Items are sorted by create time in descending order. When a create time is not available they are sorted by ID.
        Overrides:
        marker in class PaginationOptions