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

23 lines
466 B
Ruby
Raw Normal View History

module Fog
module Storage
class Rackspace
class Real
2009-10-28 01:20:50 -04:00
# Create a new container
#
# ==== Parameters
# * name<~String> - Name for container, should be < 256 bytes and must not contain '/'
#
def put_container(name)
request(
:expects => [201, 202],
2009-10-28 01:20:50 -04:00
:method => 'PUT',
:path => Fog::Rackspace.escape(name)
)
2009-10-28 01:20:50 -04:00
end
end
end
end
end