Sha256: 08d406030f642cfd64013478b654874e06f879f26edb70d6e9abd1f7374e5e0a

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 KB

Contents

module Fog
  module AWS
    class Compute
      class Real

        require 'fog/compute/parsers/aws/get_password_data'

        # Retrieves the encrypted administrator password for an instance running Windows.
        #
        # ==== Parameters
        # * instance_id<~String> - A Windows instance ID
        #
        # ==== Returns
        # # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'instanceId'<~String> - Id of instance
        #     * 'passwordData'<~String> - The encrypted, base64-encoded password of the instance.
        #     * 'requestId'<~String> - Id of request
        #     * 'timestamp'<~Time> - Timestamp of last update to output
        #
        # See http://docs.amazonwebservices.com/AWSEC2/2010-08-31/APIReference/index.html?ApiReference-query-GetPasswordData.html
        def get_password_data(instance_id)
          request(
            'Action'      => 'GetPasswordData',
            'InstanceId'  => instance_id,
            :idempotent   => true,
            :parser       => Fog::Parsers::AWS::Compute::GetPasswordData.new
          )
        end

      end

      class Mock

        def get_password_data(instance_id)
          Fog::Mock.not_implemented
        end

      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fog-0.8.1 lib/fog/compute/requests/aws/get_password_data.rb