Sha256: fc9c62462af396fa171f590709b0848f87f416d0e4ee410fe17f074ec554d0e3

Contents?: true

Size: 1.75 KB

Versions: 14

Compression:

Stored size: 1.75 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
        #
        # ==== Parameters
        # * bucket_name<~String> - name of bucket to get logging status for
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'BucketLoggingStatus'<~Hash>: (will be empty if logging is disabled)
        #       * '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]
        #
        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::AWS::Storage::GetBucketLogging.new,
            :query      => {'logging' => nil}
          })
        end

      end

      class Mock

        def get_bucket_logging(bucket_name)
          Fog::Mock.not_implemented
        end

      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
fog-0.3.13 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.12 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.11 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.10 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.9 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.8 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.7 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.6 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.5 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.4 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.3 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.2 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.1 lib/fog/aws/requests/storage/get_bucket_logging.rb
fog-0.3.0 lib/fog/aws/requests/storage/get_bucket_logging.rb