Sha256: f216f68cc2497f7b072eae109ea794f21c4bab15c6594e66603bf8346c537399
Contents?: true
Size: 690 Bytes
Versions: 38
Compression:
Stored size: 690 Bytes
Contents
module Fog module Parsers module Redshift module AWS require 'fog/aws/parsers/redshift/cluster_security_group_parser' class RevokeClusterSecurityGroupIngress < ClusterSecurityGroupParser # :cluster_security_group def reset super @response = {} end def start_element(name, attrs = []) super end def end_element(name) super case name when 'ClusterSecurityGroup' @response['ClusterSecurityGroup'] = @cluster_security_group end end end end end end end
Version data entries
38 entries across 38 versions & 2 rubygems