class Fog::Parsers::AWS::Compute::GetPasswordData
Public Instance Methods
end_element(name)
click to toggle source
# File lib/fog/aws/parsers/compute/get_password_data.rb, line 10 def end_element(name) case name when 'instanceId', 'requestId', 'passwordData' @response[name] = @value when 'timestamp' @response[name] = Time.parse(@value) end end
reset()
click to toggle source
# File lib/fog/aws/parsers/compute/get_password_data.rb, line 6 def reset @response = {} end