Sha256: a2d5f450c0d417bbac7a1194168b0f98c8989eb72d715b418d199abb5e69eb0f
Contents?: true
Size: 577 Bytes
Versions: 14
Compression:
Stored size: 577 Bytes
Contents
module Fog module Compute class Google class Mock def update_http_health_check(_check_name, _opts = {}) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def update_http_health_check(check_name, opts = {}) @compute.update_http_health_check( @project, check_name, ::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