Sha256: 46ee749477caed622282b0dd8a3f9c3f70841c83bc1baf132e1008bdf5d78bf8
Contents?: true
Size: 523 Bytes
Versions: 79
Compression:
Stored size: 523 Bytes
Contents
module Fog module Parsers module AWS module AutoScaling class PutNotificationConfiguration < Fog::Parsers::Base def reset @response = { 'ResponseMetadata' => {} } end def start_element(name, attrs = []) super end def end_element(name) case name when 'RequestId' @response['ResponseMetadata'][name] = value end end end end end end end
Version data entries
79 entries across 79 versions & 12 rubygems