Sha256: 963299a3e9fe9385d39eed7d16234877cb60589ba18f75ce5a485726baa51392
Contents?: true
Size: 556 Bytes
Versions: 14
Compression:
Stored size: 556 Bytes
Contents
module Fog module Compute class Google class Mock def insert_http_health_check(_check_name, _options = {}) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def insert_http_health_check(check_name, opts = {}) @compute.insert_http_health_check( @project, ::Google::Apis::ComputeV1::HttpHealthCheck.new( **opts.merge(:name => check_name) ) ) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems