Sha256: e80eb937fa536fb4387d6698142b4cc951327b13b0e0fcc5b9f9a6b74fce25ab

Contents?: true

Size: 873 Bytes

Versions: 2

Compression:

Stored size: 873 Bytes

Contents

module Fog
  module VcloudDirector
    class Compute
      class Real
        # Expose hardware-assisted CPU virtualization to 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-EnableNestedHv.html
        # @since vCloud API version 5.1
        def post_enable_nested_hv(id)
          request(
            :expects => 202,
            :method  => 'POST',
            :parser  => Fog::ToHashDocument.new,
            :path    => "vApp/#{id}/action/enableNestedHypervisor"
          )
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fog-vcloud-director-0.3.1 lib/fog/vcloud_director/requests/compute/post_enable_nested_hv.rb
fog-vcloud-director-0.3.0 lib/fog/vcloud_director/requests/compute/post_enable_nested_hv.rb