Sha256: 606ab1406e7fc46f0b5dd3f13b9c52ff404f096116949311636bd339531f59fe

Contents?: true

Size: 1.83 KB

Versions: 61

Compression:

Stored size: 1.83 KB

Contents

module Fog
  module Compute
    class AWS
      class Real
        require 'fog/aws/parsers/compute/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
        #
        # {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-GetPasswordData.html]
        def get_password_data(instance_id)
          request(
            'Action'      => 'GetPasswordData',
            'InstanceId'  => instance_id,
            :idempotent   => true,
            :parser       => Fog::Parsers::Compute::AWS::GetPasswordData.new
          )
        end
      end

      class Mock
        def get_password_data(instance_id)
          response = Excon::Response.new
          if instance = self.data[:instances][instance_id]
            response.status = 200
            response.body = {
              'instanceId'   => instance_id,
              'passwordData' => nil,
              'requestId'    => Fog::AWS::Mock.request_id,
              'timestamp'    => Time.now
            }
            response
          else;
            raise Fog::Compute::AWS::NotFound.new("The instance ID '#{instance_id}' does not exist")
          end
        end
      end
    end
  end
end

Version data entries

61 entries across 59 versions & 6 rubygems

Version Path
fog-aws-3.1.0 lib/fog/aws/requests/compute/get_password_data.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-aws-2.0.1/lib/fog/aws/requests/compute/get_password_data.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-aws-2.0.1/lib/fog/aws/requests/compute/get_password_data.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-aws-2.0.1/lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-3.0.0 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-2.0.1 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-2.0.0 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-1.4.1 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-1.4.0 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-1.3.0 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-1.2.1 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-1.2.0 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-1.1.0 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-1.0.0 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-0.13.0 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-0.12.0 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-0.11.0 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-0.10.0 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-0.9.4 lib/fog/aws/requests/compute/get_password_data.rb
fog-aws-0.9.3 lib/fog/aws/requests/compute/get_password_data.rb