Packages

case class Event(action: Optional[String] = Optional.Absent, count: Optional[Int] = Optional.Absent, eventTime: Optional[MicroTime] = Optional.Absent, firstTimestamp: Optional[Time] = Optional.Absent, involvedObject: ObjectReference, lastTimestamp: Optional[Time] = Optional.Absent, message: Optional[String] = Optional.Absent, metadata: ObjectMeta, reason: Optional[String] = Optional.Absent, related: Optional[ObjectReference] = Optional.Absent, reportingComponent: Optional[String] = Optional.Absent, reportingInstance: Optional[String] = Optional.Absent, series: Optional[EventSeries] = Optional.Absent, source: Optional[EventSource] = Optional.Absent, type: Optional[String] = Optional.Absent) 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.

action

What action was taken/failed regarding to the Regarding object.

count

The number of times this event has occurred.

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.

reportingComponent

Name of the controller that emitted this Event, e.g. kubernetes.io/kubelet.

reportingInstance

ID of the controller instance, e.g. kubelet-xyzf.

type

Type of this event (Normal, Warning), new types could be added in the future

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Event
  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 Event(action: Optional[String] = Optional.Absent, count: Optional[Int] = Optional.Absent, eventTime: Optional[MicroTime] = Optional.Absent, firstTimestamp: Optional[Time] = Optional.Absent, involvedObject: ObjectReference, lastTimestamp: Optional[Time] = Optional.Absent, message: Optional[String] = Optional.Absent, metadata: ObjectMeta, reason: Optional[String] = Optional.Absent, related: Optional[ObjectReference] = Optional.Absent, reportingComponent: Optional[String] = Optional.Absent, reportingInstance: Optional[String] = Optional.Absent, series: Optional[EventSeries] = Optional.Absent, source: Optional[EventSource] = Optional.Absent, type: Optional[String] = Optional.Absent)

    action

    What action was taken/failed regarding to the Regarding object.

    count

    The number of times this event has occurred.

    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.

    reportingComponent

    Name of the controller that emitted this Event, e.g. kubernetes.io/kubelet.

    reportingInstance

    ID of the controller instance, e.g. kubelet-xyzf.

    type

    Type of this event (Normal, Warning), new types could be added in the future

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val action: Optional[String]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  7. val count: Optional[Int]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. val eventTime: Optional[MicroTime]
  10. val firstTimestamp: Optional[Time]
  11. def getAction: IO[K8sFailure, String]

    What action was taken/failed regarding to the Regarding object.

    What action was taken/failed regarding to the Regarding object.

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

  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def getCount: IO[K8sFailure, Int]

    The number of times this event has occurred.

    The number of times this event has occurred.

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

  14. def getEventTime: IO[K8sFailure, MicroTime]

    Gets eventTime.

    Gets eventTime.

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

  15. def getFirstTimestamp: IO[K8sFailure, Time]

    Gets firstTimestamp.

    Gets firstTimestamp.

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

  16. def getInvolvedObject: IO[K8sFailure, ObjectReference]

    Gets involvedObject.

    Gets involvedObject.

    This effect always succeeds, it is safe to use the field involvedObject directly.

  17. def getLastTimestamp: IO[K8sFailure, Time]

    Gets lastTimestamp.

    Gets lastTimestamp.

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

  18. def getMessage: IO[K8sFailure, String]

    A human-readable description of the status of this operation.

    A human-readable description of the status of this operation.

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

  19. def getMetadata: IO[K8sFailure, ObjectMeta]

    Gets metadata.

    Gets metadata.

    This effect always succeeds, it is safe to use the field metadata directly.

  20. def getReason: IO[K8sFailure, String]

    This should be a short, machine understandable string that gives the reason for the transition into the object's current status.

    This should be a short, machine understandable string that gives the reason for the transition into the object's current status.

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

  21. def getRelated: IO[K8sFailure, ObjectReference]

    Gets related.

    Gets related.

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

  22. def getReportingComponent: IO[K8sFailure, String]

    Name of the controller that emitted this Event, e.g.

    Name of the controller that emitted this Event, e.g. kubernetes.io/kubelet.

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

  23. def getReportingInstance: IO[K8sFailure, String]

    ID of the controller instance, e.g.

    ID of the controller instance, e.g. kubelet-xyzf.

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

  24. def getSeries: IO[K8sFailure, EventSeries]

    Gets series.

    Gets series.

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

  25. def getSource: IO[K8sFailure, EventSource]

    Gets source.

    Gets source.

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

  26. def getType: IO[K8sFailure, String]

    Type of this event (Normal, Warning), new types could be added in the future

    Type of this event (Normal, Warning), new types could be added in the future

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

  27. val involvedObject: ObjectReference
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. val lastTimestamp: Optional[Time]
  30. val message: Optional[String]
  31. val metadata: ObjectMeta
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  35. val reason: Optional[String]
  36. val related: Optional[ObjectReference]
  37. val reportingComponent: Optional[String]
  38. val reportingInstance: Optional[String]
  39. val series: Optional[EventSeries]
  40. val source: Optional[EventSource]
  41. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  42. val type: Optional[String]
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped