Sha256: 519702ca14f1cf334526f92857751f3093dda8c6fd8f66955a0fa560663d3d9e

Contents?: true

Size: 1.3 KB

Versions: 17

Compression:

Stored size: 1.3 KB

Contents

module Fog
  module AWS
    class S3

      class Directory < Fog::Model

        identity  :name,          'Name'

        attribute :creation_date, 'CreationDate'

        def destroy
          requires :name
          connection.delete_bucket(@name)
          true
        rescue Excon::Errors::NotFound
          false
        end

        def location
          requires :name
          data = connection.get_bucket_location(@name)
          data.body['LocationConstraint']
        end

        def location=(new_location)
          @location = new_location
        end

        def files
          @files ||= begin
            Fog::AWS::S3::Files.new(
              :directory    => self,
              :connection   => connection
            )
          end
        end

        def payer
          requires :name
          data = connection.get_request_payment(@name)
          data.body['Payer']
        end

        def payer=(new_payer)
          requires :name
          connection.put_request_payment(@name, new_payer)
          @payer = new_payer
        end

        def save
          requires :name
          options = {}
          if @location
            options['LocationConstraint'] = @location
          end
          connection.put_bucket(@name, options)
          true
        end

      end

    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
fog-0.0.56 lib/fog/aws/models/s3/directory.rb
fog-0.0.55 lib/fog/aws/models/s3/directory.rb
fog-0.0.54 lib/fog/aws/models/s3/directory.rb
fog-0.0.53 lib/fog/aws/models/s3/directory.rb
fog-0.0.52 lib/fog/aws/models/s3/directory.rb
fog-0.0.51 lib/fog/aws/models/s3/directory.rb
fog-0.0.50 lib/fog/aws/models/s3/directory.rb
fog-0.0.49 lib/fog/aws/models/s3/directory.rb
fog-0.0.48 lib/fog/aws/models/s3/directory.rb
fog-0.0.47 lib/fog/aws/models/s3/directory.rb
fog-0.0.46 lib/fog/aws/models/s3/directory.rb
fog-0.0.45 lib/fog/aws/models/s3/directory.rb
fog-0.0.44 lib/fog/aws/models/s3/directory.rb
fog-0.0.43 lib/fog/aws/models/s3/directory.rb
fog-0.0.42 lib/fog/aws/models/s3/directory.rb
fog-0.0.41 lib/fog/aws/models/s3/directory.rb
fog-0.0.40 lib/fog/aws/models/s3/directory.rb