Package com.cloudera.cdp.compute.model
Class Chart
- java.lang.Object
-
- com.cloudera.cdp.compute.model.Chart
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:20.312-07:00") public class Chart extends Object
Chart structure.
-
-
Constructor Summary
Constructors Constructor Description Chart()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getApplicationVersion()
Getter for applicationVersion.String
getDeploymentVersion()
Getter for deploymentVersion.String
getDescription()
Getter for description.String
getName()
Getter for name.String
getValues()
Getter for values.int
hashCode()
void
setApplicationVersion(String applicationVersion)
Setter for applicationVersion.void
setDeploymentVersion(String deploymentVersion)
Setter for deploymentVersion.void
setDescription(String description)
Setter for description.void
setName(String name)
Setter for name.void
setValues(String values)
Setter for values.String
toString()
-
-
-
Method Detail
-
getApplicationVersion
public String getApplicationVersion()
Getter for applicationVersion. The version (usually of the images) of the components being deployed.
-
setApplicationVersion
public void setApplicationVersion(String applicationVersion)
Setter for applicationVersion. The version (usually of the images) of the components being deployed.
-
getDeploymentVersion
public String getDeploymentVersion()
Getter for deploymentVersion. The version of this chart (which is not the version of the components being deployed).
-
setDeploymentVersion
public void setDeploymentVersion(String deploymentVersion)
Setter for deploymentVersion. The version of this chart (which is not the version of the components being deployed).
-
getDescription
public String getDescription()
Getter for description. The chart description.
-
setDescription
public void setDescription(String description)
Setter for description. The chart description.
-
getName
public String getName()
Getter for name. The chart name.
-
setName
public void setName(String name)
Setter for name. The chart name.
-
getValues
public String getValues()
Getter for values. Escaped JSON for values.yaml of that chart.
-
setValues
public void setValues(String values)
Setter for values. Escaped JSON for values.yaml of that chart.
-
-