Sha256: eb8dfe3566e6fae008bcfaceb2aa4913a89764a876e82d9a4ee91a6a4efd2e35
Contents?: true
Size: 581 Bytes
Versions: 14
Compression:
Stored size: 581 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
14 entries across 14 versions & 1 rubygems