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_logout.rb
2013-10-13 20:23:24 +01:00

18 lines
434 B
Ruby

module Fog
module Compute
class VcloudDirector
class Real
# @return [Excon::Response]
#
# @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/DELETE-Logout.html
def delete_logout
request(
:expects => 204,
:method => 'DELETE',
:path => 'session'
)
end
end
end
end
end