Class: Fog::AWS::Elasticache::SubnetGroups

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/aws/models/elasticache/subnet_groups.rb

Instance Method Summary collapse

Instance Method Details

#allObject



9
10
11
12
# File 'lib/fog/aws/models/elasticache/subnet_groups.rb', line 9

def all
  data = service.describe_cache_subnet_groups.body['DescribeCacheSubnetGroupsResult']['CacheSubnetGroups']
  load(data) # data is an array of attribute hashes
end

#get(identity) ⇒ Object



14
15
16
17
18
19
# File 'lib/fog/aws/models/elasticache/subnet_groups.rb', line 14

def get(identity)
  data = service.describe_cache_subnet_groups(identity).body['DescribeCacheSubnetGroupsResult']['CacheSubnetGroups'].first
  new(data) # data is an attribute hash
rescue Fog::AWS::Elasticache::NotFound
  nil
end