Package io.fabric8.openshift.api.model
Class ProxyConfig
- java.lang.Object
-
- io.fabric8.openshift.api.model.ProxyConfig
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ProxyConfigBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ProxyConfig extends Object implements io.fabric8.kubernetes.api.builder.Editable<ProxyConfigBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
ProxyConfig defines what proxies to use for an operation- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProxyConfig()No args constructor for use in serializationProxyConfig(String httpProxy, String httpsProxy, String noProxy)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProxyConfigBuilderedit()Map<String,Object>getAdditionalProperties()StringgetHttpProxy()httpProxy is a proxy used to reach the git repository over httpStringgetHttpsProxy()httpsProxy is a proxy used to reach the git repository over httpsStringgetNoProxy()noProxy is the list of domains for which the proxy should not be usedvoidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetHttpProxy(String httpProxy)httpProxy is a proxy used to reach the git repository over httpvoidsetHttpsProxy(String httpsProxy)httpsProxy is a proxy used to reach the git repository over httpsvoidsetNoProxy(String noProxy)noProxy is the list of domains for which the proxy should not be usedProxyConfigBuildertoBuilder()
-
-
-
Method Detail
-
getHttpProxy
public String getHttpProxy()
httpProxy is a proxy used to reach the git repository over http
-
setHttpProxy
public void setHttpProxy(String httpProxy)
httpProxy is a proxy used to reach the git repository over http
-
getHttpsProxy
public String getHttpsProxy()
httpsProxy is a proxy used to reach the git repository over https
-
setHttpsProxy
public void setHttpsProxy(String httpsProxy)
httpsProxy is a proxy used to reach the git repository over https
-
getNoProxy
public String getNoProxy()
noProxy is the list of domains for which the proxy should not be used
-
setNoProxy
public void setNoProxy(String noProxy)
noProxy is the list of domains for which the proxy should not be used
-
edit
public ProxyConfigBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<ProxyConfigBuilder>
-
toBuilder
public ProxyConfigBuilder toBuilder()
-
-