# File lib/fog/softlayer/requests/storage/put_dynamic_obj_manifest.rb, line 29
        def put_dynamic_obj_manifest(container, object, options = {})
          path = "#{Fog::Softlayer.escape(container)}/#{Fog::Softlayer.escape(object)}"
          headers = {'X-Object-Manifest' => path}.merge(options)
          request(
            :expects  => 201,
            :headers  => headers,
            :method   => 'PUT',
            :path     => path
          )
        end