mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
3ebe34c280
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.
24 lines
507 B
Ruby
24 lines
507 B
Ruby
module Fog
|
|
module Compute
|
|
class Google
|
|
class Mock
|
|
def reset_server(identity, zone)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
end
|
|
|
|
class Real
|
|
def reset_server(identity, zone)
|
|
api_method = @compute.instances.reset
|
|
parameters = {
|
|
'project' => @project,
|
|
'instance' => identity,
|
|
'zone' => zone.split('/')[-1],
|
|
}
|
|
|
|
request(api_method, parameters)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|