Sha256: 76aec045ac9dee514faf74321eac81807c33a0ff9c5a32496e6346ebfb011163
Contents?: true
Size: 801 Bytes
Versions: 20
Compression:
Stored size: 801 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/openstack/network/models/floating_ip' module Fog module OpenStack class Network class FloatingIps < Fog::OpenStack::Collection attribute :filters model Fog::OpenStack::Network::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::OpenStack::Network::NotFound nil end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems