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/storage/requests/hp/put_container.rb

24 lines
526 B
Ruby

module Fog
module HP
class Storage
class Real
# Create a new container
#
# ==== Parameters
# * name<~String> - Name for container, should be < 256 bytes and must not contain '/'
#
def put_container(name, options = {})
response = request(
:expects => [201, 202],
:headers => options,
:method => 'PUT',
:path => URI.escape(name)
)
response
end
end
end
end
end