Sha256: a7748d4eee0ef0e726464b872b11d61fef40944eea6c8eb095c03c7774b1a877

Contents?: true

Size: 1.65 KB

Versions: 37

Compression:

Stored size: 1.65 KB

Contents

module Fog
  module AWS
    class Storage
      class Real
        require 'fog/aws/parsers/storage/get_bucket_logging'

        # Get logging status for an S3 bucket
        #
        # @param bucket_name [String] name of bucket to get logging status for
        #
        # @return [Excon::Response] response:
        #   * body [Hash]:
        #     * BucketLoggingStatus (will be empty if logging is disabled) [Hash]:
        #       * LoggingEnabled [Hash]:
        #         * TargetBucket [String] - bucket where logs are stored
        #         * TargetPrefix [String] - prefix logs are stored with
        #         * TargetGrants [Array]:
        #           * Grant [Hash]:
        #             * Grantee [Hash]:
        #               * DisplayName [String] - Display name of grantee
        #               * ID [String] - Id of grantee
        #               or
        #               * URI [String] - URI of group to grant access for
        #             * Permission [String] - Permission, in [FULL_CONTROL, WRITE, WRITE_ACP, READ, READ_ACP]
        #
        # @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlogging.html

        def get_bucket_logging(bucket_name)
          unless bucket_name
            raise ArgumentError.new('bucket_name is required')
          end
          request({
            :expects    => 200,
            :headers    => {},
            :bucket_name => bucket_name,
            :idempotent => true,
            :method     => 'GET',
            :parser     => Fog::Parsers::AWS::Storage::GetBucketLogging.new,
            :query      => {'logging' => nil}
          })
        end
      end
    end
  end
end

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
fog-aws-3.30.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.29.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.28.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.27.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.26.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.25.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.24.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.23.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.22.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.21.1 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.21.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.20.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.19.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.18.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.17.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.16.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.15.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.14.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.13.0 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-aws-3.12.0 lib/fog/aws/requests/storage/get_bucket_logging.rb