Method: Fog::Compute::AWS::Real#get_password_data
- Defined in:
- lib/fog/compute/requests/aws/get_password_data.rb
#get_password_data(instance_id) ⇒ Object
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
24 25 26 27 28 29 30 31 |
# File 'lib/fog/compute/requests/aws/get_password_data.rb', line 24 def get_password_data(instance_id) request( 'Action' => 'GetPasswordData', 'InstanceId' => instance_id, :idempotent => true, :parser => Fog::Parsers::Compute::AWS::GetPasswordData.new ) end |