Sha256: 67ccfe561854c313ac1dd498a39aca60d9951f1169e2d4cbe54adf88a19a9efd
Contents?: true
Size: 876 Bytes
Versions: 96
Compression:
Stored size: 876 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Hide hardware-assisted CPU virtualization from guest OS. # # 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-DisableNestedHv.html # @since vCloud API version 5.1 def post_disable_nested_hv(id) request( :expects => 202, :method => 'POST', :parser => Fog::ToHashDocument.new, :path => "vApp/#{id}/action/disableNestedHypervisor" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems