Package com.cloudera.cdp.ml.model
Class HealthInfo
- java.lang.Object
-
- com.cloudera.cdp.ml.model.HealthInfo
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:17.886-07:00") public class HealthInfo extends Object
Healthinfo object contains the health information of a resource.
-
-
Constructor Summary
Constructors Constructor Description HealthInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<String>
getDetails()
Getter for details.Boolean
getIsHealthy()
Getter for isHealthy.String
getMessage()
Getter for message.String
getResourceName()
Getter for resourceName.ZonedDateTime
getUpdatedAt()
Getter for updatedAt.int
hashCode()
void
setDetails(List<String> details)
Setter for details.void
setIsHealthy(Boolean isHealthy)
Setter for isHealthy.void
setMessage(String message)
Setter for message.void
setResourceName(String resourceName)
Setter for resourceName.void
setUpdatedAt(ZonedDateTime updatedAt)
Setter for updatedAt.String
toString()
-
-
-
Method Detail
-
getResourceName
public String getResourceName()
Getter for resourceName. The resource name being checked.
-
setResourceName
public void setResourceName(String resourceName)
Setter for resourceName. The resource name being checked.
-
getIsHealthy
public Boolean getIsHealthy()
Getter for isHealthy. The boolean that indicates the health status.
-
setIsHealthy
public void setIsHealthy(Boolean isHealthy)
Setter for isHealthy. The boolean that indicates the health status.
-
getUpdatedAt
public ZonedDateTime getUpdatedAt()
Getter for updatedAt. The timestamp for the heartbeat.
-
setUpdatedAt
public void setUpdatedAt(ZonedDateTime updatedAt)
Setter for updatedAt. The timestamp for the heartbeat.
-
getMessage
public String getMessage()
Getter for message. The message to show for the health info.
-
setMessage
public void setMessage(String message)
Setter for message. The message to show for the health info.
-
setDetails
public void setDetails(List<String> details)
Setter for details. The detail of the health info.
-
-