Class ProxySpec
- java.lang.Object
-
- io.fabric8.openshift.api.model.config.v1.ProxySpec
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ProxySpecBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ProxySpec extends Object implements io.fabric8.kubernetes.api.builder.Editable<ProxySpecBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
ProxySpec contains cluster proxy creation configuration.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProxySpecBuilderedit()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 and/or IPs for which the proxy should not be used.List<String>getReadinessEndpoints()readinessEndpoints is a list of endpoints used to verify readiness of the proxy.ConfigMapNameReferencegetTrustedCA()ProxySpec contains cluster proxy creation configuration.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 and/or IPs for which the proxy should not be used.voidsetReadinessEndpoints(List<String> readinessEndpoints)readinessEndpoints is a list of endpoints used to verify readiness of the proxy.voidsetTrustedCA(ConfigMapNameReference trustedCA)ProxySpec contains cluster proxy creation configuration.ProxySpecBuildertoBuilder()
-
-
-
Method Detail
-
getHttpProxy
public String getHttpProxy()
httpProxy is the URL of the proxy for HTTP requests. Empty means unset and will not result in an env var.
-
setHttpProxy
public void setHttpProxy(String httpProxy)
httpProxy is the URL of the proxy for HTTP requests. Empty means unset and will not result in an env var.
-
getHttpsProxy
public String getHttpsProxy()
httpsProxy is the URL of the proxy for HTTPS requests. Empty means unset and will not result in an env var.
-
setHttpsProxy
public void setHttpsProxy(String httpsProxy)
httpsProxy is the URL of the proxy for HTTPS requests. Empty means unset and will not result in an env var.
-
getNoProxy
public String getNoProxy()
noProxy is a comma-separated list of hostnames and/or CIDRs and/or IPs for which the proxy should not be used. Empty means unset and will not result in an env var.
-
setNoProxy
public void setNoProxy(String noProxy)
noProxy is a comma-separated list of hostnames and/or CIDRs and/or IPs for which the proxy should not be used. Empty means unset and will not result in an env var.
-
getReadinessEndpoints
public List<String> getReadinessEndpoints()
readinessEndpoints is a list of endpoints used to verify readiness of the proxy.
-
setReadinessEndpoints
public void setReadinessEndpoints(List<String> readinessEndpoints)
readinessEndpoints is a list of endpoints used to verify readiness of the proxy.
-
getTrustedCA
public ConfigMapNameReference getTrustedCA()
ProxySpec contains cluster proxy creation configuration.
-
setTrustedCA
public void setTrustedCA(ConfigMapNameReference trustedCA)
ProxySpec contains cluster proxy creation configuration.
-
edit
public ProxySpecBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<ProxySpecBuilder>
-
toBuilder
public ProxySpecBuilder toBuilder()
-
-