Sha256: b098dd97354556fd49632b5cfd946246d11c1c2ce05df857ce66428151c9b423

Contents?: true

Size: 1.38 KB

Versions: 38

Compression:

Stored size: 1.38 KB

Contents

module Fog
  module Parsers
    module Redshift
      module AWS

        class ClusterSubnetGroupParser < Fog::Parsers::Base
          # :cluster_subnet_group_name - (String)
          # :description - (String)
          # :vpc_id - (String)
          # :subnet_group_status - (String)
          # :subnets - (Array)
          #   :subnet_identifier - (String)
          #   :subnet_availability_zone - (Hash)
          #     :name - (String)
          #   :subnet_status - (String) 
          
          def reset
            @response = { 'Subnets' => [] }
          end

          def fresh_subnet
            {'SubnetAvailabilityZone'=>{}}
          end

          def start_element(name, attrs = [])
            super
            case name
            when 'Subnets'
              @subnet = fresh_subnet
            end
          end

          def end_element(name)            
            super
            case name
            when 'ClusterSubnetGroupName', 'Desciption', 'VpcId', 'SubnetGroupStatus'
              @response[name] = value
            when 'SubnetIdentifier', 'SubnetStatus'
              @subnet[name] = value
            when 'Name'
              @subnet['SubnetAvailabilityZone'][name] = value
            when 'Subnet'
              @response['Subnets'] << {name => @subnet}
              @subnet = fresh_subnet
            end
          end
        end
      end
    end
  end
end

Version data entries

38 entries across 38 versions & 2 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-1.20.0 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-1.19.0 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb