Methods

Class/Module Index [+]

Quicksearch

Fog::Vcloud::Compute::Ips

Public Instance Methods

all() click to toggle source
# 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) click to toggle source
# 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

[Validate]

Generated with the Darkfish Rdoc Generator 2.