Sha256: 6af459e6009a3c9f37288a7ea707250d1b1a4e98aa67a70013def0acc0453226
Contents?: true
Size: 707 Bytes
Versions: 98
Compression:
Stored size: 707 Bytes
Contents
module Fog module Parsers module Redshift module AWS class CreateClusterParameterGroup < Fog::Parsers::Base # :parameter_group_name - (String) # :parameter_group_family - (String) # :description - (String) def reset @response = {'ClusterParameterGroup'=>{}} end def start_element(name, attrs = []) super end def end_element(name) super case name when 'ParameterGroupName', 'ParameterGroupFamily', 'Description' @response['ClusterParameterGroup'][name] = value end end end end end end end
Version data entries
98 entries across 96 versions & 6 rubygems