mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
488 B
Ruby
20 lines
488 B
Ruby
|
module Fog
|
||
|
module Compute
|
||
|
class VcloudDirector
|
||
|
class Real
|
||
|
# @return [Excon::Response]
|
||
|
# * body<~Hash>:
|
||
|
# @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/DELETE-Logout.html
|
||
|
# vCloud API Documentation
|
||
|
def delete_logout
|
||
|
request(
|
||
|
:expects => 204,
|
||
|
:method => 'DELETE',
|
||
|
:path => 'session'
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|