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