Class: Fog::Parsers::AWS::EC2::TerminateInstances
- Inherits:
-
Base
- Object
- Nokogiri::XML::SAX::Document
- Base
- Fog::Parsers::AWS::EC2::TerminateInstances
show all
- Defined in:
- lib/fog/aws/parsers/ec2/terminate_instances.rb
Instance Attribute Summary
Attributes inherited from Base
#response
Instance Method Summary
collapse
Methods inherited from Base
#characters, #initialize
Instance Method Details
#end_element(name) ⇒ Object
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# File 'lib/fog/aws/parsers/ec2/terminate_instances.rb', line 22
def end_element(name)
case name
when 'instanceId'
@instance[name] = @value
when 'item'
@response['instancesSet'] << @instance
@instance = { 'previousState' => {}, 'shutdownState' => {} }
when 'code'
if @in_previous_state
@instance['previousState'][name] = @value.to_i
elsif @in_shutdown_state
@instance['shutdownState'][name] = @value.to_i
end
when 'name'
if @in_previous_state
@instance['previousState'][name] = @value
elsif @in_shutdown_state
@instance['shutdownState'][name] = @value
end
when 'previousState'
@in_previous_state = false
when 'requestId'
@response[name] = @value
when 'shutdownState'
@in_shutdown_state = false
end
end
|
#reset ⇒ Object
8
9
10
11
|
# File 'lib/fog/aws/parsers/ec2/terminate_instances.rb', line 8
def reset
@instance = { 'previousState' => {}, 'shutdownState' => {} }
@response = { 'instancesSet' => [] }
end
|
#start_element(name, attrs = []) ⇒ Object
13
14
15
16
17
18
19
20
|
# File 'lib/fog/aws/parsers/ec2/terminate_instances.rb', line 13
def start_element(name, attrs = [])
if name == 'previousState'
@in_previous_state = true
elsif name == 'shutdownState'
@in_shutdown_state = true
end
@value = ''
end
|