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/vcloudng/requests/compute/get_organizations.rb
Rodrigo Estebanez 60e8a5ec2a many changes...
2013-06-20 19:36:34 +02:00

22 lines
387 B
Ruby

module Fog
module Compute
class Vcloudng
class Real
def get_organizations
request({
:expects => 200,
:headers => { 'Accept' => 'application/*+xml;version=1.5' },
:method => 'GET',
:parser => Fog::ToHashDocument.new,
:path => "org"
})
end
end
end
end
end