Sha256: c83fc3ae0702e8c1c7a8e62c991abb84597272570d62ec09f8b9f22d09b390f6

Contents?: true

Size: 747 Bytes

Versions: 10

Compression:

Stored size: 747 Bytes

Contents

module Fog
  module AWS
    class EC2

      # Retrieve console output for specified instance
      #
      # ==== Parameters
      # * instance_id<~String> - Id of instance to get console output from
      #
      # ==== Returns
      # # * response<~Fog::AWS::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
        }, Fog::Parsers::AWS::EC2::GetConsoleOutput.new)
      end

    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
geemus-fog-0.0.0 lib/fog/aws/requests/ec2/get_console_output.rb
geemus-fog-0.0.1 lib/fog/aws/requests/ec2/get_console_output.rb
geemus-fog-0.0.3 lib/fog/aws/requests/ec2/get_console_output.rb
fog-0.0.9 lib/fog/aws/requests/ec2/get_console_output.rb
fog-0.0.8 lib/fog/aws/requests/ec2/get_console_output.rb
fog-0.0.7 lib/fog/aws/requests/ec2/get_console_output.rb
fog-0.0.6 lib/fog/aws/requests/ec2/get_console_output.rb
fog-0.0.5 lib/fog/aws/requests/ec2/get_console_output.rb
fog-0.0.4 lib/fog/aws/requests/ec2/get_console_output.rb
fog-0.0.3 lib/fog/aws/requests/ec2/get_console_output.rb