Package com.cloudera.cdp.ml.model
Class DeleteWorkspaceRequest
- java.lang.Object
-
- com.cloudera.cdp.ml.model.DeleteWorkspaceRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:17.886-07:00") public class DeleteWorkspaceRequest extends Object
Request object for the DeleteWorkspace method.
-
-
Constructor Summary
Constructors Constructor Description DeleteWorkspaceRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getEnvironmentName()
Getter for environmentName.Boolean
getForce()
Getter for force.Boolean
getRemoveStorage()
Getter for removeStorage.String
getWorkspaceCrn()
Getter for workspaceCrn.String
getWorkspaceName()
Getter for workspaceName.int
hashCode()
void
setEnvironmentName(String environmentName)
Setter for environmentName.void
setForce(Boolean force)
Setter for force.void
setRemoveStorage(Boolean removeStorage)
Setter for removeStorage.void
setWorkspaceCrn(String workspaceCrn)
Setter for workspaceCrn.void
setWorkspaceName(String workspaceName)
Setter for workspaceName.String
toString()
-
-
-
Method Detail
-
getForce
public Boolean getForce()
Getter for force. Force delete a workspace even if errors occur during deletion. Force delete removes the guarantee that resources in your cloud account will be cleaned up.
-
setForce
public void setForce(Boolean force)
Setter for force. Force delete a workspace even if errors occur during deletion. Force delete removes the guarantee that resources in your cloud account will be cleaned up.
-
getRemoveStorage
public Boolean getRemoveStorage()
Getter for removeStorage. The remove storage flag indicates weather to keep the backing workspace filesystem storage or remove it during delete.
-
setRemoveStorage
public void setRemoveStorage(Boolean removeStorage)
Setter for removeStorage. The remove storage flag indicates weather to keep the backing workspace filesystem storage or remove it during delete.
-
getEnvironmentName
public String getEnvironmentName()
Getter for environmentName. The environment for the workspace to delete.
-
setEnvironmentName
public void setEnvironmentName(String environmentName)
Setter for environmentName. The environment for the workspace to delete.
-
getWorkspaceName
public String getWorkspaceName()
Getter for workspaceName. The name of the workspace to delete.
-
setWorkspaceName
public void setWorkspaceName(String workspaceName)
Setter for workspaceName. The name of the workspace to delete.
-
getWorkspaceCrn
public String getWorkspaceCrn()
Getter for workspaceCrn. The CRN of the workspace to delete. If CRN is specified only the CRN is used for identifying the workspace, environment and name arguments are ignored.
-
setWorkspaceCrn
public void setWorkspaceCrn(String workspaceCrn)
Setter for workspaceCrn. The CRN of the workspace to delete. If CRN is specified only the CRN is used for identifying the workspace, environment and name arguments are ignored.
-
-