mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
460 B
Ruby
22 lines
460 B
Ruby
module Fog
|
|
module Rackspace
|
|
class Identity
|
|
class Real
|
|
def list_tenants()
|
|
response = request(
|
|
:expects => [200, 203],
|
|
:method => 'GET',
|
|
:path => 'tenants'
|
|
)
|
|
|
|
if response.body.include? 'tenant'
|
|
response.body['tenants'] = [response.body['tenant']]
|
|
response.body.delete('tenant')
|
|
end
|
|
|
|
response
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|