Sha256: 98bb0d25a1106e573ec2091560244d277acecf0cb12ff8264bf2508b76f47208
Contents?: true
Size: 1.49 KB
Versions: 6
Compression:
Stored size: 1.49 KB
Contents
require 'fog/core/model' require 'fog/aws/models/storage/files' module Fog module AWS class Storage class Directory < Fog::Model extend Fog::Deprecation deprecate(:name, :key) deprecate(:name=, :key=) identity :key, :aliases => ['Name', 'name'] attribute :creation_date, :aliases => 'CreationDate' def destroy requires :key connection.delete_bucket(key) true rescue Excon::Errors::NotFound false end def location requires :key data = connection.get_bucket_location(key) data.body['LocationConstraint'] end def location=(new_location) @location = new_location end def files @files ||= begin Fog::AWS::Storage::Files.new( :directory => self, :connection => connection ) end end def payer requires :key data = connection.get_request_payment(key) data.body['Payer'] end def payer=(new_payer) requires :key connection.put_request_payment(key, new_payer) @payer = new_payer end def save requires :key options = {} if @location options['LocationConstraint'] = @location end connection.put_bucket(key, options) true end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems