mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
56c28d2cb2
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.
16 lines
385 B
Ruby
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
|