mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
30 lines
509 B
Ruby
30 lines
509 B
Ruby
module Fog
|
|
module Compute
|
|
class GCE
|
|
|
|
class Mock
|
|
|
|
def get_image(image_name)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
|
|
end
|
|
|
|
class Real
|
|
|
|
def get_image(image_name)
|
|
api_method = @compute.images.get
|
|
parameters = {
|
|
'project' => 'google',
|
|
'image' => image_name
|
|
}
|
|
|
|
result = self.build_result(api_method, parameters)
|
|
response = self.build_response(result)
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|