类 ListStepsRequest


  • public class ListStepsRequest
    extends AbstractBceRequest
    Provides options for listing steps.

    The essential option is cluster ID, and the optional query parameters are marker and max keys.

    • 构造器详细资料

      • ListStepsRequest

        public ListStepsRequest()
    • 方法详细资料

      • getClusterId

        public String getClusterId()
      • setClusterId

        public void setClusterId​(String clusterId)
      • getMarker

        public String getMarker()
      • setMarker

        public void setMarker​(String marker)
      • getMaxKeys

        public int getMaxKeys()
      • setMaxKeys

        public void setMaxKeys​(int maxKeys)
      • withClusterId

        public ListStepsRequest withClusterId​(String clusterId)
        Configure the cluster ID on which the target steps run.
        参数:
        clusterId - The cluster ID.
        返回:
        ListStepsRequest
      • withMarker

        public ListStepsRequest withMarker​(String marker)
        Configure the marker for the query request. The marker marks the starting point for the query.
        参数:
        marker - the marker
        返回:
        ListStepsRequest
      • withMaxKeys

        public ListStepsRequest withMaxKeys​(int maxKeys)
        Configure the max count for each response page. The max keys can not more than 1000, any number exceeding 1000 will be reset to 1000.
        参数:
        maxKeys - The max count for each response page.
        返回:
        ListStepsRequest