mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
37 lines
708 B
Ruby
37 lines
708 B
Ruby
module Fog
|
|
module Compute
|
|
class Google
|
|
|
|
class Mock
|
|
|
|
def get_server(server_name)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
|
|
end
|
|
|
|
class Real
|
|
|
|
def get_server(server_name, zone_name)
|
|
if zone_name.is_a? Excon::Response
|
|
zone = zone_name.body["name"]
|
|
else
|
|
zone = zone_name
|
|
end
|
|
|
|
api_method = @compute.instances.get
|
|
parameters = {
|
|
'project' => @project,
|
|
'zone' => zone,
|
|
'instance' => server_name
|
|
}
|
|
|
|
result = self.build_result(api_method, parameters)
|
|
response = self.build_response(result)
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|