Class SetEndpointAccessGatewayRequest
- java.lang.Object
-
- com.cloudera.cdp.environments.model.SetEndpointAccessGatewayRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:41.311-08:00") public class SetEndpointAccessGatewayRequest extends Object
Request object to set endpoint access gateway settings.
-
-
Constructor Summary
Constructors Constructor Description SetEndpointAccessGatewayRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getEndpointAccessGatewayScheme()
Getter for endpointAccessGatewayScheme.List<String>
getEndpointAccessGatewaySubnetIds()
Getter for endpointAccessGatewaySubnetIds.String
getEnvironment()
Getter for environment.int
hashCode()
void
setEndpointAccessGatewayScheme(String endpointAccessGatewayScheme)
Setter for endpointAccessGatewayScheme.void
setEndpointAccessGatewaySubnetIds(List<String> endpointAccessGatewaySubnetIds)
Setter for endpointAccessGatewaySubnetIds.void
setEnvironment(String environment)
Setter for environment.String
toString()
-
-
-
Method Detail
-
getEnvironment
public String getEnvironment()
Getter for environment. The name or CRN of the environment. Empty to get system wide settings.
-
setEnvironment
public void setEnvironment(String environment)
Setter for environment. The name or CRN of the environment. Empty to get system wide settings.
-
getEndpointAccessGatewayScheme
public String getEndpointAccessGatewayScheme()
Getter for endpointAccessGatewayScheme. The scheme for the endpoint gateway. PUBLIC creates an external endpoint that can be accessed over internet. Defaults to PRIVATE which restricts the traffic to be internal to the VPC / Vnet.
-
setEndpointAccessGatewayScheme
public void setEndpointAccessGatewayScheme(String endpointAccessGatewayScheme)
Setter for endpointAccessGatewayScheme. The scheme for the endpoint gateway. PUBLIC creates an external endpoint that can be accessed over internet. Defaults to PRIVATE which restricts the traffic to be internal to the VPC / Vnet.
-
getEndpointAccessGatewaySubnetIds
public List<String> getEndpointAccessGatewaySubnetIds()
Getter for endpointAccessGatewaySubnetIds. The subnets to use for endpoint access gateway.
-
setEndpointAccessGatewaySubnetIds
public void setEndpointAccessGatewaySubnetIds(List<String> endpointAccessGatewaySubnetIds)
Setter for endpointAccessGatewaySubnetIds. The subnets to use for endpoint access gateway.
-
-