Sha256: a430f771c8284af589647924d0395f4a2b20651e1519912f9dfe48305425c42c

Contents?: true

Size: 386 Bytes

Versions: 21

Compression:

Stored size: 386 Bytes

Contents

module Fog
  module Compute
    class Google
      class Mock
        def get_http_health_check(_check_name)
          # :no-coverage:
          Fog::Mock.not_implemented
          # :no-coverage:
        end
      end

      class Real
        def get_http_health_check(check_name)
          @compute.get_http_health_check(@project, check_name)
        end
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
fog-google-1.10.0 lib/fog/compute/google/requests/get_http_health_check.rb