Sha256: 026003f7b3caba485685329631e9bed60acfaf1bbd9c3c279ff91e1673b4f3ce

Contents?: true

Size: 1.82 KB

Versions: 46

Compression:

Stored size: 1.82 KB

Contents

module Fog
  module AWS
    class Compute
      class Real

        # Associate an elastic IP address with an instance
        #
        # ==== Parameters
        # * instance_id<~String> - Id of instance to associate address with
        # * public_ip<~String> - Public ip to assign to instance
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'requestId'<~String> - Id of request
        #     * 'return'<~Boolean> - success?
        def associate_address(instance_id, public_ip)
          request(
            'Action'      => 'AssociateAddress',
            'InstanceId'  => instance_id,
            'PublicIp'    => public_ip,
            :idempotent   => true,
            :parser       => Fog::Parsers::AWS::Compute::Basic.new
          )
        end

      end

      class Mock

        def associate_address(instance_id, public_ip)
          response = Excon::Response.new
          response.status = 200
          instance = @data[:instances][instance_id]
          address = @data[:addresses][public_ip]
          if instance && address
            address['instanceId'] = instance_id
            instance['originalIpAddress'] = instance['ipAddress']
            instance['ipAddress'] = public_ip
            instance['dnsName'] = Fog::AWS::Mock.dns_name_for(public_ip)
            response.status = 200
            response.body = {
              'requestId' => Fog::AWS::Mock.request_id,
              'return'    => true
            }
            response
          elsif !instance
            raise Fog::AWS::Compute::NotFound.new("The instance ID '#{instance_id}' does not exist")
          elsif !address
            raise Fog::AWS::Compute::Error.new("AuthFailure => The address '#{public_ip}' does not belong to you.")
          end
        end

      end
    end
  end
end

Version data entries

46 entries across 46 versions & 3 rubygems

Version Path
fog-0.5.3 lib/fog/compute/requests/aws/associate_address.rb
fog-0.5.2 lib/fog/compute/requests/aws/associate_address.rb
fog-0.5.1 lib/fog/compute/requests/aws/associate_address.rb
fog-0.5.0 lib/fog/compute/requests/aws/associate_address.rb
phpfog-fog-0.4.1.3 lib/fog/compute/requests/aws/associate_address.rb
phpfog-fog-0.4.1.2 lib/fog/compute/requests/aws/associate_address.rb
phpfog-fog-0.4.1.1 lib/fog/compute/requests/aws/associate_address.rb
phpfog-fog-0.4.1 lib/fog/compute/requests/aws/associate_address.rb
fog-0.4.1 lib/fog/compute/requests/aws/associate_address.rb
fog-0.4.0 lib/fog/aws/requests/compute/associate_address.rb
fog-0.3.34 lib/fog/aws/requests/compute/associate_address.rb
fog-0.3.33 lib/fog/aws/requests/compute/associate_address.rb
fog-0.3.32 lib/fog/aws/requests/compute/associate_address.rb
fog-0.3.31 lib/fog/aws/requests/compute/associate_address.rb
fog-0.3.30 lib/fog/aws/requests/compute/associate_address.rb
fog-0.3.29 lib/fog/aws/requests/compute/associate_address.rb
fog-0.3.28 lib/fog/aws/requests/compute/associate_address.rb
fog-0.3.27 lib/fog/aws/requests/compute/associate_address.rb
fog-0.3.26 lib/fog/aws/requests/compute/associate_address.rb
fog-0.3.25 lib/fog/aws/requests/compute/associate_address.rb