Sha256: 6d1548feae16ac4efa669856c537f0995064f40c876dab99becf849e872459d7
Contents?: true
Size: 662 Bytes
Versions: 2
Compression:
Stored size: 662 Bytes
Contents
module Fog module Parsers module Redshift module AWS require 'fog/aws/parsers/redshift/cluster_security_group_parser' class CreateClusterSecurityGroup < 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-1.22.0 | lib/fog/aws/parsers/redshift/create_cluster_security_group.rb |
fog-1.21.0 | lib/fog/aws/parsers/redshift/create_cluster_security_group.rb |