Package com.cloudera.cdp.compute.model
Class ListClustersResponse
- java.lang.Object
-
- com.cloudera.cdp.client.BaseResponse
-
- com.cloudera.cdp.client.CdpResponse
-
- com.cloudera.cdp.compute.model.ListClustersResponse
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:20.312-07:00") public class ListClustersResponse extends CdpResponse
List clusters response.
-
-
Field Summary
-
Fields inherited from class com.cloudera.cdp.client.CdpResponse
ALTUS_HEADER_REQUESTID, CDP_HEADER_REQUESTID
-
-
Constructor Summary
Constructors Constructor Description ListClustersResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<ListClusterItem>
getClusters()
Getter for clusters.String
getNextToken()
Getter for nextToken.Integer
getTotalClusters()
Getter for totalClusters.Integer
getTotalPages()
Getter for totalPages.int
hashCode()
void
setClusters(List<ListClusterItem> clusters)
Setter for clusters.void
setNextToken(String nextToken)
Setter for nextToken.void
setTotalClusters(Integer totalClusters)
Setter for totalClusters.void
setTotalPages(Integer totalPages)
Setter for totalPages.String
toString()
-
Methods inherited from class com.cloudera.cdp.client.CdpResponse
getRequestId
-
Methods inherited from class com.cloudera.cdp.client.BaseResponse
getHttpCode, getResponseHeaders
-
-
-
-
Method Detail
-
getClusters
public List<ListClusterItem> getClusters()
Getter for clusters. Array of CDP compute clusters.
-
setClusters
public void setClusters(List<ListClusterItem> clusters)
Setter for clusters. Array of CDP compute clusters.
-
getNextToken
public String getNextToken()
Getter for nextToken. The token to use when requesting the next set of results. If not present, there are no additional results.
-
setNextToken
public void setNextToken(String nextToken)
Setter for nextToken. The token to use when requesting the next set of results. If not present, there are no additional results.
-
getTotalClusters
public Integer getTotalClusters()
Getter for totalClusters. Total number of clusters.
-
setTotalClusters
public void setTotalClusters(Integer totalClusters)
Setter for totalClusters. Total number of clusters.
-
getTotalPages
public Integer getTotalPages()
Getter for totalPages. Total number of pages.
-
setTotalPages
public void setTotalPages(Integer totalPages)
Setter for totalPages. Total number of pages.
-
-