Method: Fog::AWS::Elasticache::Mock.data
- Defined in:
- lib/fog/aws/elasticache.rb
.data ⇒ Object
130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/fog/aws/elasticache.rb', line 130 def self.data @data ||= Hash.new do |hash, region| hash[region] = Hash.new do |region_hash, key| owner_id = Fog::AWS::Mock.owner_id security_group_id = Fog::AWS::Mock.security_group_id region_hash[key] = { :clusters => {}, # cache cluster data, indexed by cluster ID } end end end |