Sha256: 4f74d18643ce7d68d281e534cf47e5ce08c0e04edc01f3073523b2a41a4b12a9

Contents?: true

Size: 666 Bytes

Versions: 76

Compression:

Stored size: 666 Bytes

Contents

require 'fog/aws/models/elasticache/cluster'

module Fog
  module AWS
    class Elasticache
      class Clusters < Fog::Collection
        model Fog::AWS::Elasticache::Cluster

        def all
          load(
            service.describe_cache_clusters(
              nil, :show_node_info => true
            ).body['CacheClusters']
          )
        end

        def get(identity, show_node_info = true)
          new(
            service.describe_cache_clusters(
              identity, :show_node_info => show_node_info
            ).body['CacheClusters'].first
          )
        rescue Fog::AWS::Elasticache::NotFound
        end
      end
    end
  end
end

Version data entries

76 entries across 74 versions & 3 rubygems

Version Path
fog-aws-3.11.0 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.10.0 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.9.0 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.8.0 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.7.0 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.6.7 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.6.6 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.6.5 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.6.4 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.6.3 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.6.2 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.5.2 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.5.1 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.5.0 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.4.0 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.3.0 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.2.0 lib/fog/aws/models/elasticache/clusters.rb
fog-aws-3.1.0 lib/fog/aws/models/elasticache/clusters.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-aws-2.0.1/lib/fog/aws/models/elasticache/clusters.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-aws-2.0.1/lib/fog/aws/models/elasticache/clusters.rb