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

Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
24 lines
543 B
Ruby
24 lines
543 B
Ruby
module Fog
|
|
module Compute
|
|
class Google
|
|
class Mock
|
|
def delete_http_health_check(name)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
end
|
|
|
|
class Real
|
|
def delete_http_health_check(name)
|
|
api_method = @compute.http_health_checks.delete
|
|
parameters = {
|
|
'project' => @project,
|
|
'httpHealthCheck' => name
|
|
}
|
|
|
|
result = self.build_result(api_method, parameters)
|
|
response = self.build_response(result)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|