Package com.cloudera.cdp.dw.model
Class VwDiagnosticDataJob
- java.lang.Object
-
- com.cloudera.cdp.dw.model.VwDiagnosticDataJob
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:51.717-07:00") public class VwDiagnosticDataJob extends Object
Represents a Diagnostic Data Job.
-
-
Constructor Summary
Constructors Constructor Description VwDiagnosticDataJob()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
ZonedDateTime
getEndTime()
Getter for endTime.String
getJobId()
Getter for jobId.Map<String,String>
getLabels()
Getter for labels.ZonedDateTime
getStartTime()
Getter for startTime.String
getStatus()
Getter for status.String
getUrl()
Getter for url.int
hashCode()
void
setEndTime(ZonedDateTime endTime)
Setter for endTime.void
setJobId(String jobId)
Setter for jobId.void
setLabels(Map<String,String> labels)
Setter for labels.void
setStartTime(ZonedDateTime startTime)
Setter for startTime.void
setStatus(String status)
Setter for status.void
setUrl(String url)
Setter for url.String
toString()
-
-
-
Method Detail
-
getJobId
public String getJobId()
Getter for jobId. The unique identifier of the Diagnostic Data Job.
-
setJobId
public void setJobId(String jobId)
Setter for jobId. The unique identifier of the Diagnostic Data Job.
-
getStartTime
public ZonedDateTime getStartTime()
Getter for startTime. The start time of the Diagnostic Data Job.
-
setStartTime
public void setStartTime(ZonedDateTime startTime)
Setter for startTime. The start time of the Diagnostic Data Job.
-
getEndTime
public ZonedDateTime getEndTime()
Getter for endTime. The finish time of the Diagnostic Data Job.
-
setEndTime
public void setEndTime(ZonedDateTime endTime)
Setter for endTime. The finish time of the Diagnostic Data Job.
-
getUrl
public String getUrl()
Getter for url. If the request is for download, this URL points to download location.
-
setUrl
public void setUrl(String url)
Setter for url. If the request is for download, this URL points to download location.
-
getStatus
public String getStatus()
Getter for status. The job status.
-
setStatus
public void setStatus(String status)
Setter for status. The job status.
-
getLabels
public Map<String,String> getLabels()
Getter for labels. Additional key-value pair attributes associated with the Diagnostic Data Job.
-
setLabels
public void setLabels(Map<String,String> labels)
Setter for labels. Additional key-value pair attributes associated with the Diagnostic Data Job.
-
-