Object
# File lib/fog/dns/aws.rb, line 25 def self.data @data ||= Hash.new do |hash, region| hash[region] = Hash.new do |region_hash, key| region_hash[key] = { :buckets => {} } end end end
# File lib/fog/dns/aws.rb, line 39 def initialize(options={}) require 'mime/types' @aws_access_key_id = options[:aws_access_key_id] @region = options[:region] end
# File lib/fog/dns/aws.rb, line 35 def self.reset @data = nil end
# File lib/fog/dns/aws.rb, line 45 def data self.class.data[@region][@aws_access_key_id] end
# File lib/fog/dns/aws.rb, line 49 def reset_data self.class.data[@region].delete(@aws_access_key_id) end
# File lib/fog/dns/aws.rb, line 53 def signature(params) "foo" end
[Validate]
Generated with the Darkfish Rdoc Generator 2.