Sha256: 900333d2d1af62bc620ebca0364e96fcabe0b93aefe257bb5e2321c79939a580

Contents?: true

Size: 941 Bytes

Versions: 7

Compression:

Stored size: 941 Bytes

Contents

module Fog
  module Ecloud
    class Compute

      class Real
        basic_request :get_public_ip
      end

      class Mock
        #
        #Based off of:
        #http://support.theenterprisecloud.com/kb/default.asp?id=567&Lang=1&SID=
        #

        def get_public_ip(public_ip_uri)
          public_ip_uri = ensure_unparsed(public_ip_uri)

          if public_ip = mock_data.public_ip_from_href(public_ip_uri)
            xml = Builder::XmlMarkup.new
            mock_it 200,
              xml.PublicIp(:xmlns => "urn:tmrk:eCloudExtensions-2.0", :"xmlns:i" => "http://www.w3.org/2001/XMLSchema-instance") {
                xml.Id public_ip.object_id
                xml.Href public_ip.href
                xml.Name public_ip.name
              }, { 'Content-Type' => 'application/vnd.tmrk.ecloud.publicIp+xml' }
          else
            mock_error 200, "401 Unauthorized"
          end
        end

      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fog-0.8.2 lib/fog/compute/requests/ecloud/get_public_ip.rb
fog-0.8.1 lib/fog/compute/requests/ecloud/get_public_ip.rb
fog-0.8.0 lib/fog/compute/requests/ecloud/get_public_ip.rb
fog-0.7.2 lib/fog/compute/requests/ecloud/get_public_ip.rb
fog-0.7.1 lib/fog/compute/requests/ecloud/get_public_ip.rb
fog-0.7.0 lib/fog/compute/requests/ecloud/get_public_ip.rb
fog-0.6.0 lib/fog/compute/requests/ecloud/get_public_ip.rb