Kazan v0.11.0 Kazan.Apis.Events.V1beta1.Event View Source

Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.

OpenAPI Definition: io.k8s.api.events.v1beta1.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.
  • deprecated_count :: Integer

    • Deprecated field assuring backward compatibility with core.v1 Event type
  • deprecated_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.
  • deprecated_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.
  • deprecated_source :: Kazan.Apis.Core.V1.EventSource

    • Deprecated field assuring backward compatibility with core.v1 Event type
  • event_time :: Kazan.Models.Apimachinery.Meta.V1.MicroTime

    • MicroTime is version of Time with microsecond level precision.
  • 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.
  • metadata :: Kazan.Models.Apimachinery.Meta.V1.ObjectMeta

  • note :: String

    • Optional. A human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.
  • reason :: String

    • Why the action was taken.
  • regarding :: Kazan.Apis.Core.V1.ObjectReference

    • The object this Event is about. In most cases it’s an Object reporting controller implements. E.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object.
  • related :: Kazan.Apis.Core.V1.ObjectReference

    • Optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object.
  • reporting_controller :: 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.Events.V1beta1.EventSeries

    • Data about the Event series this event represents or nil if it’s a singleton Event.
  • 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.Events.V1beta1.Event{
  action: String.t(),
  api_version: String.t(),
  deprecated_count: integer(),
  deprecated_first_timestamp: Kazan.Models.Apimachinery.Meta.V1.Time.t(),
  deprecated_last_timestamp: Kazan.Models.Apimachinery.Meta.V1.Time.t(),
  deprecated_source: Kazan.Apis.Core.V1.EventSource.t(),
  event_time: Kazan.Models.Apimachinery.Meta.V1.MicroTime.t(),
  kind: String.t(),
  metadata: Kazan.Models.Apimachinery.Meta.V1.ObjectMeta.t(),
  note: String.t(),
  reason: String.t(),
  regarding: Kazan.Apis.Core.V1.ObjectReference.t(),
  related: Kazan.Apis.Core.V1.ObjectReference.t(),
  reporting_controller: String.t(),
  reporting_instance: String.t(),
  series: Kazan.Apis.Events.V1beta1.EventSeries.t(),
  type: String.t()
}