Sha256: 962a7dac05cc89d3586477eca5c30578450c99438cbe0335ba24293b8059107a
Contents?: true
Size: 801 Bytes
Versions: 17
Compression:
Stored size: 801 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/openstack/models/network/floating_ip' module Fog module Network class OpenStack class FloatingIps < Fog::OpenStack::Collection attribute :filters model Fog::Network::OpenStack::FloatingIp def initialize(attributes) self.filters ||= {} super end def all(filters_arg = filters) filters = filters_arg load_response(service.list_floating_ips(filters), 'floatingips') end def get(floating_network_id) if floating_ip = service.get_floating_ip(floating_network_id).body['floatingip'] new(floating_ip) end rescue Fog::Network::OpenStack::NotFound nil end end end end end
Version data entries
17 entries across 17 versions & 2 rubygems