mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
38 lines
620 B
Ruby
38 lines
620 B
Ruby
unless Fog.mocking?
|
|
|
|
module Fog
|
|
module Rackspace
|
|
class Files
|
|
|
|
# Create a new container
|
|
#
|
|
# ==== Parameters
|
|
# * name<~String> - Name for container, should be < 256 bytes and must not contain '/'
|
|
#
|
|
def put_container(name)
|
|
response = storage_request(
|
|
:expects => 201,
|
|
:method => 'PUT',
|
|
:path => CGI.escape(name)
|
|
)
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
else
|
|
|
|
module Fog
|
|
module Rackspace
|
|
class Servers
|
|
|
|
def put_container
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|