Class: Fog::AWS::Elasticache::SecurityGroups

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

Instance Method Summary collapse

Instance Method Details

#allObject



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

def all
  load(
    service.describe_cache_security_groups.body['CacheSecurityGroups']
  )
end

#get(identity) ⇒ Object



15
16
17
18
19
20
21
22
23
# File 'lib/fog/aws/models/elasticache/security_groups.rb', line 15

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