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/compute/requests/ninefold/list_events.rb
2011-06-04 20:02:12 +10:00

23 lines
405 B
Ruby

module Fog
module Ninefold
class Compute
class Real
def list_events(options = {})
request('listEvents', options, :expects => [200],
:response_prefix => 'listeventsresponse/event', :response_type => Array)
end
end
class Mock
def list_events(*args)
Fog::Mock.not_implemented
end
end
end
end
end