Sha256: 1b20e9e827cb387862ced7c0f63cf25b78335d425f6d62e10243adda9228ce1e

Contents?: true

Size: 1.16 KB

Versions: 33

Compression:

Stored size: 1.16 KB

Contents

module Fog
  module Parsers
    module Compute
      module AWS
        class DescribeVpcClassicLink < Fog::Parsers::Base
          def reset
            @vpc = { 'tagSet' => {} }
            @response = { 'vpcSet' => [] }
            @tag = {}
          end

          def start_element(name, attrs = [])
            super
            case name
            when 'tagSet'
              @in_tag_set = true
            end
          end

          def end_element(name)
            if @in_tag_set
              case name
                when 'item'
                  @vpc['tagSet'][@tag['key']] = @tag['value']
                  @tag = {}
                when 'key', 'value'
                  @tag[name] = value
                when 'tagSet'
                  @in_tag_set = false
              end
            else
              case name
              when 'vpcId', 'classicLinkEnabled'
                @vpc[name] = value
              when 'item'
                @response['vpcSet'] << @vpc
                @vpc = { 'tagSet' => {} }
              when 'requestId'
                @response[name] = value
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

33 entries across 33 versions & 2 rubygems

Version Path
fog-aws-1.2.1 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-1.2.0 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-1.1.0 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-1.0.0 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.13.0 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.12.0 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.11.0 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.10.0 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.9.4 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.9.3 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.9.2 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.9.1 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.9.0 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.8.1 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.8.0 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-aws-0.7.5/lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.7.6 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.7.5 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.7.4 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb
fog-aws-0.7.3 lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb