Class: Fog::Parsers::Redshift::AWS::UpdateClusterParameterGroupParser

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/aws/parsers/redshift/update_cluster_parameter_group_parser.rb

Instance Method Summary collapse

Instance Method Details

#end_element(name) ⇒ Object



17
18
19
20
21
22
23
# File 'lib/fog/aws/parsers/redshift/update_cluster_parameter_group_parser.rb', line 17

def end_element(name)
  super
  case name
  when 'ParameterGroupName', 'ParameterGroupStatus'
    @response[name] = value
  end
end

#resetObject

:parameter_group_name - (String) :parameter_group_status - (String)



9
10
11
# File 'lib/fog/aws/parsers/redshift/update_cluster_parameter_group_parser.rb', line 9

def reset
  @response = {}
end

#start_element(name, attrs = []) ⇒ Object



13
14
15
# File 'lib/fog/aws/parsers/redshift/update_cluster_parameter_group_parser.rb', line 13

def start_element(name, attrs = [])
  super
end