Class: Fog::HP::Network::Subnets

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/hp/models/network/subnets.rb

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Subnets

Returns a new instance of Subnets.



12
13
14
15
# File 'lib/fog/hp/models/network/subnets.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/subnets.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_subnets(non_aliased_filters).body['subnets'])
end

#get(subnet_id) ⇒ Object



23
24
25
26
27
28
29
# File 'lib/fog/hp/models/network/subnets.rb', line 23

def get(subnet_id)
  if subnet = service.get_subnet(subnet_id).body['subnet']
    new(subnet)
  end
rescue Fog::HP::Network::NotFound
  nil
end