Kazan v0.11.0 Kazan.Apis.Core.V1.Event View Source

Event is a report of an event somewhere in the cluster.

OpenAPI Definition: io.k8s.api.core.v1.Event

Properties

  • action :: String

    • What action was taken/failed regarding to the Regarding object.
  • api_version :: String

    • 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.
  • count :: Integer

    • The number of times this event has occurred.
  • event_time :: Kazan.Models.Apimachinery.Meta.V1.MicroTime

    • MicroTime is version of Time with microsecond level precision.
  • first_timestamp :: Kazan.Models.Apimachinery.Meta.V1.Time

    • Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
  • involved_object :: Kazan.Apis.Core.V1.ObjectReference

    • The object that this event is about.
  • kind :: String

    • 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.
  • last_timestamp :: Kazan.Models.Apimachinery.Meta.V1.Time

    • Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
  • message :: String

    • A human-readable description of the status of this operation.
  • metadata :: Kazan.Models.Apimachinery.Meta.V1.ObjectMeta

  • reason :: String

    • This should be a short, machine understandable string that gives the reason for the transition into the object’s current status.
  • related :: Kazan.Apis.Core.V1.ObjectReference

    • Optional secondary object for more complex actions.
  • reporting_component :: String

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

    • ID of the controller instance, e.g. kubelet-xyzf.
  • series :: Kazan.Apis.Core.V1.EventSeries

    • Data about the Event series this event represents or nil if it’s a singleton Event.
  • source :: Kazan.Apis.Core.V1.EventSource

    • The component reporting this event. Should be a short machine understandable string.
  • type :: String

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

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Kazan.Apis.Core.V1.Event{
  action: String.t(),
  api_version: String.t(),
  count: integer(),
  event_time: Kazan.Models.Apimachinery.Meta.V1.MicroTime.t(),
  first_timestamp: Kazan.Models.Apimachinery.Meta.V1.Time.t(),
  involved_object: Kazan.Apis.Core.V1.ObjectReference.t(),
  kind: String.t(),
  last_timestamp: Kazan.Models.Apimachinery.Meta.V1.Time.t(),
  message: String.t(),
  metadata: Kazan.Models.Apimachinery.Meta.V1.ObjectMeta.t(),
  reason: String.t(),
  related: Kazan.Apis.Core.V1.ObjectReference.t(),
  reporting_component: String.t(),
  reporting_instance: String.t(),
  series: Kazan.Apis.Core.V1.EventSeries.t(),
  source: Kazan.Apis.Core.V1.EventSource.t(),
  type: String.t()
}