Package com.cloudera.cdp.datahub.model
Class Recipe
- java.lang.Object
-
- com.cloudera.cdp.datahub.model.Recipe
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:16.679-07:00") public class Recipe extends Object
Information about a recipe.
-
-
Constructor Summary
Constructors Constructor Description Recipe()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getCreatorCrn()
Getter for creatorCrn.String
getCrn()
Getter for crn.String
getDescription()
Getter for description.String
getRecipeContent()
Getter for recipeContent.String
getRecipeName()
Getter for recipeName.String
getType()
Getter for type.int
hashCode()
void
setCreatorCrn(String creatorCrn)
Setter for creatorCrn.void
setCrn(String crn)
Setter for crn.void
setDescription(String description)
Setter for description.void
setRecipeContent(String recipeContent)
Setter for recipeContent.void
setRecipeName(String recipeName)
Setter for recipeName.void
setType(String type)
Setter for type.String
toString()
-
-
-
Method Detail
-
getRecipeName
public String getRecipeName()
Getter for recipeName. The name of the recipe.
-
setRecipeName
public void setRecipeName(String recipeName)
Setter for recipeName. The name of the recipe.
-
getCrn
public String getCrn()
Getter for crn. The CRN of the recipe.
-
setCrn
public void setCrn(String crn)
Setter for crn. The CRN of the recipe.
-
getRecipeContent
public String getRecipeContent()
Getter for recipeContent. The content of the recipe.
-
setRecipeContent
public void setRecipeContent(String recipeContent)
Setter for recipeContent. The content of the recipe.
-
getType
public String getType()
Getter for type. The type of recipe. Supported values are : PRE_CLOUDERA_MANAGER_START, PRE_TERMINATION, POST_CLOUDERA_MANAGER_START, POST_CLUSTER_INSTALL.
-
setType
public void setType(String type)
Setter for type. The type of recipe. Supported values are : PRE_CLOUDERA_MANAGER_START, PRE_TERMINATION, POST_CLOUDERA_MANAGER_START, POST_CLUSTER_INSTALL.
-
getCreatorCrn
public String getCreatorCrn()
Getter for creatorCrn. The CRN of the creator of the recipe.
-
setCreatorCrn
public void setCreatorCrn(String creatorCrn)
Setter for creatorCrn. The CRN of the creator of the recipe.
-
getDescription
public String getDescription()
Getter for description. The description of the recipe.
-
setDescription
public void setDescription(String description)
Setter for description. The description of the recipe.
-
-