Class: Fog::Vcloud::Compute::Ips

Inherits:
Fog::Vcloud::Collection show all
Defined in:
lib/fog/vcloud/models/compute/ips.rb

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Fog::Vcloud::Collection

#check_href!, #load

Methods inherited from Collection

#clear, #create, #destroy, #initialize, #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

This class inherits a constructor from Fog::Collection

Instance Method Details

#allObject



14
15
16
17
18
19
20
# File 'lib/fog/vcloud/models/compute/ips.rb', line 14

def all
  self.href = service.default_vdc_href unless self.href
  check_href!( :messages => "Ips href of a Network you want to enumerate" )
  if data = service.get_network_ips(href).body[:IpAddress]
    load(data)
  end
end

#get(uri) ⇒ Object



22
23
24
25
26
27
28
# File 'lib/fog/vcloud/models/compute/ips.rb', line 22

def get(uri)
  if data = service.get_network_ip(uri).body
    new(data)
  end
rescue Fog::Errors::NotFound
  nil
end