Sha256: 3a4a84a567302876590a83a739a6f42929f135eabba67ec58ce8f1b47d41b551
Contents?: true
Size: 616 Bytes
Versions: 76
Compression:
Stored size: 616 Bytes
Contents
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( service.describe_cache_parameter_groups.body['CacheParameterGroups'] ) end def get(identity) new( service.describe_cache_parameter_groups( identity ).body['CacheParameterGroups'].first ) rescue Fog::AWS::Elasticache::NotFound nil end end end end end
Version data entries
76 entries across 74 versions & 3 rubygems