# File lib/fog/network/openstack/requests/remove_router_interface.rb, line 5
        def remove_router_interface(router_id, subnet_id, _options = {})
          data = {
            'subnet_id' => subnet_id,
          }

          request(
            :body    => Fog::JSON.encode(data),
            :expects => [200],
            :method  => 'PUT',
            :path    => "routers/#{router_id}/remove_router_interface"
          )
        end