Packages

case class EventSource(component: Optional[String] = Optional.Absent, host: Optional[String] = Optional.Absent) extends Product with Serializable

EventSource contains information for an event.

component

Component from which the event is generated.

host

Node name on which the event is generated.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EventSource
  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 EventSource(component: Optional[String] = Optional.Absent, host: Optional[String] = Optional.Absent)

    component

    Component from which the event is generated.

    host

    Node name on which the event is generated.

Value Members

  1. val component: Optional[String]
  2. def getComponent: IO[K8sFailure, String]

    Component from which the event is generated.

    Component from which the event is generated.

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

  3. def getHost: IO[K8sFailure, String]

    Node name on which the event is generated.

    Node name on which the event is generated.

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

  4. val host: Optional[String]