# File lib/fog/hp/cdn.rb, line 27 def self.data @data ||= Hash.new do |hash, key| hash[key] = { :cdn_containers => {} } end end
# File lib/fog/hp/cdn.rb, line 39 def initialize(options={}) @hp_account_id = options[:hp_account_id] end
# File lib/fog/hp/cdn.rb, line 35 def self.reset @data = nil end
# File lib/fog/hp/cdn.rb, line 43 def data self.class.data[@hp_account_id] end
# File lib/fog/hp/cdn.rb, line 47 def reset_data self.class.data.delete(@hp_account_id) end