Method: Fog::DNS::AWS::Mock.data

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

.dataObject

[View source]

29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/fog/aws/dns.rb', line 29

def self.data
  @data ||= Hash.new do |hash, region|
    hash[region] = Hash.new do |region_hash, key|
      region_hash[key] = {
        :buckets => {},
        :limits => {
          :duplicate_domains => 5
        },
        :zones => {}
      }
    end
  end
end