Method: Fog::Compute::IBM::Mock.data
- Defined in:
- lib/fog/ibm/compute.rb
.data ⇒ Object
86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/fog/ibm/compute.rb', line 86 def self.data @data ||= Hash.new do |hash, key| hash[key] = { :instances => {}, :images => populate_images, :keys => {}, :locations => populate_locations, :private_keys => {}, :addresses => {} } end end |