Class UpdateProxyConfigRequest
- java.lang.Object
-
- com.cloudera.cdp.environments.model.UpdateProxyConfigRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:41.311-08:00") public class UpdateProxyConfigRequest extends Object
Request object for updating the proxy config of the given environment.
-
-
Constructor Summary
Constructors Constructor Description UpdateProxyConfigRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getEnvironment()
Getter for environment.String
getProxyConfigName()
Getter for proxyConfigName.Boolean
getRemoveProxy()
Getter for removeProxy.int
hashCode()
void
setEnvironment(String environment)
Setter for environment.void
setProxyConfigName(String proxyConfigName)
Setter for proxyConfigName.void
setRemoveProxy(Boolean removeProxy)
Setter for removeProxy.String
toString()
-
-
-
Method Detail
-
getEnvironment
public String getEnvironment()
Getter for environment. The name or CRN of the environment.
-
setEnvironment
public void setEnvironment(String environment)
Setter for environment. The name or CRN of the environment.
-
getProxyConfigName
public String getProxyConfigName()
Getter for proxyConfigName. The name of the new proxy config for the environment. Either this or the remove proxy flag has to be given.
-
setProxyConfigName
public void setProxyConfigName(String proxyConfigName)
Setter for proxyConfigName. The name of the new proxy config for the environment. Either this or the remove proxy flag has to be given.
-
getRemoveProxy
public Boolean getRemoveProxy()
Getter for removeProxy. Flag to indicate that the current proxy config should be removed for the environment. Either this or a proxy config name has to be given.
-
setRemoveProxy
public void setRemoveProxy(Boolean removeProxy)
Setter for removeProxy. Flag to indicate that the current proxy config should be removed for the environment. Either this or a proxy config name has to be given.
-
-