IngressRule

final case class IngressRule(host: Option[String], http: Option[HTTPIngressRuleValue])

IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.

Source:
IngressRule.scala
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

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

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

Source:
IngressRule.scala

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

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

Source:
IngressRule.scala

Returns a new data with host set to new value

Returns a new data with host set to new value

Source:
IngressRule.scala

Returns a new data with http set to new value

Returns a new data with http set to new value

Source:
IngressRule.scala

Inherited methods

Inherited from:
Product