# File lib/fog/storage/openstack/requests/put_static_obj_manifest.rb, line 42
        def put_static_obj_manifest(container, object, segments, options = {})
          request(
            :expects => 201,
            :method  => 'PUT',
            :headers => options,
            :body    => Fog::JSON.encode(segments),
            :path    => "#{Fog::OpenStack.escape(container)}/#{Fog::OpenStack.escape(object)}",
            :query   => {'multipart-manifest' => 'put'}
          )
        end