1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb
2015-01-02 09:42:20 -08:00

26 lines
770 B
Ruby

module Fog
module Storage
class AWS
class Real
# Delete lifecycle configuration for a bucket
#
# @param bucket_name [String] name of bucket to delete lifecycle configuration from
#
# @return [Excon::Response] response:
# * status [Integer] - 204
#
# @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETElifecycle.html
def delete_bucket_lifecycle(bucket_name)
request({
:expects => 204,
:headers => {},
:bucket_name => bucket_name,
:method => 'DELETE',
:query => {'lifecycle' => nil}
})
end
end
end
end
end