Package com.cloudera.cdp.datahub.model
Class ImageDetails
- java.lang.Object
-
- com.cloudera.cdp.datahub.model.ImageDetails
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:16.679-07:00") public class ImageDetails extends Object
The details of the image used for cluster instances.
-
-
Constructor Summary
Constructors Constructor Description ImageDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getCatalogName()
Getter for catalogName.String
getCatalogUrl()
Getter for catalogUrl.String
getId()
Getter for id.String
getName()
Getter for name.String
getOs()
Getter for os.int
hashCode()
void
setCatalogName(String catalogName)
Setter for catalogName.void
setCatalogUrl(String catalogUrl)
Setter for catalogUrl.void
setId(String id)
Setter for id.void
setName(String name)
Setter for name.void
setOs(String os)
Setter for os.String
toString()
-
-
-
Method Detail
-
getName
public String getName()
Getter for name. The name of the image used for cluster instances.
-
setName
public void setName(String name)
Setter for name. The name of the image used for cluster instances.
-
getId
public String getId()
Getter for id. The ID of the image used for cluster instances. This is internally generated by the cloud provider to uniquely identify the image.
-
setId
public void setId(String id)
Setter for id. The ID of the image used for cluster instances. This is internally generated by the cloud provider to uniquely identify the image.
-
getOs
public String getOs()
Getter for os. The OS of the image used for cluster instances.
-
setOs
public void setOs(String os)
Setter for os. The OS of the image used for cluster instances.
-
getCatalogUrl
public String getCatalogUrl()
Getter for catalogUrl. The image catalog URL.
-
setCatalogUrl
public void setCatalogUrl(String catalogUrl)
Setter for catalogUrl. The image catalog URL.
-
getCatalogName
public String getCatalogName()
Getter for catalogName. The image catalog name.
-
setCatalogName
public void setCatalogName(String catalogName)
Setter for catalogName. The image catalog name.
-
-