Sha256: 034f568fc20f1347fce754c88ae04e2709dcecdbf821e558629cf8cd2af9b382

Contents?: true

Size: 1.53 KB

Versions: 50

Compression:

Stored size: 1.53 KB

Contents

module Fog
  module Parsers
    module AWS
      module Compute

        class TerminateInstances < Fog::Parsers::Base

          def reset
            @instance = { 'previousState' => {}, 'currentState' => {} }
            @response = { 'instancesSet' => [] }
          end

          def start_element(name, attrs = [])
            super
            if name == 'previousState'
              @in_previous_state = true
            elsif name == 'currentState'
              @in_current_state = true
            end
          end

          def end_element(name)
            case name
            when 'instanceId'
              @instance[name] = @value
            when 'item'
              @response['instancesSet'] << @instance
              @instance = { 'previousState' => {}, 'currentState' => {} }
            when 'code'
              if @in_previous_state
                @instance['previousState'][name] = @value.to_i
              elsif @in_current_state
                @instance['currentState'][name] = @value.to_i
              end
            when 'name'
              if @in_previous_state
                @instance['previousState'][name] = @value
              elsif @in_current_state
                @instance['currentState'][name] = @value
              end
            when 'previousState'
              @in_previous_state = false
            when 'requestId'
              @response[name] = @value
            when 'currentState'
              @in_current_state = false
            end
          end

        end

      end
    end
  end
end

Version data entries

50 entries across 50 versions & 3 rubygems

Version Path
fog-0.7.2 lib/fog/compute/parsers/aws/terminate_instances.rb
fog-0.7.1 lib/fog/compute/parsers/aws/terminate_instances.rb
fog-0.7.0 lib/fog/compute/parsers/aws/terminate_instances.rb
fog-0.6.0 lib/fog/compute/parsers/aws/terminate_instances.rb
fog-0.5.3 lib/fog/compute/parsers/aws/terminate_instances.rb
fog-0.5.2 lib/fog/compute/parsers/aws/terminate_instances.rb
fog-0.5.1 lib/fog/compute/parsers/aws/terminate_instances.rb
fog-0.5.0 lib/fog/compute/parsers/aws/terminate_instances.rb
phpfog-fog-0.4.1.3 lib/fog/compute/parsers/aws/terminate_instances.rb
phpfog-fog-0.4.1.2 lib/fog/compute/parsers/aws/terminate_instances.rb
phpfog-fog-0.4.1.1 lib/fog/compute/parsers/aws/terminate_instances.rb
phpfog-fog-0.4.1 lib/fog/compute/parsers/aws/terminate_instances.rb
fog-0.4.1 lib/fog/compute/parsers/aws/terminate_instances.rb
fog-0.4.0 lib/fog/aws/parsers/compute/terminate_instances.rb
fog-0.3.34 lib/fog/aws/parsers/compute/terminate_instances.rb
fog-0.3.33 lib/fog/aws/parsers/compute/terminate_instances.rb
fog-0.3.32 lib/fog/aws/parsers/compute/terminate_instances.rb
fog-0.3.31 lib/fog/aws/parsers/compute/terminate_instances.rb
fog-0.3.30 lib/fog/aws/parsers/compute/terminate_instances.rb
fog-0.3.29 lib/fog/aws/parsers/compute/terminate_instances.rb