Sha256: 01f1b2943b3b888f9966e0dcf26dc57406adbaaac2bd9ebed2122efaab3c625a

Contents?: true

Size: 1.82 KB

Versions: 98

Compression:

Stored size: 1.82 KB

Contents

module Fog
  module AWS
    class Elasticache
      class Real
        require 'fog/aws/parsers/elasticache/describe_cache_clusters'

        # Returns a list of Cache Cluster descriptions
        #
        # === Parameters (optional)
        # * id - The ID of an existing cache cluster
        # * options <~Hash> (optional):
        # *  :marker <~String> - marker provided in the previous request
        # *  :max_records <~Integer> - the maximum number of records to include
        # *  :show_node_info <~Boolean> - whether to show node info
        # === Returns
        # * response <~Excon::Response>:
        #   * body <~Hash>
        def describe_cache_clusters(id = nil, options = {})
          request({
            'Action'            => 'DescribeCacheClusters',
            'CacheClusterId'    => id,
            'Marker'            => options[:marker],
            'MaxRecords'        => options[:max_records],
            'ShowCacheNodeInfo' => options[:show_node_info],
            :parser => Fog::Parsers::AWS::Elasticache::DescribeCacheClusters.new
          })
        end
      end

      class Mock
        def describe_cache_clusters(id = nil, options = {})
          response        = Excon::Response.new
          all_clusters    = self.data[:clusters].values.map do |cluster|
            cluster.merge!(options[:show_node_info] ? {
              'CacheClusterCreateTime'    => DateTime.now - 60,
              'PreferredAvailabilityZone' => 'us-east-1a'
            } : {})
          end
          if (id != nil) && (all_clusters.empty?)
            raise Fog::AWS::Elasticache::NotFound
          end
          response.body = {
            'CacheClusters'     => all_clusters,
            'ResponseMetadata'  => { 'RequestId' => Fog::AWS::Mock.request_id }
          }
          response
        end
      end
    end
  end
end

Version data entries

98 entries across 96 versions & 6 rubygems

Version Path
fog-aws-3.30.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.29.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.28.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.27.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.26.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.25.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.24.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.23.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.22.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.21.1 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.21.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.20.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.19.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.18.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.17.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.16.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.15.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.14.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.13.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
fog-aws-3.12.0 lib/fog/aws/requests/elasticache/describe_cache_clusters.rb