Package com.cloudera.cdp.dw.model
Class AwsOptionsResponse
- java.lang.Object
-
- com.cloudera.cdp.client.BaseResponse
-
- com.cloudera.cdp.client.CdpResponse
-
- com.cloudera.cdp.dw.model.AwsOptionsResponse
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:17.249-07:00") public class AwsOptionsResponse extends CdpResponse
Response object of the cluster AWS settings.
-
-
Field Summary
-
Fields inherited from class com.cloudera.cdp.client.CdpResponse
ALTUS_HEADER_REQUESTID, CDP_HEADER_REQUESTID
-
-
Constructor Summary
Constructors Constructor Description AwsOptionsResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<String>
getAvailabilityZones()
Getter for availabilityZones.String
getCustomAmiId()
Getter for customAmiId.List<String>
getLbSubnetIds()
Getter for lbSubnetIds.Boolean
getReducedPermissionMode()
Getter for reducedPermissionMode.List<String>
getSubnetIds()
Getter for subnetIds.List<String>
getWorkerSubnetIds()
Getter for workerSubnetIds.int
hashCode()
void
setAvailabilityZones(List<String> availabilityZones)
Setter for availabilityZones.void
setCustomAmiId(String customAmiId)
Setter for customAmiId.void
setLbSubnetIds(List<String> lbSubnetIds)
Setter for lbSubnetIds.void
setReducedPermissionMode(Boolean reducedPermissionMode)
Setter for reducedPermissionMode.void
setSubnetIds(List<String> subnetIds)
Setter for subnetIds.void
setWorkerSubnetIds(List<String> workerSubnetIds)
Setter for workerSubnetIds.String
toString()
-
Methods inherited from class com.cloudera.cdp.client.CdpResponse
getRequestId
-
Methods inherited from class com.cloudera.cdp.client.BaseResponse
getHttpCode, getResponseHeaders
-
-
-
-
Method Detail
-
getSubnetIds
public List<String> getSubnetIds()
Getter for subnetIds. IDs of AWS subnets where the cluster has been deployed.
-
setSubnetIds
public void setSubnetIds(List<String> subnetIds)
Setter for subnetIds. IDs of AWS subnets where the cluster has been deployed.
-
getWorkerSubnetIds
public List<String> getWorkerSubnetIds()
Getter for workerSubnetIds. IDs of AWS subnets where the cluster worker nodes should be deployed.
-
setWorkerSubnetIds
public void setWorkerSubnetIds(List<String> workerSubnetIds)
Setter for workerSubnetIds. IDs of AWS subnets where the cluster worker nodes should be deployed.
-
getLbSubnetIds
public List<String> getLbSubnetIds()
Getter for lbSubnetIds. IDs of AWS subnets where the cluster load balancer should be deployed.
-
setLbSubnetIds
public void setLbSubnetIds(List<String> lbSubnetIds)
Setter for lbSubnetIds. IDs of AWS subnets where the cluster load balancer should be deployed.
-
getAvailabilityZones
public List<String> getAvailabilityZones()
Getter for availabilityZones. List of availability zones that the cluster is restricted to use.
-
setAvailabilityZones
public void setAvailabilityZones(List<String> availabilityZones)
Setter for availabilityZones. List of availability zones that the cluster is restricted to use.
-
getCustomAmiId
public String getCustomAmiId()
Getter for customAmiId. Id of the Custom Amazon Machine Image
-
setCustomAmiId
public void setCustomAmiId(String customAmiId)
Setter for customAmiId. Id of the Custom Amazon Machine Image
-
getReducedPermissionMode
public Boolean getReducedPermissionMode()
Getter for reducedPermissionMode. Denotes whether the Reduced Permission mode is enabled.
-
setReducedPermissionMode
public void setReducedPermissionMode(Boolean reducedPermissionMode)
Setter for reducedPermissionMode. Denotes whether the Reduced Permission mode is enabled.
-
-