Sha256: 0d7240d0c8c8cdcabedd3067958ec5b2d9d78e0c3e828bf7ba1e72e6577c183c
Contents?: true
Size: 600 Bytes
Versions: 7
Compression:
Stored size: 600 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
7 entries across 7 versions & 2 rubygems