mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
00278cf57a
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
26 lines
483 B
Ruby
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
|