Sha256: ee97747886fe1918a373aeda372d8de78d8802c6683b3d832c80e8ab803eb3fe
Contents?: true
Size: 801 Bytes
Versions: 39
Compression:
Stored size: 801 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/network/openstack/models/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
39 entries across 37 versions & 3 rubygems