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/google/requests/compute/list_images.rb

31 lines
513 B
Ruby
Raw Normal View History

2012-10-22 17:15:33 -07:00
module Fog
module Compute
2012-12-04 12:05:11 -08:00
class Google
2012-10-22 17:15:33 -07:00
class Mock
def list_images
Fog::Mock.not_implemented
end
end
class Real
def list_images(project=nil)
2012-10-22 17:15:33 -07:00
api_method = @compute.images.list
project=@project if project.nil?
2012-10-22 17:15:33 -07:00
parameters = {
'project' => project
2012-10-22 17:15:33 -07:00
}
result = self.build_result(api_method, parameters)
response = self.build_response(result)
end
end
end
end
end