Class: Fog::Compute::Google::HttpHealthChecks

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/compute/google/models/http_health_checks.rb

Instance Method Summary collapse

Instance Method Details

#all(_filters = {}) ⇒ Object



7
8
9
10
# File 'lib/fog/compute/google/models/http_health_checks.rb', line 7

def all(_filters = {})
  data = service.list_http_health_checks.to_h[:items] || []
  load(data)
end

#get(identity) ⇒ Object



12
13
14
15
16
17
18
19
# File 'lib/fog/compute/google/models/http_health_checks.rb', line 12

def get(identity)
  response = service.get_http_health_check(identity)
  return nil if response.nil?
  new(response.to_h)
rescue ::Google::Apis::ClientError => e
  raise e unless e.status_code == 404
  nil
end