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

30 lines
759 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
2013-09-26 17:55:36 +02:00
def list_images(project=@project)
images = data(project)[:images].values
build_excon_response({
2013-09-26 17:55:36 +02:00
"kind" => "compute#imageList",
"selfLink" => "https://www.googleapis.com/compute/#{api_version}/projects/#{project}/global/images",
2013-09-26 17:55:36 +02:00
"id" => "projects/#{project}/global/images",
"items" => images
})
2012-10-22 17:15:33 -07:00
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
}
request(api_method, parameters)
2012-10-22 17:15:33 -07:00
end
end
end
end
end