Package com.cloudera.cdp.df.model
Class ListDeploymentsResponse
- java.lang.Object
-
- com.cloudera.cdp.client.BaseResponse
-
- com.cloudera.cdp.client.CdpResponse
-
- com.cloudera.cdp.df.model.ListDeploymentsResponse
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:42.514-08:00") public class ListDeploymentsResponse extends CdpResponse
A response from listing deployments
-
-
Field Summary
-
Fields inherited from class com.cloudera.cdp.client.CdpResponse
ALTUS_HEADER_REQUESTID, CDP_HEADER_REQUESTID
-
-
Constructor Summary
Constructors Constructor Description ListDeploymentsResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<DeploymentSummary>
getDeployments()
Getter for deployments.String
getNextToken()
Getter for nextToken.int
hashCode()
void
setDeployments(List<DeploymentSummary> deployments)
Setter for deployments.void
setNextToken(String nextToken)
Setter for nextToken.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
-
getNextToken
public String getNextToken()
Getter for nextToken. The page token for requesting the next page of results.
-
setNextToken
public void setNextToken(String nextToken)
Setter for nextToken. The page token for requesting the next page of results.
-
getDeployments
public List<DeploymentSummary> getDeployments()
Getter for deployments. The listing of deployments in this page
-
setDeployments
public void setDeployments(List<DeploymentSummary> deployments)
Setter for deployments. The listing of deployments in this page
-
-