Package com.cloudera.cdp.de.model
Class UpdateServiceRequest
- java.lang.Object
-
- com.cloudera.cdp.de.model.UpdateServiceRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:19.284-07:00") public class UpdateServiceRequest extends Object
Request object for UpdateService method.
-
-
Constructor Summary
Constructors Constructor Description UpdateServiceRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getClusterId()
Getter for clusterId.List<String>
getLoadbalancerAllowlist()
Getter for loadbalancerAllowlist.Integer
getMaximumInstances()
Getter for maximumInstances.Integer
getMaximumSpotInstances()
Getter for maximumSpotInstances.Integer
getMinimumInstances()
Getter for minimumInstances.Integer
getMinimumSpotInstances()
Getter for minimumSpotInstances.List<String>
getWhitelistIps()
Getter for whitelistIps.int
hashCode()
void
setClusterId(String clusterId)
Setter for clusterId.void
setLoadbalancerAllowlist(List<String> loadbalancerAllowlist)
Setter for loadbalancerAllowlist.void
setMaximumInstances(Integer maximumInstances)
Setter for maximumInstances.void
setMaximumSpotInstances(Integer maximumSpotInstances)
Setter for maximumSpotInstances.void
setMinimumInstances(Integer minimumInstances)
Setter for minimumInstances.void
setMinimumSpotInstances(Integer minimumSpotInstances)
Setter for minimumSpotInstances.void
setWhitelistIps(List<String> whitelistIps)
Setter for whitelistIps.String
toString()
-
-
-
Method Detail
-
getClusterId
public String getClusterId()
Getter for clusterId. Cluster ID of the service to update.
-
setClusterId
public void setClusterId(String clusterId)
Setter for clusterId. Cluster ID of the service to update.
-
getMinimumInstances
public Integer getMinimumInstances()
Getter for minimumInstances. Minimum number of instances for the CDE service.
-
setMinimumInstances
public void setMinimumInstances(Integer minimumInstances)
Setter for minimumInstances. Minimum number of instances for the CDE service.
-
getMaximumInstances
public Integer getMaximumInstances()
Getter for maximumInstances. Maximum number of instances for the CDE service.
-
setMaximumInstances
public void setMaximumInstances(Integer maximumInstances)
Setter for maximumInstances. Maximum number of instances for the CDE service.
-
getMinimumSpotInstances
public Integer getMinimumSpotInstances()
Getter for minimumSpotInstances. Minimum number of spot instances for the CDE service.
-
setMinimumSpotInstances
public void setMinimumSpotInstances(Integer minimumSpotInstances)
Setter for minimumSpotInstances. Minimum number of spot instances for the CDE service.
-
getMaximumSpotInstances
public Integer getMaximumSpotInstances()
Getter for maximumSpotInstances. Maximum number of spot instances for the CDE service.
-
setMaximumSpotInstances
public void setMaximumSpotInstances(Integer maximumSpotInstances)
Setter for maximumSpotInstances. Maximum number of spot instances for the CDE service.
-
getWhitelistIps
public List<String> getWhitelistIps()
Getter for whitelistIps. List of CIDRs that would be allowed to access kubernetes master API server.
-
setWhitelistIps
public void setWhitelistIps(List<String> whitelistIps)
Setter for whitelistIps. List of CIDRs that would be allowed to access kubernetes master API server.
-
getLoadbalancerAllowlist
public List<String> getLoadbalancerAllowlist()
Getter for loadbalancerAllowlist. List of CIDRs that would be allowed to access the load balancer.
-
setLoadbalancerAllowlist
public void setLoadbalancerAllowlist(List<String> loadbalancerAllowlist)
Setter for loadbalancerAllowlist. List of CIDRs that would be allowed to access the load balancer.
-
-