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
Ordering
- Alphabetic
- By Inheritance
Inherited
- EventSource
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
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
- val component: Optional[String]
-
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.
-
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.
- val host: Optional[String]