def describe_orderable_cluster_options(options = {})
cluster_version = options[:cluster_version]
node_type = options[:node_type]
marker = options[:marker]
max_records = options[:max_records]
path = "/"
params = {
:idempotent => true,
:headers => {},
:path => path,
:method => :get,
:query => {},
:parser => Fog::Parsers::Redshift::AWS::DescribeOrderableClusterOptions.new
}
params[:query]['Action'] = 'DescribeOrderableClusterOptions'
params[:query]['ClusterVersion'] = cluster_version if cluster_version
params[:query]['NodeType'] = node_type if node_type
params[:query]['Marker'] = marker if marker
params[:query]['MaxRecords'] = max_records if max_records
request(params)
end