Sha256: 9ea51f183fb91b9870c21a1d2ace44a251eceb28922551fb9af44ad3b3109f7c

Contents?: true

Size: 1.31 KB

Versions: 79

Compression:

Stored size: 1.31 KB

Contents

module Fog
  module Compute
    class HP
      class Real

        # Acquires a floating IP address
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'floating_ip'<~Hash> -
        #       * 'id'<~Integer> - Id of the address
        #       * 'ip'<~String> - Floating IP of the address
        #       * 'instance_id'<~String> - Id of the associated server instance
        #       * 'fixed_ip'<~String> - Fixed IP of the address
        def allocate_address

          request(
            :body     => nil,
            :expects  => 200,
            :method   => 'POST',
            :path     => 'os-floating-ips.json'
          )
        end

      end

      class Mock

        def allocate_address
          response = Excon::Response.new
          response.status = 200
          data = {
            'instance_id' => Fog::HP::Mock.instance_id.to_i,
            'ip'          => Fog::HP::Mock.ip_address,
            'fixed_ip'    => Fog::HP::Mock.ip_address,
            'id'          => Fog::Mock.random_numbers(3).to_i
          }
          self.data[:last_modified][:addresses][data['id']] = Time.now
          self.data[:addresses][data['id']] = data

          response.body = { 'floating_ip' => data }
          response
        end

      end
    end
  end
end

Version data entries

79 entries across 79 versions & 12 rubygems

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