Sha256: 1373cca3732ce8ee13753da743bbdc41c3290fc6908c4e4e089fff528bd3b217
Contents?: true
Size: 548 Bytes
Versions: 20
Compression:
Stored size: 548 Bytes
Contents
module Fog module Compute class Google class Mock def list_http_health_checks Fog::Mock.not_implemented 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
20 entries across 20 versions & 1 rubygems