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

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

Instance Method Summary collapse

Methods inherited from Fog::Vcloud::Collection

#check_href!, #load

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