Sha256: f90660e7581521cd6c8ac215b3ff8bb5222d80777d8cfe52718b5affd9df9236

Contents?: true

Size: 1.41 KB

Versions: 29

Compression:

Stored size: 1.41 KB

Contents

module Fog
  module Compute
    class HPV2
      class Real
        # Associate a floating IP address with an existing server
        #
        # Note: This method will proxy the call to the Network (Quantum) service,
        # to associate the IP address with the first network available.
        # If the network is not routable, it will throw an exception.
        #
        # ==== Parameters
        # * 'server_id'<~String> - UUId of server to associate IP with
        # * 'ip_address'<~String> - IP address to associate with the server
        #
        def associate_address(server_id, ip_address)
          body = { 'addFloatingIp' => { 'server' => server_id, 'address' => ip_address }}
          server_action(server_id, body)
        end
      end

      class Mock
        def associate_address(server_id, ip_address)
          response = Excon::Response.new
          if server = self.data[:servers][server_id]
            data = {"version"=>4, "addr"=>"#{ip_address}"}
            if server['addresses']['custom']
              server['addresses']['custom'] << data
            else
              server['addresses']['custom'] = data
            end
            response.status = 202
          else
            #raise Fog::Compute::HPV2::NotFound
            response.status = 500
            raise(Excon::Errors.status_error({:expects => 202}, response))
          end
          response
        end
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 4 rubygems

Version Path
fog-1.37.0 lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.36.0 lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.35.0 lib/fog/hp/requests/compute_v2/associate_address.rb
fog-2.0.0.pre.0 lib/fog/hp/requests/compute_v2/associate_address.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.34.0 lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.33.0 lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.32.0 lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.31.0 lib/fog/hp/requests/compute_v2/associate_address.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.30.0 lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.29.0 lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.28.0 lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.27.0 lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.26.0 lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.25.0 lib/fog/hp/requests/compute_v2/associate_address.rb
nsidc-fog-1.24.1 lib/fog/hp/requests/compute_v2/associate_address.rb
fog-1.24.0 lib/fog/hp/requests/compute_v2/associate_address.rb
ns-fog-1.22.11 lib/fog/hp/requests/compute_v2/associate_address.rb
ns-fog-1.22.10 lib/fog/hp/requests/compute_v2/associate_address.rb