Sha256: 8fbe98b59b2a408bfa7603d0722411217d9f4d9df2a92fec9f3fad116145f525
Contents?: true
Size: 695 Bytes
Versions: 14
Compression:
Stored size: 695 Bytes
Contents
module Fog module Compute class Google class Mock def add_url_map_path_matchers(_url_map, _path_matchers) Fog::Mock.not_implemented end end class Real def add_url_map_path_matchers(url_map, path_matchers) api_method = @compute.url_maps.update parameters = { "project" => @project, "urlMap" => url_map.name } if url_map.pathMatchers url_map.pathMatchers.concat(path_matchers) else url_map.pathMatchers = path_matchers end request(api_method, parameters, body_object = url_map) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems