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

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

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #destroy, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

#initialize(attributes) ⇒ Subnets

Returns a new instance of Subnets.



14
15
16
17
# File 'lib/fog/hp/models/network/subnets.rb', line 14

def initialize(attributes)
  self.filters ||= {}
  super
end

Instance Method Details

#all(filters = filters) ⇒ Object



19
20
21
22
23
# File 'lib/fog/hp/models/network/subnets.rb', line 19

def all(filters = filters)
  self.filters = filters
  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



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

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