Method: Fog::Storage::AWS::Mock.data

Defined in:
lib/fog/aws/storage.rb

.dataObject


185
186
187
188
189
190
191
192
193
194
195
196
197
# File 'lib/fog/aws/storage.rb', line 185

def self.data
  @data ||= Hash.new do |hash, region|
    hash[region] = Hash.new do |region_hash, key|
      region_hash[key] = {
        :acls => {
          :bucket => {},
          :object => {}
        },
        :buckets => {}
      }
    end
  end
end