Class: Fog::AWS::Elasticache::ParameterGroups

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

Instance Method Summary collapse

Instance Method Details

#allObject



11
12
13
14
15
# File 'lib/fog/aws/models/elasticache/parameter_groups.rb', line 11

def all
  load(
    service.describe_cache_parameter_groups.body['CacheParameterGroups']
  )
end

#get(identity) ⇒ Object



17
18
19
20
21
22
23
24
25
# File 'lib/fog/aws/models/elasticache/parameter_groups.rb', line 17

def get(identity)
  new(
    service.describe_cache_parameter_groups(
      identity
    ).body['CacheParameterGroups'].first
  )
rescue Fog::AWS::Elasticache::NotFound
  nil
end