Sha256: 400aa4894a93064a0fa94ce18c761f1e09b0026f703b635eea71e0e23eda1bf2

Contents?: true

Size: 1.03 KB

Versions: 3

Compression:

Stored size: 1.03 KB

Contents

unless Fog.mocking?

  module Fog
    module AWS
      class EC2

        # Acquire an elastic IP address.
        #
        # ==== Returns
        # * response<~Fog::AWS::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 = Fog::Response.new
          response.status = 200
          public_ip = Fog::AWS::Mock.ip_address
          data ={
            'instanceId' => '',
            'publicIp'   => public_ip
          }
          @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

3 entries across 3 versions & 1 rubygems

Version Path
geemus-fog-0.0.0 lib/fog/aws/requests/ec2/allocate_address.rb
geemus-fog-0.0.1 lib/fog/aws/requests/ec2/allocate_address.rb
geemus-fog-0.0.3 lib/fog/aws/requests/ec2/allocate_address.rb