mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
24 lines
415 B
Ruby
24 lines
415 B
Ruby
|
module Fog
|
||
|
module Ninefold
|
||
|
class Compute
|
||
|
class Real
|
||
|
|
||
|
def list_accounts(options = {})
|
||
|
request('listAccounts', options, :expects => [200],
|
||
|
:response_prefix => 'listaccountsresponse/account', :response_type => Array)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
class Mock
|
||
|
|
||
|
def list_accounts(*args)
|
||
|
Fog::Mock.not_implemented
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|