mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
334 B
Ruby
20 lines
334 B
Ruby
module Fog
|
|
module Compute
|
|
class VcloudDirector
|
|
class Real
|
|
|
|
def delete_vapp(vapp_id)
|
|
|
|
request(
|
|
:expects => 202,
|
|
:method => 'DELETE',
|
|
:parser => Fog::ToHashDocument.new,
|
|
:path => "vApp/#{vapp_id}"
|
|
)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|