Sha256: 7cd78e98ef6c0c6e6931a33c843ee543011141c8ae4a35de3adb0343eced61e6

Contents?: true

Size: 1.7 KB

Versions: 61

Compression:

Stored size: 1.7 KB

Contents

module Fog
  module Storage
    class InternetArchive
      class Real

        require 'fog/internet_archive/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    => {},
            :host       => "#{bucket_name}.#{@host}",
            :idempotent => true,
            :method     => 'GET',
            :parser     => Fog::Parsers::Storage::InternetArchive::GetBucketLogging.new,
            :query      => {'logging' => nil}
          })
        end

      end
    end
  end
end

Version data entries

61 entries across 61 versions & 6 rubygems

Version Path
fog-1.22.0 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-1.21.0 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-1.20.0 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-1.19.0 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/internet_archive/requests/storage/get_bucket_logging.rb