Sha256: 56b759a001818c9be1d674b86a3b6a241282e976ff6d0e900013f7ed505bd345

Contents?: true

Size: 1.12 KB

Versions: 37

Compression:

Stored size: 1.12 KB

Contents

require 'fog/core/model'

module Fog
  module HP
    class Network

      class FloatingIp < Fog::Model
        identity :id

        attribute :floating_network_id
        attribute :port_id
        attribute :tenant_id
        attribute :router_id
        attribute :fixed_ip_address
        attribute :floating_ip_address

        def destroy
          requires :id
          service.delete_floating_ip(id)
          true
        end

        def associate_port(port_id, options={})
          requires :id
          merge_attributes(service.associate_floating_ip(id, port_id, options).body['floatingip'])
          true
        end

        def disassociate_port(options={})
          requires :id
          merge_attributes(service.disassociate_floating_ip(id, options).body['floatingip'])
          true
        end

        def save
          requires :floating_network_id
          raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
          merge_attributes(service.create_floating_ip(floating_network_id, attributes).body['floatingip'])
          true
        end

      end
    end
  end
end

Version data entries

37 entries across 37 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/hp/models/network/floating_ip.rb
fog-1.21.0 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/hp/models/network/floating_ip.rb
fog-1.20.0 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/hp/models/network/floating_ip.rb
fog-1.19.0 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/hp/models/network/floating_ip.rb