Sha256: c3b20187c1572badb85d4e22b34d0d0ff4219771db610ce54b4b7164a481e909
Contents?: true
Size: 1.17 KB
Versions: 96
Compression:
Stored size: 1.17 KB
Contents
module Fog module Compute class VcloudDirector class Real extend Fog::Deprecation deprecate :post_vm_poweroff, :post_power_off_vapp # Power off a vApp or VM. # # If used on a vApp, powers off all VMs in the vApp. If used on a VM, # powers off the VM. This operation is available only for a vApp or VM # that is powered on. # # 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 vApp or VM. # @return [Excon::Response] # * body<~Hash>: # # @raise [Fog::Compute::VcloudDirector::BadRequest] # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/POST-PowerOffVApp.html # @since vCloud API version 0.9 def post_power_off_vapp(id) request( :expects => 202, :method => 'POST', :parser => Fog::ToHashDocument.new, :path => "vApp/#{id}/power/action/powerOff" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems