Sha256: 26c83d887ce551ddf2970a9434e9d5c9c48e779458186cc95d0240bc6363ceeb

Contents?: true

Size: 1.9 KB

Versions: 14

Compression:

Stored size: 1.9 KB

Contents

module Fog
  module Storage
    class OpenStack
      class Real

        # Create a new manifest object
        #
        # Creates an object with a +X-Object-Manifest+ header that specifies the common prefix ("<container>/<prefix>")
        # for all uploaded segments. Retrieving the manifest object streams all segments matching this prefix.
        # Segments must sort in the order they should be concatenated. Note that any future objects stored in the container
        # along with the segments that match the prefix will be included when retrieving the manifest object.
        #
        # All segments must be stored in the same container, but may be in a different container than the manifest object.
        # The default +X-Object-Manifest+ header is set to "+container+/+object+", but may be overridden in +options+
        # to specify the prefix and/or the container where segments were stored.
        # If overridden, names should be CGI escaped (excluding spaces) if needed (see {Fog::Rackspace.escape}).
        #
        # @param container [String] Name for container where +object+ will be stored. Should be < 256 bytes and must not contain '/'
        # @param object [String] Name for manifest object.
        # @param options [Hash] Config headers for +object+.
        # @option options [String] 'X-Object-Manifest' ("container/object") "<container>/<prefix>" for segment objects.
        #
        # @see http://docs.openstack.org/api/openstack-object-storage/1.0/content/large-object-creation.html
        def put_object_manifest(container, object, options = {})
          path = "#{Fog::OpenStack.escape(container)}/#{Fog::OpenStack.escape(object)}"
          headers = {'X-Object-Manifest' => path}.merge(options)
          request(
            :expects  => 201,
            :headers  => headers,
            :method   => 'PUT',
            :path     => path
          )
        end

      end
    end
  end
end

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
gapinc-fog-1.12.1.2.1 lib/fog/openstack/requests/storage/put_object_manifest.rb
fog-maestrodev-1.15.0.20130927082724 lib/fog/openstack/requests/storage/put_object_manifest.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/openstack/requests/storage/put_object_manifest.rb
fog-1.15.0 lib/fog/openstack/requests/storage/put_object_manifest.rb
gapinc-fog-1.14.0 lib/fog/openstack/requests/storage/put_object_manifest.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/openstack/requests/storage/put_object_manifest.rb
fog-1.14.0 lib/fog/openstack/requests/storage/put_object_manifest.rb
fog-1.13.0 lib/fog/openstack/requests/storage/put_object_manifest.rb
gapinc-fog-1.12.1.2 lib/fog/openstack/requests/storage/put_object_manifest.rb
gapinc-fog-1.12.1.1 lib/fog/openstack/requests/storage/put_object_manifest.rb
gapinc-fog-1.12.1a lib/fog/openstack/requests/storage/put_object_manifest.rb
gapinc-fog-1.12.1 lib/fog/openstack/requests/storage/put_object_manifest.rb
fog-1.12.1 lib/fog/openstack/requests/storage/put_object_manifest.rb
fog-1.12.0 lib/fog/openstack/requests/storage/put_object_manifest.rb