Sha256: 0430b0a43cbecf6a808480b0588889f9157dd523084b9ee847405bd474d1dd93

Contents?: true

Size: 714 Bytes

Versions: 22

Compression:

Stored size: 714 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 then
            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

22 entries across 20 versions & 5 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-google-0.1.0/lib/fog/google/requests/compute/add_url_map_path_matchers.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-google-0.1.0/lib/fog/google/requests/compute/add_url_map_path_matchers.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-google-0.1.0/lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-google-0.1.3 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-google-0.1.2 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-google-0.1.1 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-google-0.1.0 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-google-0.0.9 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-google-0.0.7/lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-google-0.0.7 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-google-0.0.6 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-google-0.0.5 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-google-0.0.4 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-google-0.0.3 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-google-0.0.2 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-1.29.0 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-1.28.0 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-1.27.0 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-1.26.0 lib/fog/google/requests/compute/add_url_map_path_matchers.rb
fog-1.25.0 lib/fog/google/requests/compute/add_url_map_path_matchers.rb