Package com.cloudera.cdp.ml.model
Class ModifyClusterSecurityRequest
- java.lang.Object
-
- com.cloudera.cdp.ml.model.ModifyClusterSecurityRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-06-01T14:27:20.832-07:00") public class ModifyClusterSecurityRequest extends Object
Request object for ModifyClusterSecurity.
-
-
Constructor Summary
Constructors Constructor Description ModifyClusterSecurityRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Boolean
getAllowlistAuthorizedIPRanges()
Getter for allowlistAuthorizedIPRanges.List<String>
getAuthorizedIPRanges()
Getter for authorizedIPRanges.String
getWorkspaceCrn()
Getter for workspaceCrn.int
hashCode()
void
setAllowlistAuthorizedIPRanges(Boolean allowlistAuthorizedIPRanges)
Setter for allowlistAuthorizedIPRanges.void
setAuthorizedIPRanges(List<String> authorizedIPRanges)
Setter for authorizedIPRanges.void
setWorkspaceCrn(String workspaceCrn)
Setter for workspaceCrn.String
toString()
-
-
-
Method Detail
-
getWorkspaceCrn
public String getWorkspaceCrn()
Getter for workspaceCrn. The CRN of the workspace cluster to modify.
-
setWorkspaceCrn
public void setWorkspaceCrn(String workspaceCrn)
Setter for workspaceCrn. The CRN of the workspace cluster to modify.
-
getAllowlistAuthorizedIPRanges
public Boolean getAllowlistAuthorizedIPRanges()
Getter for allowlistAuthorizedIPRanges. Whether to allow only authorized IP ranges given or all public IPs.
-
setAllowlistAuthorizedIPRanges
public void setAllowlistAuthorizedIPRanges(Boolean allowlistAuthorizedIPRanges)
Setter for allowlistAuthorizedIPRanges. Whether to allow only authorized IP ranges given or all public IPs.
-
getAuthorizedIPRanges
public List<String> getAuthorizedIPRanges()
Getter for authorizedIPRanges. The allowlist of CIDR blocks which can access the API server.
-
setAuthorizedIPRanges
public void setAuthorizedIPRanges(List<String> authorizedIPRanges)
Setter for authorizedIPRanges. The allowlist of CIDR blocks which can access the API server.
-
-