lib/fog/rackspace/requests/storage/put_container.rb in fog-maestrodev-1.8.0.20130114204828 vs lib/fog/rackspace/requests/storage/put_container.rb in fog-maestrodev-1.14.0.20130806165225
- old
+ new
@@ -5,14 +5,18 @@
# Create a new container
#
# ==== Parameters
# * name<~String> - Name for container, should be < 256 bytes and must not contain '/'
- #
- def put_container(name)
+ # @raise [Fog::Storage::Rackspace::NotFound] - HTTP 404
+ # @raise [Fog::Storage::Rackspace::BadRequest] - HTTP 400
+ # @raise [Fog::Storage::Rackspace::InternalServerError] - HTTP 500
+ # @raise [Fog::Storage::Rackspace::ServiceError]
+ def put_container(name, options={})
request(
:expects => [201, 202],
:method => 'PUT',
+ :headers => options,
:path => Fog::Rackspace.escape(name)
)
end
end