Class UpdateSubnetRequest
- java.lang.Object
-
- com.cloudera.cdp.environments.model.UpdateSubnetRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:41.311-08:00") public class UpdateSubnetRequest extends Object
The request for updating subnets of the given environment.
-
-
Constructor Summary
Constructors Constructor Description UpdateSubnetRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<String>
getEndpointAccessGatewaySubnetIds()
Getter for endpointAccessGatewaySubnetIds.String
getEnvironment()
Getter for environment.List<String>
getSubnetIds()
Getter for subnetIds.int
hashCode()
void
setEndpointAccessGatewaySubnetIds(List<String> endpointAccessGatewaySubnetIds)
Setter for endpointAccessGatewaySubnetIds.void
setEnvironment(String environment)
Setter for environment.void
setSubnetIds(List<String> subnetIds)
Setter for subnetIds.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.
-
getSubnetIds
public List<String> getSubnetIds()
Getter for subnetIds. The selected subnets to update the given environment to.
-
setSubnetIds
public void setSubnetIds(List<String> subnetIds)
Setter for subnetIds. The selected subnets to update the given environment to.
-
getEndpointAccessGatewaySubnetIds
public List<String> getEndpointAccessGatewaySubnetIds()
Getter for endpointAccessGatewaySubnetIds. The selected subnets to update for the given environment's endpoint access gateway.
-
setEndpointAccessGatewaySubnetIds
public void setEndpointAccessGatewaySubnetIds(List<String> endpointAccessGatewaySubnetIds)
Setter for endpointAccessGatewaySubnetIds. The selected subnets to update for the given environment's endpoint access gateway.
-
-