Sha256: 461e7d9479ce1543389a9703b4eee9cbd654d1d3cf18d0cebb8b79be10cbdd70

Contents?: true

Size: 1.39 KB

Versions: 1

Compression:

Stored size: 1.39 KB

Contents

module Fog
  module Storage
    class AWS
      class Real

        require 'rackspace-fog/aws/parsers/storage/get_bucket_lifecycle'

        # Get bucket lifecycle configuration
        #
        # ==== Parameters
        # * bucket_name<~String> - name of bucket to get lifecycle configuration for
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'Rules'<~Array> - object expire rules
        #        * 'ID'<~String>      - Unique identifier for the rule
        #        * 'Prefix'<~String>  - Prefix identifying one or more objects to which the rule applies
        #        * 'Enabled'<~Boolean> - if rule is currently being applied
        #        * 'Days'<~Integer>   - lifetime, in days, of the objects that are subject to the rule
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlifecycle.html

        def get_bucket_lifecycle(bucket_name)
          request({
                    :expects  => 200,
                    :headers  => {},
                    :host     => "#{bucket_name}.#{@host}",
                    :idempotent => true,
                    :method   => 'GET',
                    :parser   => Fog::Parsers::Storage::AWS::GetBucketLifecycle.new,
                    :query    => {'lifecycle' => nil}
                  })
        end

      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rackspace-fog-1.4.2 lib/rackspace-fog/aws/requests/storage/get_bucket_lifecycle.rb