Sha256: a81d7f9650d5e3b271821c0338ebca0ce9c4e10ba71de2328f9e7247a73abece
Contents?: true
Size: 925 Bytes
Versions: 96
Compression:
Stored size: 925 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Perform storage profile compliance check on a VM. # # This operation is asynchronous and return a task. When the task # completes, the compliance check on the VM has been completed and the # results can be retrieved. # # @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-CheckVmCompliance.html # @since vCloud API version 5.1 def post_check_vm_compliance(id) request( :expects => 202, :method => 'POST', :parser => Fog::ToHashDocument.new, :path => "vApp/#{id}/action/checkCompliance" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems