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.
27 lines
708 B
Ruby
27 lines
708 B
Ruby
module Fog
|
|
module Compute
|
|
class Google
|
|
class Mock
|
|
def set_metadata(instance, zone, fingerprint, metadata={})
|
|
Fog::Mock.not_implemented
|
|
end
|
|
end
|
|
|
|
class Real
|
|
def remove_target_pool_instances(target_pool, instances)
|
|
api_method = @compute.target_pools.remove_instance
|
|
parameters = {
|
|
'project' => @project,
|
|
'targetPool' => target_pool.name,
|
|
'region' => target_pool.region.split('/')[-1]
|
|
}
|
|
body = {
|
|
'instances' => instances.map { |i| { 'instance' => i } }
|
|
}
|
|
|
|
request(api_method, parameters, body_object=body)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|