Sha256: a18a4688fbca34688a9d28bd7a22237c32129c8e74663228e86b03f7c6456114
Contents?: true
Size: 608 Bytes
Versions: 7
Compression:
Stored size: 608 Bytes
Contents
module Fog module Compute class Google class Mock def set_target_http_proxy_url_map(_proxy_name, _url_map) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def set_target_http_proxy_url_map(proxy_name, url_map) @compute.set_target_http_proxy_url_map( @project, proxy_name, ::Google::Apis::ComputeV1::UrlMapReference.new( :url_map => url_map.class == String ? url_map : url_map.self_link ) ) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems