Package com.cloudera.cdp.ml.model
Class GrantWorkspaceAccessRequest
- java.lang.Object
-
- com.cloudera.cdp.ml.model.GrantWorkspaceAccessRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-06-01T14:27:20.832-07:00") public class GrantWorkspaceAccessRequest extends Object
Request object for the GrantWorkspaceAccess method.
-
-
Constructor Summary
Constructors Constructor Description GrantWorkspaceAccessRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(Object o)
String
getArn()
Deprecated.String
getEnvironmentName()
Getter for environmentName.String
getIdentifier()
Getter for identifier.String
getWorkspaceCrn()
Getter for workspaceCrn.String
getWorkspaceName()
Getter for workspaceName.int
hashCode()
void
setArn(String arn)
Deprecated.void
setEnvironmentName(String environmentName)
Setter for environmentName.void
setIdentifier(String identifier)
Setter for identifier.void
setWorkspaceCrn(String workspaceCrn)
Setter for workspaceCrn.void
setWorkspaceName(String workspaceName)
Setter for workspaceName.String
toString()
-
-
-
Method Detail
-
getArn
@Deprecated public String getArn()
Deprecated.Getter for arn. The aws user ARN to grant access to the corresponding EKS cluster. (Deprecated: Use identifier instead).
-
setArn
@Deprecated public void setArn(String arn)
Deprecated.Setter for arn. The aws user ARN to grant access to the corresponding EKS cluster. (Deprecated: Use identifier instead).
-
getEnvironmentName
public String getEnvironmentName()
Getter for environmentName. The environment that the workspace is a member of.
-
setEnvironmentName
public void setEnvironmentName(String environmentName)
Setter for environmentName. The environment that the workspace is a member of.
-
getWorkspaceName
public String getWorkspaceName()
Getter for workspaceName. The name of the workspace to grant access to.
-
setWorkspaceName
public void setWorkspaceName(String workspaceName)
Setter for workspaceName. The name of the workspace to grant access to.
-
getWorkspaceCrn
public String getWorkspaceCrn()
Getter for workspaceCrn. The CRN of the workspace to grant access to. 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 grant access to. If CRN is specified only the CRN is used for identifying the workspace, environment and name arguments are ignored.
-
getIdentifier
public String getIdentifier()
Getter for identifier. The cloud provider user id which will be granted access to the workspace's Kubernetes cluster.
-
setIdentifier
public void setIdentifier(String identifier)
Setter for identifier. The cloud provider user id which will be granted access to the workspace's Kubernetes cluster.
-
-