1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/compute/parsers/aws/get_password_data.rb
Aaron Suggs 00278cf57a [compute|aws] Add get_password_data request.
This request only applies to MS Windows instances,
so use an MS Win AMI in the instance tests.

Relaxes the parser formats flexible to make tests
less brittle to other instances.

Depends on #302
2011-05-13 12:49:28 -04:00

26 lines
483 B
Ruby

module Fog
module Parsers
module AWS
module Compute
class GetPasswordData < Fog::Parsers::Base
def reset
@response = {}
end
def end_element(name)
case name
when 'instanceId', 'requestId', 'passwordData'
@response[name] = @value
when 'timestamp'
@response[name] = Time.parse(@value)
end
end
end
end
end
end
end