Class: Kubernetes::V1beta1Event
- Inherits:
-
Object
- Object
- Kubernetes::V1beta1Event
- Defined in:
- lib/kubernetes/models/v1beta1_event.rb
Overview
Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.
Instance Attribute Summary collapse
-
#action ⇒ Object
What action was taken/failed regarding to the regarding object.
-
#api_version ⇒ Object
APIVersion defines the versioned schema of this representation of an object.
-
#deprecated_count ⇒ Object
Deprecated field assuring backward compatibility with core.v1 Event type.
-
#deprecated_first_timestamp ⇒ Object
Deprecated field assuring backward compatibility with core.v1 Event type.
-
#deprecated_last_timestamp ⇒ Object
Deprecated field assuring backward compatibility with core.v1 Event type.
-
#deprecated_source ⇒ Object
Deprecated field assuring backward compatibility with core.v1 Event type.
-
#event_time ⇒ Object
Required.
-
#kind ⇒ Object
Kind is a string value representing the REST resource this object represents.
-
#metadata ⇒ Object
Returns the value of attribute metadata.
-
#note ⇒ Object
Optional.
-
#reason ⇒ Object
Why the action was taken.
-
#regarding ⇒ Object
The object this Event is about.
-
#related ⇒ Object
Optional secondary object for more complex actions.
-
#reporting_controller ⇒ Object
Name of the controller that emitted this Event, e.g.
-
#reporting_instance ⇒ Object
ID of the controller instance, e.g.
-
#series ⇒ Object
Data about the Event series this event represents or nil if it’s a singleton Event.
-
#type ⇒ Object
Type of this event (Normal, Warning), new types could be added in the future.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ V1beta1Event
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ V1beta1Event
Initializes the object
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 116 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.transform_keys(&:to_sym) self.action = attributes[:action] if attributes.key?(:action) self.api_version = attributes[:apiVersion] if attributes.key?(:apiVersion) self.deprecated_count = attributes[:deprecatedCount] if attributes.key?(:deprecatedCount) if attributes.key?(:deprecatedFirstTimestamp) self. = attributes[:deprecatedFirstTimestamp] end if attributes.key?(:deprecatedLastTimestamp) self. = attributes[:deprecatedLastTimestamp] end self.deprecated_source = attributes[:deprecatedSource] if attributes.key?(:deprecatedSource) self.event_time = attributes[:eventTime] if attributes.key?(:eventTime) self.kind = attributes[:kind] if attributes.key?(:kind) self. = attributes[:metadata] if attributes.key?(:metadata) self.note = attributes[:note] if attributes.key?(:note) self.reason = attributes[:reason] if attributes.key?(:reason) self.regarding = attributes[:regarding] if attributes.key?(:regarding) self. = attributes[:related] if attributes.key?(:related) if attributes.key?(:reportingController) self.reporting_controller = attributes[:reportingController] end if attributes.key?(:reportingInstance) self.reporting_instance = attributes[:reportingInstance] end self.series = attributes[:series] if attributes.key?(:series) self.type = attributes[:type] if attributes.key?(:type) end |
Instance Attribute Details
#action ⇒ Object
What action was taken/failed regarding to the regarding object.
19 20 21 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 19 def action @action end |
#api_version ⇒ Object
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: git.k8s.io/community/contributors/devel/api-conventions.md#resources
22 23 24 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 22 def api_version @api_version end |
#deprecated_count ⇒ Object
Deprecated field assuring backward compatibility with core.v1 Event type
25 26 27 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 25 def deprecated_count @deprecated_count end |
#deprecated_first_timestamp ⇒ Object
Deprecated field assuring backward compatibility with core.v1 Event type
28 29 30 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 28 def end |
#deprecated_last_timestamp ⇒ Object
Deprecated field assuring backward compatibility with core.v1 Event type
31 32 33 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 31 def end |
#deprecated_source ⇒ Object
Deprecated field assuring backward compatibility with core.v1 Event type
34 35 36 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 34 def deprecated_source @deprecated_source end |
#event_time ⇒ Object
Required. Time when this Event was first observed.
37 38 39 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 37 def event_time @event_time end |
#kind ⇒ Object
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: git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
40 41 42 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 40 def kind @kind end |
#metadata ⇒ Object
Returns the value of attribute metadata.
42 43 44 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 42 def end |
#note ⇒ Object
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.
45 46 47 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 45 def note @note end |
#reason ⇒ Object
Why the action was taken.
48 49 50 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 48 def reason @reason end |
#regarding ⇒ Object
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.
51 52 53 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 51 def regarding @regarding end |
#related ⇒ Object
Optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object.
54 55 56 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 54 def end |
#reporting_controller ⇒ Object
Name of the controller that emitted this Event, e.g. ‘kubernetes.io/kubelet`.
57 58 59 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 57 def reporting_controller @reporting_controller end |
#reporting_instance ⇒ Object
ID of the controller instance, e.g. ‘kubelet-xyzf`.
60 61 62 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 60 def reporting_instance @reporting_instance end |
#series ⇒ Object
Data about the Event series this event represents or nil if it’s a singleton Event.
63 64 65 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 63 def series @series end |
#type ⇒ Object
Type of this event (Normal, Warning), new types could be added in the future.
66 67 68 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 66 def type @type end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 69 def self.attribute_map { action: :action, api_version: :apiVersion, deprecated_count: :deprecatedCount, deprecated_first_timestamp: :deprecatedFirstTimestamp, deprecated_last_timestamp: :deprecatedLastTimestamp, deprecated_source: :deprecatedSource, event_time: :eventTime, kind: :kind, metadata: :metadata, note: :note, reason: :reason, regarding: :regarding, related: :related, reporting_controller: :reportingController, reporting_instance: :reportingInstance, series: :series, type: :type } end |
.swagger_types ⇒ Object
Attribute type mapping.
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 92 def self.swagger_types { action: :String, api_version: :String, deprecated_count: :Integer, deprecated_first_timestamp: :DateTime, deprecated_last_timestamp: :DateTime, deprecated_source: :V1EventSource, event_time: :DateTime, kind: :String, metadata: :V1ObjectMeta, note: :String, reason: :String, regarding: :V1ObjectReference, related: :V1ObjectReference, reporting_controller: :String, reporting_instance: :String, series: :V1beta1EventSeries, type: :String } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 186 def ==(other) return true if equal?(other) self.class == other.class && action == other.action && api_version == other.api_version && deprecated_count == other.deprecated_count && == other. && == other. && deprecated_source == other.deprecated_source && event_time == other.event_time && kind == other.kind && == other. && note == other.note && reason == other.reason && regarding == other.regarding && == other. && reporting_controller == other.reporting_controller && reporting_instance == other.reporting_instance && series == other.series && type == other.type end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 249 def _deserialize(type, value) case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :BOOLEAN if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model temp_model = Kubernetes.const_get(type).new temp_model.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
316 317 318 319 320 321 322 323 324 325 326 327 328 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 316 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 225 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) send("#{key}=", attributes[self.class.attribute_map[key]].map do |v| _deserialize(Regexp.last_match(1), v) end) end elsif !attributes[self.class.attribute_map[key]].nil? send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end end self end |
#eql?(other) ⇒ Boolean
211 212 213 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 211 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
217 218 219 220 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 217 def hash [action, api_version, deprecated_count, , , deprecated_source, event_time, kind, , note, reason, regarding, , reporting_controller, reporting_instance, series, type].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
167 168 169 170 171 172 173 174 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 167 def list_invalid_properties invalid_properties = [] if @event_time.nil? invalid_properties.push("invalid value for 'event_time', event_time cannot be nil.") end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
295 296 297 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 295 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
301 302 303 304 305 306 307 308 309 310 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 301 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
289 290 291 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 289 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
178 179 180 181 182 |
# File 'lib/kubernetes/models/v1beta1_event.rb', line 178 def valid? return false if @event_time.nil? true end |