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_parameters.rb
Josh Lane d48d376e9c initial import
* take the liberty of correcting Aws naming
2014-12-31 09:17:51 -08:00

34 lines
1.2 KiB
Ruby

module Fog
module AWS
class Elasticache
class Real
require 'fog/aws/parsers/elasticache/describe_cache_parameters'
# Returns a list of CacheParameterGroup descriptions
#
# === Parameters (optional)
# * name <~String> - The name of an existing cache parameter group
# * options <~Hash> (optional):
# * :marker <~String> - marker provided in the previous request
# * :max_records <~Integer> - the maximum number of records to include
# * :source <~String> - the parameter types to return.
def describe_cache_parameters(name = nil, options = {})
request({
'Action' => 'DescribeCacheParameters',
'CacheParameterGroupName' => name,
'Marker' => options[:marker],
'MaxRecords' => options[:max_records],
'Source' => options[:source],
:parser => Fog::Parsers::AWS::Elasticache::DescribeCacheParameters.new
})
end
end
class Mock
def describe_cache_parameters(name = nil, options = {})
Fog::Mock.not_implemented
end
end
end
end
end