Sha256: c99c9c3756b61f74e2ce12f1a03580dc71bfbd6cbb1abb2811e347628814e57d
Contents?: true
Size: 877 Bytes
Versions: 60
Compression:
Stored size: 877 Bytes
Contents
module Fog module Parsers module AWS module RDS require 'fog/aws/parsers/rds/db_cluster_snapshot_parser' class CreateDBClusterSnapshot < Fog::Parsers::AWS::RDS::DBClusterSnapshotParser def reset @response = { 'CreateDBClusterSnapshotResult' => {}, 'ResponseMetadata' => {} } super end def start_element(name, attrs = []) super end def end_element(name) case name when 'DBClusterSnapshot' @response['CreateDBClusterSnapshotResult']['DBClusterSnapshot'] = @db_cluster_snapshot @db_cluster_snapshot = fresh_snapshot when 'RequestId' @response['ResponseMetadata'][name] = value else super end end end end end end end
Version data entries
60 entries across 58 versions & 2 rubygems