module Fog module AWS class Compute class Real require 'fog/compute/parsers/aws/get_console_output' # Retrieve console output for specified instance # # ==== Parameters # * instance_id<~String> - Id of instance to get console output from # # ==== Returns # # * response<~Excon::Response>: # * body<~Hash>: # * 'instanceId'<~String> - Id of instance # * 'output'<~String> - Console output # * 'requestId'<~String> - Id of request # * 'timestamp'<~Time> - Timestamp of last update to output def get_console_output(instance_id) request( 'Action' => 'GetConsoleOutput', 'InstanceId' => instance_id, :idempotent => true, :parser => Fog::Parsers::AWS::Compute::GetConsoleOutput.new ) end end class Mock def get_console_output(instance_id) response = Excon::Response.new if instance = @data[:instances][instance_id] response.status = 200 response.body = { 'instanceId' => instance_id, 'output' => nil, 'requestId' => Fog::AWS::Mock.request_id, 'timestamp' => Time.now } response else; raise Fog::AWS::Compute::NotFound.new("The instance ID '#{instance_id}' does not exist") end end end end end end