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

Version Path
fog-google-0.6.0 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.5.5 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.5.4 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.5.3 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.5.2 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.5.1 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.5.0 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.4.2 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.4.1 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.4.0 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.3.2 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.3.1 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.3.0 lib/fog/compute/google/requests/add_url_map_path_matchers.rb
fog-google-0.2.0 lib/fog/compute/google/requests/add_url_map_path_matchers.rb