Sha256: 18738ac7914f69fa726542aaea4ce31302d38c04459e8a30431a9a861f8b6a1e

Contents?: true

Size: 646 Bytes

Versions: 22

Compression:

Stored size: 646 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(
            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

22 entries across 22 versions & 5 rubygems

Version Path
ns-fog-1.22.2 lib/fog/aws/models/elasticache/parameter_groups.rb
fog-1.22.1 lib/fog/aws/models/elasticache/parameter_groups.rb