Package com.cloudera.cdp.datahub.model
Class ReplaceRecipesResponse
- java.lang.Object
-
- com.cloudera.cdp.client.BaseResponse
-
- com.cloudera.cdp.client.CdpResponse
-
- com.cloudera.cdp.datahub.model.ReplaceRecipesResponse
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-06-01T14:27:19.310-07:00") public class ReplaceRecipesResponse extends CdpResponse
The response for replacing recipes.
-
-
Field Summary
-
Fields inherited from class com.cloudera.cdp.client.CdpResponse
ALTUS_HEADER_REQUESTID, CDP_HEADER_REQUESTID
-
-
Constructor Summary
Constructors Constructor Description ReplaceRecipesResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<InstanceGroupRecipeResponse>
getAttachedRecipes()
Getter for attachedRecipes.List<InstanceGroupRecipeResponse>
getDetachedRecipes()
Getter for detachedRecipes.int
hashCode()
void
setAttachedRecipes(List<InstanceGroupRecipeResponse> attachedRecipes)
Setter for attachedRecipes.void
setDetachedRecipes(List<InstanceGroupRecipeResponse> detachedRecipes)
Setter for detachedRecipes.String
toString()
-
Methods inherited from class com.cloudera.cdp.client.CdpResponse
getRequestId
-
Methods inherited from class com.cloudera.cdp.client.BaseResponse
getHttpCode, getResponseHeaders
-
-
-
-
Method Detail
-
getAttachedRecipes
public List<InstanceGroupRecipeResponse> getAttachedRecipes()
Getter for attachedRecipes. The list of recipes, which will be attached to the cluster.
-
setAttachedRecipes
public void setAttachedRecipes(List<InstanceGroupRecipeResponse> attachedRecipes)
Setter for attachedRecipes. The list of recipes, which will be attached to the cluster.
-
getDetachedRecipes
public List<InstanceGroupRecipeResponse> getDetachedRecipes()
Getter for detachedRecipes. The list of recipes, which will be detached from the cluster.
-
setDetachedRecipes
public void setDetachedRecipes(List<InstanceGroupRecipeResponse> detachedRecipes)
Setter for detachedRecipes. The list of recipes, which will be detached from the cluster.
-
-