com.aliyun.edas20170801.models.ListClusterMembersRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edas20170801 Show documentation
Show all versions of edas20170801 Show documentation
Alibaba Cloud Enterprise Distributed Application Service (20170801) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.edas20170801.models;
import com.aliyun.tea.*;
public class ListClusterMembersRequest extends TeaModel {
/**
* The ID of the cluster. You can call the ListCluster operation to query the cluster ID. For more information, see [ListCluster](~~154995~~).
*/
@NameInMap("ClusterId")
public String clusterId;
/**
* The number of the page to return. If you do not specify this parameter, the first page is returned.
*/
@NameInMap("CurrentPage")
public Integer currentPage;
/**
* The number of ECS instances.
*/
@NameInMap("EcsList")
public String ecsList;
/**
* The number of ECS instances to return on each page. If you do not specify this parameter, all ECS instances in the specified cluster are returned on one page.
*/
@NameInMap("PageSize")
public Integer pageSize;
public static ListClusterMembersRequest build(java.util.Map map) throws Exception {
ListClusterMembersRequest self = new ListClusterMembersRequest();
return TeaModel.build(map, self);
}
public ListClusterMembersRequest setClusterId(String clusterId) {
this.clusterId = clusterId;
return this;
}
public String getClusterId() {
return this.clusterId;
}
public ListClusterMembersRequest setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public ListClusterMembersRequest setEcsList(String ecsList) {
this.ecsList = ecsList;
return this;
}
public String getEcsList() {
return this.ecsList;
}
public ListClusterMembersRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}