Package com.cloudera.cdp.dw.model
Class UpdateClusterRequest
- java.lang.Object
-
- com.cloudera.cdp.dw.model.UpdateClusterRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:17.249-07:00") public class UpdateClusterRequest extends Object
Request object for the updateCluster method.
-
-
Constructor Summary
Constructors Constructor Description UpdateClusterRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
UpdateClusterRequestAwsUpdate
getAwsUpdate()
Getter for awsUpdate.UpdateClusterRequestAzureUpdate
getAzureUpdate()
Getter for azureUpdate.String
getClusterId()
Getter for clusterId.String
getDescription()
Getter for description.UpdateClusterRequestObservabilityConfig
getObservabilityConfig()
Getter for observabilityConfig.List<String>
getWhitelistIpCIDRs()
Getter for whitelistIpCIDRs.List<String>
getWhitelistK8sClusterAccessIpCIDRs()
Getter for whitelistK8sClusterAccessIpCIDRs.List<String>
getWhitelistWorkloadAccessIpCIDRs()
Getter for whitelistWorkloadAccessIpCIDRs.int
hashCode()
void
setAwsUpdate(UpdateClusterRequestAwsUpdate awsUpdate)
Setter for awsUpdate.void
setAzureUpdate(UpdateClusterRequestAzureUpdate azureUpdate)
Setter for azureUpdate.void
setClusterId(String clusterId)
Setter for clusterId.void
setDescription(String description)
Setter for description.void
setObservabilityConfig(UpdateClusterRequestObservabilityConfig observabilityConfig)
Setter for observabilityConfig.void
setWhitelistIpCIDRs(List<String> whitelistIpCIDRs)
Setter for whitelistIpCIDRs.void
setWhitelistK8sClusterAccessIpCIDRs(List<String> whitelistK8sClusterAccessIpCIDRs)
Setter for whitelistK8sClusterAccessIpCIDRs.void
setWhitelistWorkloadAccessIpCIDRs(List<String> whitelistWorkloadAccessIpCIDRs)
Setter for whitelistWorkloadAccessIpCIDRs.String
toString()
-
-
-
Method Detail
-
getClusterId
public String getClusterId()
Getter for clusterId. The ID of the cluster to update.
-
setClusterId
public void setClusterId(String clusterId)
Setter for clusterId. The ID of the cluster to update.
-
getDescription
public String getDescription()
Getter for description. Cluster description.
-
setDescription
public void setDescription(String description)
Setter for description. Cluster description.
-
getWhitelistIpCIDRs
public List<String> getWhitelistIpCIDRs()
Getter for whitelistIpCIDRs. List of IP address CIDRs to whitelist. NOTE: CDW is in process of rolling out a new feature to whitelist IP CIDR separately for Kubernetes Clusters and Loadbalancers on CDP Public Cloud. For an existing cluster, if different IP CIDR has been already applied to LoadBalancer and the Kubernetes cluster through the DWX UI, then updating the IP CIDR of such cluster is not supported from CLI. In the upcoming release, the CLI will support this feature. Please make use of UI for the same.
-
setWhitelistIpCIDRs
public void setWhitelistIpCIDRs(List<String> whitelistIpCIDRs)
Setter for whitelistIpCIDRs. List of IP address CIDRs to whitelist. NOTE: CDW is in process of rolling out a new feature to whitelist IP CIDR separately for Kubernetes Clusters and Loadbalancers on CDP Public Cloud. For an existing cluster, if different IP CIDR has been already applied to LoadBalancer and the Kubernetes cluster through the DWX UI, then updating the IP CIDR of such cluster is not supported from CLI. In the upcoming release, the CLI will support this feature. Please make use of UI for the same.
-
getWhitelistK8sClusterAccessIpCIDRs
public List<String> getWhitelistK8sClusterAccessIpCIDRs()
Getter for whitelistK8sClusterAccessIpCIDRs. List of IP address CIDRs to whitelist for kubernetes cluster access.
-
setWhitelistK8sClusterAccessIpCIDRs
public void setWhitelistK8sClusterAccessIpCIDRs(List<String> whitelistK8sClusterAccessIpCIDRs)
Setter for whitelistK8sClusterAccessIpCIDRs. List of IP address CIDRs to whitelist for kubernetes cluster access.
-
getWhitelistWorkloadAccessIpCIDRs
public List<String> getWhitelistWorkloadAccessIpCIDRs()
Getter for whitelistWorkloadAccessIpCIDRs. List of IP address CIDRs to whitelist for workload access.
-
setWhitelistWorkloadAccessIpCIDRs
public void setWhitelistWorkloadAccessIpCIDRs(List<String> whitelistWorkloadAccessIpCIDRs)
Setter for whitelistWorkloadAccessIpCIDRs. List of IP address CIDRs to whitelist for workload access.
-
getAwsUpdate
public UpdateClusterRequestAwsUpdate getAwsUpdate()
Getter for awsUpdate.
-
setAwsUpdate
public void setAwsUpdate(UpdateClusterRequestAwsUpdate awsUpdate)
Setter for awsUpdate.
-
getAzureUpdate
public UpdateClusterRequestAzureUpdate getAzureUpdate()
Getter for azureUpdate.
-
setAzureUpdate
public void setAzureUpdate(UpdateClusterRequestAzureUpdate azureUpdate)
Setter for azureUpdate.
-
getObservabilityConfig
public UpdateClusterRequestObservabilityConfig getObservabilityConfig()
Getter for observabilityConfig.
-
setObservabilityConfig
public void setObservabilityConfig(UpdateClusterRequestObservabilityConfig observabilityConfig)
Setter for observabilityConfig.
-
-