Sha256: b29d3d14cb7d0f8c123a4df54dd89af8e07c9f9ef457ad4d1128a7c0d502b2f3
Contents?: true
Size: 500 Bytes
Versions: 11
Compression:
Stored size: 500 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Returns an encrypted password for the VM # # {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/resetPasswordForVirtualMachine.html] def reset_password_for_virtual_machine(id) options = { 'command' => 'resetPasswordForVirtualMachine', 'id' => id } request(options) end end end end end
Version data entries
11 entries across 11 versions & 3 rubygems