Sha256: 3cd67734279764090948b8bb5a57e1b8b191fa29429ec785bbc469d0e0bb6b7e
Contents?: true
Size: 523 Bytes
Versions: 20
Compression:
Stored size: 523 Bytes
Contents
module Fog module Compute class Google class Mock def update_http_health_check(_check_name, _opts = {}) Fog::Mock.not_implemented 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
20 entries across 20 versions & 1 rubygems