mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00

Commit d801b27
introduced a new Shared module with logic to initialize
a google_client_api and to make requests.
This commit refactors Compute to use the new Shared module.
23 lines
469 B
Ruby
23 lines
469 B
Ruby
module Fog
|
|
module Compute
|
|
class Google
|
|
class Mock
|
|
def delete_snapshot(snapshot_name)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
end
|
|
|
|
class Real
|
|
def delete_snapshot(snapshot_name)
|
|
api_method = @compute.snapshots.delete
|
|
parameters = {
|
|
'project' => @project,
|
|
'snapshot' => snapshot_name,
|
|
}
|
|
|
|
request(api_method, parameters)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|