Sha256: ce9d69b050af36b1d130efc2ea3756337149c64fe902b06f56e9d5453fdfef37
Contents?: true
Size: 588 Bytes
Versions: 14
Compression:
Stored size: 588 Bytes
Contents
module Fog module Compute class Google class Mock def list_http_health_checks # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def list_http_health_checks(filter: nil, max_results: nil, order_by: nil, page_token: nil) @compute.list_http_health_checks( @project, filter: filter, max_results: max_results, order_by: order_by, page_token: page_token ) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems