Sha256: 5f3f099c26c67727388c012ce6e41bced9861e33f913fd45eb402e519f82b240
Contents?: true
Size: 810 Bytes
Versions: 98
Compression:
Stored size: 810 Bytes
Contents
module Fog module Parsers module AWS module RDS require 'fog/aws/parsers/rds/snapshot_parser' class CreateDBSnapshot < Fog::Parsers::AWS::RDS::SnapshotParser def reset @response = { 'CreateDBSnapshotResult' => {}, 'ResponseMetadata' => {} } super end def start_element(name, attrs = []) super end def end_element(name) case name when 'DBSnapshot' then @response['CreateDBSnapshotResult']['DBSnapshot'] = @db_snapshot @db_snapshot = fresh_snapshot when 'RequestId' @response['ResponseMetadata'][name] = value else super end end end end end end end
Version data entries
98 entries across 96 versions & 6 rubygems