Package com.cloudera.cdp.dw.model
Class UpgradeDbcResponse
- java.lang.Object
-
- com.cloudera.cdp.client.BaseResponse
-
- com.cloudera.cdp.client.CdpResponse
-
- com.cloudera.cdp.dw.model.UpgradeDbcResponse
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:51.717-07:00") public class UpgradeDbcResponse extends CdpResponse
Response object of the upgradeDbc call.
-
-
Field Summary
-
Fields inherited from class com.cloudera.cdp.client.CdpResponse
ALTUS_HEADER_REQUESTID, CDP_HEADER_REQUESTID
-
-
Constructor Summary
Constructors Constructor Description UpgradeDbcResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getMessage()
Getter for message.Boolean
getServiceUnhealthy()
Getter for serviceUnhealthy.String
getStatus()
Getter for status.Boolean
getTimedOut()
Getter for timedOut.int
hashCode()
void
setMessage(String message)
Setter for message.void
setServiceUnhealthy(Boolean serviceUnhealthy)
Setter for serviceUnhealthy.void
setStatus(String status)
Setter for status.void
setTimedOut(Boolean timedOut)
Setter for timedOut.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
-
getStatus
public String getStatus()
Getter for status. The upgrade status. Possible values are: Upgrading, Error, Failed.
-
setStatus
public void setStatus(String status)
Setter for status. The upgrade status. Possible values are: Upgrading, Error, Failed.
-
getMessage
public String getMessage()
Getter for message. The Upgrade message.
-
setMessage
public void setMessage(String message)
Setter for message. The Upgrade message.
-
getTimedOut
public Boolean getTimedOut()
Getter for timedOut. True if the upgrade timed out, false or omitted otherwise.
-
setTimedOut
public void setTimedOut(Boolean timedOut)
Setter for timedOut. True if the upgrade timed out, false or omitted otherwise.
-
getServiceUnhealthy
public Boolean getServiceUnhealthy()
Getter for serviceUnhealthy. True, if the service is in unhealthy state, false or omitted otherwise.
-
setServiceUnhealthy
public void setServiceUnhealthy(Boolean serviceUnhealthy)
Setter for serviceUnhealthy. True, if the service is in unhealthy state, false or omitted otherwise.
-
-