Package com.cloudera.cdp.datahub.model
Class ImageRequest
- java.lang.Object
-
- com.cloudera.cdp.datahub.model.ImageRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:50.892-07:00") public class ImageRequest extends Object
The details of the image used for cluster instances.
-
-
Constructor Summary
Constructors Constructor Description ImageRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getCatalogName()
Getter for catalogName.String
getId()
Getter for id.String
getOs()
Getter for os.int
hashCode()
void
setCatalogName(String catalogName)
Setter for catalogName.void
setId(String id)
Setter for id.void
setOs(String os)
Setter for os.String
toString()
-
-
-
Method Detail
-
getId
public String getId()
Getter for id. The ID of the image used for cluster instances. This is 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 generated by the cloud provider to uniquely identify the image.
-
getCatalogName
public String getCatalogName()
Getter for catalogName. The image catalog name.
-
setCatalogName
public void setCatalogName(String catalogName)
Setter for catalogName. The image catalog name.
-
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.
-
-