Class Proxy
- java.lang.Object
-
- io.fabric8.openshift.api.model.installer.v1.Proxy
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ProxyBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class Proxy extends Object implements io.fabric8.kubernetes.api.builder.Editable<ProxyBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
Proxy defines the proxy settings for the cluster. At least one of HTTPProxy or HTTPSProxy is required.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProxyBuilderedit()Map<String,Object>getAdditionalProperties()StringgetHttpProxy()HTTPProxy is the URL of the proxy for HTTP requests.StringgetHttpsProxy()HTTPSProxy is the URL of the proxy for HTTPS requests.StringgetNoProxy()NoProxy is a comma-separated list of domains and CIDRs for which the proxy should not be used.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetHttpProxy(String httpProxy)HTTPProxy is the URL of the proxy for HTTP requests.voidsetHttpsProxy(String httpsProxy)HTTPSProxy is the URL of the proxy for HTTPS requests.voidsetNoProxy(String noProxy)NoProxy is a comma-separated list of domains and CIDRs for which the proxy should not be used.ProxyBuildertoBuilder()
-
-
-
Method Detail
-
getHttpProxy
public String getHttpProxy()
HTTPProxy is the URL of the proxy for HTTP requests.
-
setHttpProxy
public void setHttpProxy(String httpProxy)
HTTPProxy is the URL of the proxy for HTTP requests.
-
getHttpsProxy
public String getHttpsProxy()
HTTPSProxy is the URL of the proxy for HTTPS requests.
-
setHttpsProxy
public void setHttpsProxy(String httpsProxy)
HTTPSProxy is the URL of the proxy for HTTPS requests.
-
getNoProxy
public String getNoProxy()
NoProxy is a comma-separated list of domains and CIDRs for which the proxy should not be used.
-
setNoProxy
public void setNoProxy(String noProxy)
NoProxy is a comma-separated list of domains and CIDRs for which the proxy should not be used.
-
edit
public ProxyBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<ProxyBuilder>
-
toBuilder
public ProxyBuilder toBuilder()
-
-