Sha256: 42bf5347b1932489d3c4d9011dc22aa9a31596d9696ef95aa0d9f58d80aea212
Contents?: true
Size: 630 Bytes
Versions: 10
Compression:
Stored size: 630 Bytes
Contents
require 'fog/core/collection' require 'fog/google/models/compute/http_health_check' module Fog module Compute class Google class HttpHealthChecks < Fog::Collection model Fog::Compute::Google::HttpHealthCheck def all(filters={}) data = service.list_http_health_checks.body['items'] || [] load(data) end def get(identity) resonse = nil response = service.get_http_health_check(identity) return nil if response.nil? new(response.body) rescue Fog::Errors::NotFound nil end end end end end
Version data entries
10 entries across 10 versions & 3 rubygems