Sha256: 37502ec1c18e865c9b157e68f31e5b62e1957a64fc4d8207c4be60da540d0f59

Contents?: true

Size: 1.04 KB

Versions: 25

Compression:

Stored size: 1.04 KB

Contents

unless Fog.mocking?

  module Fog
    module AWS
      class EC2

        # Acquire an elastic IP address.
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'publicIp'<~String> - The acquired address
        #     * 'requestId'<~String> - Id of the request
        def allocate_address
          request({
            'Action' => 'AllocateAddress'
          }, Fog::Parsers::AWS::EC2::AllocateAddress.new)
        end

      end
    end
  end

else

  module Fog
    module AWS
      class EC2

        def allocate_address
          response = Excon::Response.new
          response.status = 200
          public_ip = Fog::AWS::Mock.ip_address
          data ={
            'instanceId' => '',
            'publicIp'   => public_ip
          }
          Fog::AWS::EC2.data[:addresses][public_ip] = data
          response.body = {
            'publicIp'  => public_ip,
            'requestId' => Fog::AWS::Mock.request_id
          }
          response
        end

      end
    end
  end

end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
fog-0.0.36 lib/fog/aws/requests/ec2/allocate_address.rb
fog-0.0.35 lib/fog/aws/requests/ec2/allocate_address.rb
fog-0.0.34 lib/fog/aws/requests/ec2/allocate_address.rb
fog-0.0.33 lib/fog/aws/requests/ec2/allocate_address.rb
fog-0.0.32 lib/fog/aws/requests/ec2/allocate_address.rb