mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
38 lines
733 B
Ruby
38 lines
733 B
Ruby
module Fog
|
|
module Compute
|
|
class Google
|
|
|
|
class Mock
|
|
|
|
def insert_image(image_name)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
|
|
end
|
|
|
|
class Real
|
|
|
|
def insert_image(image_name, source)
|
|
api_method = @compute.images.insert
|
|
parameters = {
|
|
'project' => @project,
|
|
}
|
|
body_object = {
|
|
"name" => image_name,
|
|
"sourceType" => "RAW",
|
|
"source" => source,
|
|
"preferredKernel" => '',
|
|
}
|
|
|
|
result = self.build_result(
|
|
api_method,
|
|
parameters,
|
|
body_object=body_object)
|
|
response = self.build_response(result)
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|