module Fog module Compute class VcloudDirector class Real def undeploy(vapp_id) body = < shutdown EOF request( :body => body, :expects => 202, :method => 'POST', :headers => {'Content-Type' => 'application/vnd.vmware.vcloud.undeployVAppParams+xml' }, :path => "vApp/#{vapp_id}/action/undeploy" ) end end end end end