c
com.coralogix.zio.k8s.model.networking.v1
HTTPIngressRuleValue
Companion object HTTPIngressRuleValue
case class HTTPIngressRuleValue(paths: Vector[HTTPIngressPath]) extends Product with Serializable
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 '#'.
- paths
A collection of paths that map requests to backends.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- HTTPIngressRuleValue
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
HTTPIngressRuleValue(paths: Vector[HTTPIngressPath])
- paths
A collection of paths that map requests to backends.
Value Members
-
def
getPaths: IO[K8sFailure, Vector[HTTPIngressPath]]
A collection of paths that map requests to backends.
A collection of paths that map requests to backends.
This effect always succeeds, it is safe to use the field paths directly.
- val paths: Vector[HTTPIngressPath]