Class: Kubeclient::Common::WatchNotice

Inherits:
RecursiveOpenStruct
  • Object
show all
Defined in:
lib/kubeclient/watch_notice.rb

Overview

Represents an individual notice received from a Kubernetes watch

Instance Method Summary collapse

Constructor Details

#initialize(hash = nil, args = {}) ⇒ WatchNotice

Returns a new instance of WatchNotice.



6
7
8
9
# File 'lib/kubeclient/watch_notice.rb', line 6

def initialize(hash = nil, args = {})
  args[:recurse_over_arrays] = true
  super(hash, args)
end