Class: Fog::Parsers::Compute::AWS::CancelSpotInstanceRequests
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::Compute::AWS::CancelSpotInstanceRequests
- Defined in:
- lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb
Instance Method Summary collapse
Instance Method Details
#end_element(name) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb', line 11 def end_element(name) case name when 'item' @response['spotInstanceRequestSet'] << @spot_instance_request @spot_instance_request = {} when 'requestId' @response[name] = value when 'spotInstanceRequestId', 'state' @spot_instance_request[name] = value end end |
#reset ⇒ Object
6 7 8 9 |
# File 'lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb', line 6 def reset @spot_instance_request = {} @response = { 'spotInstanceRequestSet' => [] } end |