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
Brian D. Burns 56c28d2cb2 [openstack|storage] add #put_dynamic_obj_manifest
Renames the current #put_object_manifest method to better differentiate
this from the new #put_static_obj_manifest method. #put_object_manifest
has been retained for backward compatibility.
2013-09-29 18:43:12 +00:00

16 lines
385 B
Ruby

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