Class/Module Index [+]

Quicksearch

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

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/compute/monitor_unmonitor_instances.rb, line 14
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
reset() click to toggle source
# File lib/fog/aws/parsers/compute/monitor_unmonitor_instances.rb, line 8
def reset
  @response = {}
  @instance_set = []
  @current_instance_set = {}
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.