Sha256: 6d26e8a16efea21a8b87916dd42eeb503104a4768530b03d3cf2ee367ab7d0f0

Contents?: true

Size: 1.53 KB

Versions: 37

Compression:

Stored size: 1.53 KB

Contents

module Fog
  module Compute
    class HPV2
      class Real

        # Acquires a floating IP address
        #
        # Note: This method will proxy the call to the Network (Quantum) service,
        # to allocate an floating IP address from the first network available.
        # If the network is not routable, it will throw an exception.
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #   * 'floating_ip'<~Hash> -
        #     * 'id'<~String> - UUId of the Floating IP 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'
          )
        end

      end

      class Mock

        def allocate_address
          response = Excon::Response.new
          response.status = 200
          data = {
            'instance_id' => Fog::HP::Mock.uuid.to_s,
            'ip'          => Fog::HP::Mock.ip_address,
            'fixed_ip'    => Fog::HP::Mock.ip_address,
            'id'          => Fog::HP::Mock.uuid.to_s
          }
          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

37 entries across 37 versions & 2 rubygems

Version Path
fog-maestrodev-1.18.0.20131209090811 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/hp/requests/compute_v2/allocate_address.rb
fog-1.18.0 lib/fog/hp/requests/compute_v2/allocate_address.rb