Class UpdateSecurityAccessRequest
- java.lang.Object
-
- com.cloudera.cdp.environments.model.UpdateSecurityAccessRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:41.311-08:00") public class UpdateSecurityAccessRequest extends Object
The request object for updating security access of the given environment.
-
-
Constructor Summary
Constructors Constructor Description UpdateSecurityAccessRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getDefaultSecurityGroupId()
Getter for defaultSecurityGroupId.String
getEnvironment()
Getter for environment.String
getGatewayNodeSecurityGroupId()
Getter for gatewayNodeSecurityGroupId.int
hashCode()
void
setDefaultSecurityGroupId(String defaultSecurityGroupId)
Setter for defaultSecurityGroupId.void
setEnvironment(String environment)
Setter for environment.void
setGatewayNodeSecurityGroupId(String gatewayNodeSecurityGroupId)
Setter for gatewayNodeSecurityGroupId.String
toString()
-
-
-
Method Detail
-
getEnvironment
public String getEnvironment()
Getter for environment. The name or the CRN of the environment.
-
setEnvironment
public void setEnvironment(String environment)
Setter for environment. The name or the CRN of the environment.
-
getGatewayNodeSecurityGroupId
public String getGatewayNodeSecurityGroupId()
Getter for gatewayNodeSecurityGroupId. Security group ID where Knox-enabled hosts are placed.
-
setGatewayNodeSecurityGroupId
public void setGatewayNodeSecurityGroupId(String gatewayNodeSecurityGroupId)
Setter for gatewayNodeSecurityGroupId. Security group ID where Knox-enabled hosts are placed.
-
getDefaultSecurityGroupId
public String getDefaultSecurityGroupId()
Getter for defaultSecurityGroupId. Security group ID for non-gateway nodes.
-
setDefaultSecurityGroupId
public void setDefaultSecurityGroupId(String defaultSecurityGroupId)
Setter for defaultSecurityGroupId. Security group ID for non-gateway nodes.
-
-