case class Event(metadata: ObjectMeta, involvedObject: ObjectReference, action: Option[String] = None, apiVersion: Option[String] = None, count: Option[Int] = None, eventTime: Option[MicroTime] = None, firstTimestamp: Option[Time] = None, kind: Option[String] = None, lastTimestamp: Option[Time] = None, message: Option[String] = None, reason: Option[String] = None, related: Option[ObjectReference] = None, reportingComponent: Option[String] = None, reportingInstance: Option[String] = None, series: Option[EventSeries] = None, source: Option[EventSource] = None, type: Option[String] = None) extends Product with Serializable
Event is a report of an event somewhere in the cluster. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data.
- metadata
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
- involvedObject
The object that this event is about.
- action
What action was taken/failed regarding to the Regarding object.
- apiVersion
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
- count
The number of times this event has occurred.
- eventTime
Time when this Event was first observed.
- firstTimestamp
The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)
- kind
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
- lastTimestamp
The time at which the most recent occurrence of this event was recorded.
- message
A human-readable description of the status of this operation.
- reason
This should be a short, machine understandable string that gives the reason for the transition into the object's current status.
- related
Optional secondary object for more complex actions.
- reportingComponent
Name of the controller that emitted this Event, e.g.
kubernetes.io/kubelet.- reportingInstance
ID of the controller instance, e.g.
kubelet-xyzf.- series
Data about the Event series this event represents or nil if it's a singleton Event.
- source
The component reporting this event. Should be a short machine understandable string.
- Alphabetic
- By Inheritance
- Event
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Event(metadata: ObjectMeta, involvedObject: ObjectReference, action: Option[String] = None, apiVersion: Option[String] = None, count: Option[Int] = None, eventTime: Option[MicroTime] = None, firstTimestamp: Option[Time] = None, kind: Option[String] = None, lastTimestamp: Option[Time] = None, message: Option[String] = None, reason: Option[String] = None, related: Option[ObjectReference] = None, reportingComponent: Option[String] = None, reportingInstance: Option[String] = None, series: Option[EventSeries] = None, source: Option[EventSource] = None, type: Option[String] = None)
- metadata
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
- involvedObject
The object that this event is about.
- action
What action was taken/failed regarding to the Regarding object.
- apiVersion
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
- count
The number of times this event has occurred.
- eventTime
Time when this Event was first observed.
- firstTimestamp
The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)
- kind
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
- lastTimestamp
The time at which the most recent occurrence of this event was recorded.
- message
A human-readable description of the status of this operation.
- reason
This should be a short, machine understandable string that gives the reason for the transition into the object's current status.
- related
Optional secondary object for more complex actions.
- reportingComponent
Name of the controller that emitted this Event, e.g.
kubernetes.io/kubelet.- reportingInstance
ID of the controller instance, e.g.
kubelet-xyzf.- series
Data about the Event series this event represents or nil if it's a singleton Event.
- source
The component reporting this event. Should be a short machine understandable string.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val action: Option[String]
- val apiVersion: Option[String]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- val count: Option[Int]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val eventTime: Option[MicroTime]
- val firstTimestamp: Option[Time]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val involvedObject: ObjectReference
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val kind: Option[String]
- val lastTimestamp: Option[Time]
- val message: Option[String]
- val metadata: ObjectMeta
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val reason: Option[String]
- val related: Option[ObjectReference]
- val reportingComponent: Option[String]
- val reportingInstance: Option[String]
- val series: Option[EventSeries]
- val source: Option[EventSource]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val type: Option[String]
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated