类 ListResponse

    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      boolean getIsTruncated()
      Returning false to indicate that there is not more result in the next page, otherwise returning true meaning there is more result in next page.
      String getMarker()
      Returning the optional parameter marker specified in the original request to specify where in the results to begin listing.
      Integer getMaxKeys()
      Returning the optional parameter in the original request to specifies the max number of list result to return .
      String getNextMarker()
      Returning the next marker to list next page result to list begin,if there is no more result in the next page, this field it will not appear.
      void setIsTruncated​(boolean isTruncated)
      Setting the boolean value to indicate that there is not more result in the next page.
      void setMarker​(String marker)
      Setting the optional parameter marker specified in the original request to specify where in the results to begin listing.
      void setMaxKeys​(Integer maxKeys)
      Setting the optional parameter in the original request to specifies the max number of list result to return .
      void setNextMarker​(String nextMarker)
      Setting the next marker to list next page result to list begin.
    • 构造器详细资料

      • ListResponse

        public ListResponse()
    • 方法详细资料

      • getMarker

        public String getMarker()
        Returning the optional parameter marker specified in the original request to specify where in the results to begin listing.
        返回:
        The optional parameter marker specified in the original request to specify where in the results to begin listing.
      • setMarker

        public void setMarker​(String marker)
        Setting the optional parameter marker specified in the original request to specify where in the results to begin listing.
        参数:
        marker - The optional parameter marker specified in the original request to specify where in the results to begin listing.
      • getIsTruncated

        public boolean getIsTruncated()
        Returning false to indicate that there is not more result in the next page, otherwise returning true meaning there is more result in next page.
        返回:
        Returning false to indicate that there is not more result in the next page, otherwise returning true meaning there is more result in next page.
      • setIsTruncated

        public void setIsTruncated​(boolean isTruncated)
        Setting the boolean value to indicate that there is not more result in the next page. Setting false to indicate that there is not more result in the next page, Setting true meaning there is more result in next page.
        参数:
        isTruncated - The boolean value to indicate that there is not more result in the next page.
      • getNextMarker

        public String getNextMarker()
        Returning the next marker to list next page result to list begin,if there is no more result in the next page, this field it will not appear.
        返回:
        The next marker to list next page result to list begin.
      • setNextMarker

        public void setNextMarker​(String nextMarker)
        Setting the next marker to list next page result to list begin.
        参数:
        nextMarker - The next marker to list next page result to list begin.
      • getMaxKeys

        public Integer getMaxKeys()
        Returning the optional parameter in the original request to specifies the max number of list result to return .
        返回:
        The optional parameter in the original request to specifies the max number of list result to return .
      • setMaxKeys

        public void setMaxKeys​(Integer maxKeys)
        Setting the optional parameter in the original request to specifies the max number of list result to return .
        参数:
        maxKeys - The optional parameter in the original request to specifies the max number of list result to return .