Class: Puppet::Util::NetworkDevice::Hpe3par::Facts

Inherits:
Object
  • Object
show all
Defined in:
lib/puppet/util/network_device/hpe3par/facts.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(transport) ⇒ Facts

Returns a new instance of Facts.



21
22
23
# File 'lib/puppet/util/network_device/hpe3par/facts.rb', line 21

def initialize(transport)
  @transport = transport
end

Instance Attribute Details

#transportObject (readonly)

Returns the value of attribute transport.



19
20
21
# File 'lib/puppet/util/network_device/hpe3par/facts.rb', line 19

def transport
  @transport
end

Instance Method Details

#retrieveObject



25
26
27
28
29
30
# File 'lib/puppet/util/network_device/hpe3par/facts.rb', line 25

def retrieve
  Puppet.debug("Retrieving Facts from device #{@url}")
  @facts = {}
  @facts[:storage_system] = @transport.get_storage_system_info
  @facts
end