Sha256: a9ee2cc03428c78a8341498cef4e7c13fb9d555e040bf3a349634df20e546620

Contents?: true

Size: 1015 Bytes

Versions: 2

Compression:

Stored size: 1015 Bytes

Contents

module Fog
  module Parsers
    module Redshift
      module AWS

        require 'fog/aws/parsers/redshift/cluster_security_group_parser'

        class DescribeClusterSecurityGroups < ClusterSecurityGroupParser
          # :marker - (String)
          # :cluster_security_groups - (Array)

          def reset
            @response = { 'ClusterSecurityGroups' => [] }
          end

          def start_element(name, attrs = [])
            super
            case name
            when 'ClusterSecurityGroups'
              @cluster_security_group = fresh_cluster_security_group
            end
          end

          def end_element(name)
            super
            case name
            when 'Marker'
              @response[name] = value
            when 'ClusterSecurityGroup'
              @response['ClusterSecurityGroups'] << { name => @cluster_security_group }
              @cluster_security_group = fresh_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/describe_cluster_security_groups.rb
fog-1.21.0 lib/fog/aws/parsers/redshift/describe_cluster_security_groups.rb