Class: Fog::Parsers::AWS::Compute::TerminateInstances

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

Instance Method Summary collapse

Instance Method Details

#end_element(name) ⇒ Object



20
21
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
# File 'lib/fog/aws/parsers/compute/terminate_instances.rb', line 20

def end_element(name)
  case name
  when 'instanceId'
    @instance[name] = value
  when 'item'
    @response['instancesSet'] << @instance
    @instance = { 'previousState' => {}, 'currentState' => {} }
  when 'code'
    if @in_previous_state
      @instance['previousState'][name] = value.to_i
    elsif @in_current_state
      @instance['currentState'][name] = value.to_i
    end
  when 'name'
    if @in_previous_state
      @instance['previousState'][name] = value
    elsif @in_current_state
      @instance['currentState'][name] = value
    end
  when 'previousState'
    @in_previous_state = false
  when 'requestId'
    @response[name] = value
  when 'currentState'
    @in_current_state = false
  end
end

#resetObject



6
7
8
9
# File 'lib/fog/aws/parsers/compute/terminate_instances.rb', line 6

def reset
  @instance = { 'previousState' => {}, 'currentState' => {} }
  @response = { 'instancesSet' => [] }
end

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



11
12
13
14
15
16
17
18
# File 'lib/fog/aws/parsers/compute/terminate_instances.rb', line 11

def start_element(name, attrs = [])
  super
  if name == 'previousState'
    @in_previous_state = true
  elsif name == 'currentState'
    @in_current_state = true
  end
end