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

31 lines
595 B
Ruby

module Fog
module Rackspace
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)
response = request(
:expects => [201, 202],
:method => 'PUT',
:path => CGI.escape(name)
)
response
end
end
class Mock
def put_container(name)
Fog::Mock.not_implemented
end
end
end
end
end