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-maestrodev-1.18.0.20131209090811 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/hp/models/network/floating_ip.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/hp/models/network/floating_ip.rb
fog-1.18.0 lib/fog/hp/models/network/floating_ip.rb