Sha256: ce106d692f9a6fee64ca9ea50435b209f45cfd9575266c428ee62fe2374f37b7
Contents?: true
Size: 646 Bytes
Versions: 2
Compression:
Stored size: 646 Bytes
Contents
module Fog module Parsers module Redshift module AWS require 'fog/aws/parsers/redshift/cluster_snapshot_parser' class ClusterSnapshot < ClusterSnapshotParser # :parameter_group_name - (String) # :parameter_group_status - (String) def reset super @response = {} end def start_element(name, attrs = []) super end def end_element(name) super case name when 'Snapshot' @response = @snapshot end end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-1.22.0 | lib/fog/aws/parsers/redshift/cluster_snapshot.rb |
fog-1.21.0 | lib/fog/aws/parsers/redshift/cluster_snapshot.rb |