Class: Fog::Parsers::AWS::Compute::MonitorUnmonitorInstances

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

Instance Method Summary collapse

Instance Method Details

#end_element(name) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/fog/aws/parsers/compute/monitor_unmonitor_instances.rb', line 12

def end_element(name)
  case name
  when 'requestId'
    @response['requestId'] = value
  when 'instanceId'
    @current_instance_set['instanceId'] = value
  when 'item'
    @instance_set << @current_instance_set
    @current_instance_set = {}
  when 'state'
    @current_instance_set['monitoring'] = value
  when 'instancesSet'
    @response['instancesSet'] = @instance_set
  end
end

#resetObject



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

def reset
  @response = {}
  @instance_set = []
  @current_instance_set = {}
end