Class ProxyStatus
- java.lang.Object
-
- io.fabric8.openshift.api.model.config.v1.ProxyStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ProxyStatusBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ProxyStatus extends Object implements io.fabric8.kubernetes.api.builder.Editable<ProxyStatusBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
ProxyStatus shows current known state of the cluster proxy.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProxyStatus()No args constructor for use in serializationProxyStatus(String httpProxy, String httpsProxy, String noProxy)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProxyStatusBuilderedit()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 hostnames and/or 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 hostnames and/or CIDRs for which the proxy should not be used.ProxyStatusBuildertoBuilder()
-
-
-
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 hostnames and/or CIDRs for which the proxy should not be used.
-
setNoProxy
public void setNoProxy(String noProxy)
noProxy is a comma-separated list of hostnames and/or CIDRs for which the proxy should not be used.
-
edit
public ProxyStatusBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<ProxyStatusBuilder>
-
toBuilder
public ProxyStatusBuilder toBuilder()
-
-