Class ProxyConfig
- java.lang.Object
-
- com.cloudera.cdp.environments.model.ProxyConfig
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-27T13:27:53.061-07:00") public class ProxyConfig extends Object
A proxy config object.
-
-
Constructor Summary
Constructors Constructor Description ProxyConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getCrn()
Getter for crn.String
getDescription()
Getter for description.String
getHost()
Getter for host.String
getNoProxyHosts()
Getter for noProxyHosts.String
getPassword()
Getter for password.Integer
getPort()
Getter for port.String
getProtocol()
Getter for protocol.String
getProxyConfigName()
Getter for proxyConfigName.String
getUser()
Getter for user.int
hashCode()
void
setCrn(String crn)
Setter for crn.void
setDescription(String description)
Setter for description.void
setHost(String host)
Setter for host.void
setNoProxyHosts(String noProxyHosts)
Setter for noProxyHosts.void
setPassword(String password)
Setter for password.void
setPort(Integer port)
Setter for port.void
setProtocol(String protocol)
Setter for protocol.void
setProxyConfigName(String proxyConfigName)
Setter for proxyConfigName.void
setUser(String user)
Setter for user.String
toString()
-
-
-
Method Detail
-
getProxyConfigName
public String getProxyConfigName()
Getter for proxyConfigName. The name of the proxy config.
-
setProxyConfigName
public void setProxyConfigName(String proxyConfigName)
Setter for proxyConfigName. The name of the proxy config.
-
getCrn
public String getCrn()
Getter for crn. The CRN of the proxy config.
-
setCrn
public void setCrn(String crn)
Setter for crn. The CRN of the proxy config.
-
getProtocol
public String getProtocol()
Getter for protocol. The protocol.
-
setProtocol
public void setProtocol(String protocol)
Setter for protocol. The protocol.
-
getHost
public String getHost()
Getter for host. The proxy host.
-
setHost
public void setHost(String host)
Setter for host. The proxy host.
-
getPort
public Integer getPort()
Getter for port. The proxy port.
-
setPort
public void setPort(Integer port)
Setter for port. The proxy port.
-
getDescription
public String getDescription()
Getter for description. A description for the proxy config.
-
setDescription
public void setDescription(String description)
Setter for description. A description for the proxy config.
-
getNoProxyHosts
public String getNoProxyHosts()
Getter for noProxyHosts. Comma-separated list of 'CIDR', '[.]host[:port]' (can be a subdomain as well) and 'IP[:port]' entries that should not be proxied. Wildcards are not accepted. For example .cloudera.com,192.168.1.1
-
setNoProxyHosts
public void setNoProxyHosts(String noProxyHosts)
Setter for noProxyHosts. Comma-separated list of 'CIDR', '[.]host[:port]' (can be a subdomain as well) and 'IP[:port]' entries that should not be proxied. Wildcards are not accepted. For example .cloudera.com,192.168.1.1
-
getUser
public String getUser()
Getter for user. The proxy user.
-
setUser
public void setUser(String user)
Setter for user. The proxy user.
-
getPassword
public String getPassword()
Getter for password. The proxy password.
-
setPassword
public void setPassword(String password)
Setter for password. The proxy password.
-
-