case class IngressClassSpec(controller: Optional[String] = Optional.Absent, parameters: Optional[IngressClassParametersReference] = Optional.Absent) extends Product with Serializable

IngressClassSpec provides information about the class of an Ingress.

controller

Controller refers to the name of the controller that should handle this class. This allows for different "flavors" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. "acme.io/ingress-controller". This field is immutable.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IngressClassSpec
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IngressClassSpec(controller: Optional[String] = Optional.Absent, parameters: Optional[IngressClassParametersReference] = Optional.Absent)

    controller

    Controller refers to the name of the controller that should handle this class. This allows for different "flavors" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. "acme.io/ingress-controller". This field is immutable.

Value Members

  1. val controller: Optional[String]
  2. def getController: IO[K8sFailure, String]

    Controller refers to the name of the controller that should handle this class.

    Controller refers to the name of the controller that should handle this class. This allows for different "flavors" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. "acme.io/ingress-controller". This field is immutable.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  3. def getParameters: IO[K8sFailure, IngressClassParametersReference]

    Gets parameters.

    Gets parameters.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  4. val parameters: Optional[IngressClassParametersReference]