Class: Fog::Parsers::Redshift::AWS::UpdateClusterParameterGroupParser
- Inherits:
-
Base
- Object
- Nokogiri::XML::SAX::Document
- Base
- Fog::Parsers::Redshift::AWS::UpdateClusterParameterGroupParser
- Defined in:
- lib/fog/aws/parsers/redshift/update_cluster_parameter_group_parser.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #end_element(name) ⇒ Object
-
#reset ⇒ Object
:parameter_group_name - (String) :parameter_group_status - (String).
- #start_element(name, attrs = []) ⇒ Object
Methods inherited from Base
#attr_value, #characters, #end_element_namespace, #initialize, #start_element_namespace, #value
Constructor Details
This class inherits a constructor from Fog::Parsers::Base
Instance Method Details
#end_element(name) ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/fog/aws/parsers/redshift/update_cluster_parameter_group_parser.rb', line 18 def end_element(name) super case name when 'ParameterGroupName', 'ParameterGroupStatus' @response[name] = value end end |
#reset ⇒ Object
:parameter_group_name - (String) :parameter_group_status - (String)
10 11 12 |
# File 'lib/fog/aws/parsers/redshift/update_cluster_parameter_group_parser.rb', line 10 def reset @response = {} end |
#start_element(name, attrs = []) ⇒ Object
14 15 16 |
# File 'lib/fog/aws/parsers/redshift/update_cluster_parameter_group_parser.rb', line 14 def start_element(name, attrs = []) super end |