HTTPIngressPath

io.k8s.api.networking.v1.HTTPIngressPath
See theHTTPIngressPath companion object
final case class HTTPIngressPath(backend: IngressBackend, pathType: String, path: Option[String])

HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.

Attributes

Companion
object
Source
HTTPIngressPath.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

transforms backend to result of function

transforms backend to result of function

Attributes

Source
HTTPIngressPath.scala
def mapPath(f: String => String): HTTPIngressPath

if path has a value, transforms to the result of function

if path has a value, transforms to the result of function

Attributes

Source
HTTPIngressPath.scala
def mapPathType(f: String => String): HTTPIngressPath

transforms pathType to result of function

transforms pathType to result of function

Attributes

Source
HTTPIngressPath.scala

Returns a new data with backend set to new value

Returns a new data with backend set to new value

Attributes

Source
HTTPIngressPath.scala
def withPath(value: String): HTTPIngressPath

Returns a new data with path set to new value

Returns a new data with path set to new value

Attributes

Source
HTTPIngressPath.scala
def withPathType(value: String): HTTPIngressPath

Returns a new data with pathType set to new value

Returns a new data with pathType set to new value

Attributes

Source
HTTPIngressPath.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product