Sha256: 6d74914f97aedf7c9585cc264021ffd26de436eca3ace1001b92d85e3c823425

Contents?: true

Size: 502 Bytes

Versions: 20

Compression:

Stored size: 502 Bytes

Contents

module Fog
  module Compute
    class Google
      class Mock
        def insert_http_health_check(_check_name, _options = {})
          Fog::Mock.not_implemented
        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

20 entries across 20 versions & 1 rubygems

Version Path
fog-google-1.9.1 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.9.0 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.8.2 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.8.1 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.8.0 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.7.1 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.7.0 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.6.0 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.5.0 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.4.0 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.3.3 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.3.2 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.3.1 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.3.0 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.2.2 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.2.1 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.2.0 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.1.0 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.0.1 lib/fog/compute/google/requests/insert_http_health_check.rb
fog-google-1.0.0 lib/fog/compute/google/requests/insert_http_health_check.rb