1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/vcloud_director/requests/compute/delete_vapp.rb
Nick Osborn 7a1d4e5075 [vcloud_director] Raise provider-specific exceptions.
HEADS UP: This is a breaking change for anyone rescuing Excon errors.
2013-10-14 01:10:19 +01:00

29 lines
863 B
Ruby

module Fog
module Compute
class VcloudDirector
class Real
# Delete a vApp or 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 vApp.
# @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/DELETE-VApp.html
# @since vCloud API version 0.9
def delete_vapp(id)
request(
:expects => 202,
:method => 'DELETE',
:parser => Fog::ToHashDocument.new,
:path => "vApp/#{id}"
)
end
end
end
end
end