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