Class: Fog::HP::Network::Networks
- Inherits:
-
Collection
- Object
- Collection
- Fog::HP::Network::Networks
- Defined in:
- lib/fog/hp/models/network/networks.rb
Instance Method Summary collapse
- #all(filters_arg = filters) ⇒ Object
- #get(network_id) ⇒ Object
-
#initialize(attributes) ⇒ Networks
constructor
A new instance of Networks.
Constructor Details
#initialize(attributes) ⇒ Networks
Returns a new instance of Networks.
12 13 14 15 |
# File 'lib/fog/hp/models/network/networks.rb', line 12 def initialize(attributes) self.filters ||= {} super end |
Instance Method Details
#all(filters_arg = filters) ⇒ Object
17 18 19 20 21 |
# File 'lib/fog/hp/models/network/networks.rb', line 17 def all(filters_arg = filters) filters = filters_arg non_aliased_filters = Fog::HP.convert_aliased_attributes_to_original(self.model, filters) load(service.list_networks(non_aliased_filters).body['networks']) end |