Sha256: b2d0ee3cee8efeccc2e11f3e391e72cede44ce87e73f883f52bdc8d8d1175c37
Contents?: true
Size: 587 Bytes
Versions: 7
Compression:
Stored size: 587 Bytes
Contents
module Fog module Compute class Google class Mock def invalidate_url_map_cache(_url_map_name, _path, _host = nil) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def invalidate_url_map_cache(url_map_name, path, host = nil) @compute.invalidate_url_map_cache( @project, url_map_name, ::Google::Apis::ComputeV1::CacheInvalidationRule.new( :path => path, :host => host ) ) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems