Class: Puppet::Util::NetworkDevice::Hpe3par::Facts
- Inherits:
-
Object
- Object
- Puppet::Util::NetworkDevice::Hpe3par::Facts
- Defined in:
- lib/puppet/util/network_device/hpe3par/facts.rb
Instance Attribute Summary collapse
-
#transport ⇒ Object
readonly
Returns the value of attribute transport.
Instance Method Summary collapse
-
#initialize(transport) ⇒ Facts
constructor
A new instance of Facts.
- #retrieve ⇒ Object
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
#transport ⇒ Object (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
#retrieve ⇒ Object
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 |