1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/requests/storage/put_object_manifest.rb

17 lines
385 B
Ruby
Raw Normal View History

module Fog
module Storage
class OpenStack
class Real
# Create a new dynamic large object manifest
#
# This is an alias for {#put_dynamic_obj_manifest} for backward compatibility.
def put_object_manifest(container, object, options = {})
put_dynamic_obj_manifest(container, object, options)
end
end
end
end
end