class Fog::HP::Network::FloatingIps
Public Class Methods
new(attributes)
click to toggle source
Calls superclass method
# File lib/fog/hp/models/network/floating_ips.rb, line 12 def initialize(attributes) self.filters ||= {} super end
Public Instance Methods
all(filters = filters)
click to toggle source
# File lib/fog/hp/models/network/floating_ips.rb, line 17 def all(filters = filters) self.filters = filters non_aliased_filters = Fog::HP.convert_aliased_attributes_to_original(self.model, filters) load(service.list_floating_ips(non_aliased_filters).body['floatingips']) end
get(floating_ip_id)
click to toggle source
# File lib/fog/hp/models/network/floating_ips.rb, line 23 def get(floating_ip_id) if floating_ip = service.get_floating_ip(floating_ip_id).body['floatingip'] new(floating_ip) end rescue Fog::HP::Network::NotFound nil end