Class: Fog::Parsers::AWS::Compute::SpotDatafeedSubscription
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::AWS::Compute::SpotDatafeedSubscription
- Defined in:
- lib/fog/aws/parsers/compute/spot_datafeed_subscription.rb
Instance Method Summary collapse
Instance Method Details
#end_element(name) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/fog/aws/parsers/compute/spot_datafeed_subscription.rb', line 10 def end_element(name) case name when 'bucket', 'ownerId', 'prefix', 'state' @response['spotDatafeedSubscription'][name] = value when 'code', 'message' @response['spotDatafeedSubscription']['fault'] ||= {} @response['spotDatafeedSubscription'][name] = value when 'requestId' @response[name] = value end end |
#reset ⇒ Object
6 7 8 |
# File 'lib/fog/aws/parsers/compute/spot_datafeed_subscription.rb', line 6 def reset @response = { 'spotDatafeedSubscription' => {} } end |