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

33 lines
1.2 KiB
Ruby

module Fog
module AWS
class Elasticache
class Real
require 'fog/aws/parsers/elasticache/describe_engine_default_parameters'
# Returns the default engine and system parameter information
# for the specified cache engine.
#
# === Parameters (optional)
# * options <~Hash>:
# * :engine <~String> - the engine whose parameters are requested
# * :marker <~String> - marker provided in the previous request
# * :max_records <~Integer> - the maximum number of records to include
def describe_engine_default_parameters(options = {})
request({
'Action' => 'DescribeEngineDefaultParameters',
'CacheParameterGroupFamily' => options[:engine] || 'memcached1.4',
'Marker' => options[:marker],
'MaxRecords' => options[:max_records],
:parser => Fog::Parsers::AWS::Elasticache::DescribeEngineDefaultParameters.new
})
end
end
class Mock
def describe_engine_defalut_parameters(options = {})
Fog::Mock.not_implemented
end
end
end
end
end