Package com.cloudera.cdp.dw.model
Class ListClusterDiagnosticDataJobsRequest
- java.lang.Object
-
- com.cloudera.cdp.dw.model.ListClusterDiagnosticDataJobsRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:17.249-07:00") public class ListClusterDiagnosticDataJobsRequest extends Object
Request object for the listClusterDiagnosticDataJobs method.
-
-
Constructor Summary
Constructors Constructor Description ListClusterDiagnosticDataJobsRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getClusterId()
Getter for clusterId.Integer
getPageSize()
Getter for pageSize.String
getStartingToken()
Getter for startingToken.String
getStatus()
Getter for status.int
hashCode()
void
setClusterId(String clusterId)
Setter for clusterId.void
setPageSize(Integer pageSize)
Setter for pageSize.void
setStartingToken(String startingToken)
Setter for startingToken.void
setStatus(String status)
Setter for status.String
toString()
-
-
-
Method Detail
-
getClusterId
public String getClusterId()
Getter for clusterId. ID of the Cluster.
-
setClusterId
public void setClusterId(String clusterId)
Setter for clusterId. ID of the Cluster.
-
getStatus
public String getStatus()
Getter for status. Filter for job status, only those jobs will be returned which have the given status.
-
setStatus
public void setStatus(String status)
Setter for status. Filter for job status, only those jobs will be returned which have the given status.
-
getPageSize
public Integer getPageSize()
Getter for pageSize. The size of each page.
-
setPageSize
public void setPageSize(Integer pageSize)
Setter for pageSize. The size of each page.
-
getStartingToken
public String getStartingToken()
Getter for startingToken. A token to specify where to start paginating. This is the nextToken from a previously truncated response.
-
setStartingToken
public void setStartingToken(String startingToken)
Setter for startingToken. A token to specify where to start paginating. This is the nextToken from a previously truncated response.
-
-