1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
Josh Lane d48d376e9c initial import
* take the liberty of correcting Aws naming
2014-12-31 09:17:51 -08:00

51 lines
1.8 KiB
Ruby

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