class Fog::Compute::Google::HttpHealthChecks

Public Instance Methods

all(_filters = {}) click to toggle source
# File lib/fog/compute/google/models/http_health_checks.rb, line 7
def all(_filters = {})
  data = service.list_http_health_checks.body["items"] || []
  load(data)
end
get(identity) click to toggle source
# File lib/fog/compute/google/models/http_health_checks.rb, line 12
def get(identity)
  response = nil
  response = service.get_http_health_check(identity)
  return nil if response.nil?
  new(response.body)
rescue Fog::Errors::NotFound
  nil
end