Sha256: 0c9a6a46578e0829336914be0f8c7e23565f32233cb071e24c6ce6d7894ce935
Contents?: true
Size: 1.09 KB
Versions: 42
Compression:
Stored size: 1.09 KB
Contents
module Fog module Parsers module AWS module Storage class GetBucketLogging < Fog::Parsers::Base def reset @grant = { 'Grantee' => {} } @response = { 'BucketLoggingStatus' => {} } end def end_element(name) case name when 'DisplayName', 'ID' if @in_access_control_list @grant['Grantee'][name] = @value else @response['Owner'][name] = @value end when 'Grant' @response['BucketLoggingStatus']['LoggingEnabled']['TargetGrants'] << @grant @grant = { 'Grantee' => {} } when 'LoggingEnabled' @response['BucketLoggingStatus']['LoggingEnabled'] = { 'TargetGrants' => [] } when 'Permission' @grant[name] = @value when 'TargetBucket', 'TargetPrefix' @response['BucketLoggingStatus'][name] = @value when 'URI' @grant['Grantee'][name] = @value end end end end end end end
Version data entries
42 entries across 42 versions & 3 rubygems
Version | Path |
---|---|
fog-0.3.9 | lib/fog/aws/parsers/storage/get_bucket_logging.rb |
fog-0.3.8 | lib/fog/aws/parsers/storage/get_bucket_logging.rb |