Class: RightAws::Ec2::QEc2TerminateInstancesParser
- Inherits:
-
RightAWSParser
- Object
- RightAWSParser
- RightAws::Ec2::QEc2TerminateInstancesParser
- Defined in:
- lib/ec2/right_ec2.rb
Instance Attribute Summary
Attributes inherited from RightAWSParser
Instance Method Summary collapse
Methods inherited from RightAWSParser
#initialize, #method_missing, #parse, #tag_end, #tag_start, #tagtext, #text, xml_lib, xml_lib=
Constructor Details
This class inherits a constructor from RightAws::RightAWSParser
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class RightAws::RightAWSParser
Instance Method Details
#reset ⇒ Object
1121 1122 1123 |
# File 'lib/ec2/right_ec2.rb', line 1121 def reset @result = [] end |
#tagend(name) ⇒ Object
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 |
# File 'lib/ec2/right_ec2.rb', line 1107 def tagend(name) case name when 'instanceId' ; @instance.instanceId = @text when 'item' ; @result << @instance when 'code' if @xmlpath == 'TerminateInstancesResponse/instancesSet/item/shutdownState' @instance.shutdownState.code = @text else @instance.previousState.code = @text end when 'name' if @xmlpath == 'TerminateInstancesResponse/instancesSet/item/shutdownState' @instance.shutdownState.name = @text else @instance.previousState.name = @text end end end |
#tagstart(name, attributes) ⇒ Object
1100 1101 1102 1103 1104 1105 1106 |
# File 'lib/ec2/right_ec2.rb', line 1100 def (name, attributes) if name == 'item' @instance = QEc2TerminateInstancesResponseInfoType.new @instance.shutdownState = QEc2InstanceStateType.new @instance.previousState = QEc2InstanceStateType.new end end |