Class HTTPIngressRuleValue
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.networking.v1.HTTPIngressRuleValue
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<HTTPIngressRuleValueBuilder>
,io.fabric8.kubernetes.api.model.KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class HTTPIngressRuleValue extends Object implements io.fabric8.kubernetes.api.builder.Editable<HTTPIngressRuleValueBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HTTPIngressRuleValue()
No args constructor for use in serializationHTTPIngressRuleValue(List<HTTPIngressPath> paths)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HTTPIngressRuleValueBuilder
edit()
Map<String,Object>
getAdditionalProperties()
List<HTTPIngressPath>
getPaths()
paths is a collection of paths that map requests to backends.void
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setPaths(List<HTTPIngressPath> paths)
paths is a collection of paths that map requests to backends.HTTPIngressRuleValueBuilder
toBuilder()
-
-
-
Constructor Detail
-
HTTPIngressRuleValue
public HTTPIngressRuleValue()
No args constructor for use in serialization
-
HTTPIngressRuleValue
public HTTPIngressRuleValue(List<HTTPIngressPath> paths)
-
-
Method Detail
-
getPaths
public List<HTTPIngressPath> getPaths()
paths is a collection of paths that map requests to backends.
-
setPaths
public void setPaths(List<HTTPIngressPath> paths)
paths is a collection of paths that map requests to backends.
-
edit
public HTTPIngressRuleValueBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<HTTPIngressRuleValueBuilder>
-
toBuilder
public HTTPIngressRuleValueBuilder toBuilder()
-
-