fog/fog-google

View on GitHub
lib/fog/compute/google/requests/delete_target_http_proxy.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module Compute
    class Google
      class Mock
        def delete_target_http_proxy(_proxy_name)
          # :no-coverage:
          Fog::Mock.not_implemented
          # :no-coverage:
        end
      end

      class Real
        def delete_target_http_proxy(proxy_name)
          @compute.delete_target_http_proxy(@project, proxy_name)
        end
      end
    end
  end
end