All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.edas20170801.models.ListClusterMembersRequest Maven / Gradle / Ivy

Go to download

Alibaba Cloud Enterprise Distributed Application Service (20170801) SDK for Java

There is a newer version: 1.0.15
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy