Sha256: 033afc5fa0d82e204beda9661fb6ad3f5d0adb9c7d1e6f7f7c726f6eea5774d0
Contents?: true
Size: 858 Bytes
Versions: 96
Compression:
Stored size: 858 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Install VMware Tools on a running VM. # # This operation is asynchronous and returns a task that you can # monitor to track the progress of the request. # # @param [String] id Object identifier of the VM. # @return [Excon::Response] # * body<~Hash>: # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/POST-InstallVMwareTools.html # @since vCloud API version 1.5 def post_install_vmware_tools(id) request( :expects => 202, :method => 'POST', :parser => Fog::ToHashDocument.new, :path => "vApp/#{id}/action/installVMwareTools" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems