Sha256: 2472a97f8cab49379f490b2c368afd33f90644562a723c3c9cb17cb80038fdd8
Contents?: true
Size: 654 Bytes
Versions: 36
Compression:
Stored size: 654 Bytes
Contents
require 'fog/core/collection' require 'fog/aws/models/elasticache/parameter_group' module Fog module AWS class Elasticache class ParameterGroups < Fog::Collection model Fog::AWS::Elasticache::ParameterGroup def all load( connection.describe_cache_parameter_groups.body['CacheParameterGroups'] ) end def get(identity) new( connection.describe_cache_parameter_groups( identity ).body['CacheParameterGroups'].first ) rescue Fog::AWS::Elasticache::NotFound nil end end end end end
Version data entries
36 entries across 36 versions & 13 rubygems