Sha256: d04f64a26d2cf5b9438c325d7a45fd3852c93247a0698f45dcb9fc20e2547de3

Contents?: true

Size: 765 Bytes

Versions: 17

Compression:

Stored size: 765 Bytes

Contents

module Fog
  module Parsers
    module Zerigo
      module DNS

        class ListZones < Fog::Parsers::Base

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

          def end_element(name)
            case name
            when 'default-ttl', 'id', 'nx-ttl', 'hosts-count'
              @zone[name] = @value.to_i
            when 'created-at', 'custom-nameservers', 'custom-ns', 'domain', 'hostmaster', 'notes', 'ns1', 'ns-type', 'slave-nameservers', 'tag-list', 'updated-at', 'hosts', 'axfr-ips', 'restrict-axfr'
              @zone[name] = @value
            when 'zone'
              @response['zones'] << @zone
              @zone = {}
            end
          end

        end

      end
    end
  end
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
fog-0.7.2 lib/fog/dns/parsers/zerigo/list_zones.rb
fog-0.7.1 lib/fog/dns/parsers/zerigo/list_zones.rb
fog-0.7.0 lib/fog/dns/parsers/zerigo/list_zones.rb
fog-0.6.0 lib/fog/dns/parsers/zerigo/list_zones.rb
fog-0.5.3 lib/fog/dns/parsers/zerigo/list_zones.rb
fog-0.5.2 lib/fog/dns/parsers/zerigo/list_zones.rb
fog-0.5.1 lib/fog/dns/parsers/zerigo/list_zones.rb
fog-0.5.0 lib/fog/dns/parsers/zerigo/list_zones.rb
phpfog-fog-0.4.1.3 lib/fog/dns/parsers/zerigo/list_zones.rb
phpfog-fog-0.4.1.2 lib/fog/dns/parsers/zerigo/list_zones.rb
phpfog-fog-0.4.1.1 lib/fog/dns/parsers/zerigo/list_zones.rb
phpfog-fog-0.4.1 lib/fog/dns/parsers/zerigo/list_zones.rb
fog-0.4.1 lib/fog/dns/parsers/zerigo/list_zones.rb
fog-0.4.0 lib/fog/zerigo/parsers/dns/list_zones.rb
fog-0.3.34 lib/fog/zerigo/parsers/dns/list_zones.rb
fog-0.3.33 lib/fog/zerigo/parsers/dns/list_zones.rb
fog-0.3.32 lib/fog/zerigo/parsers/dns/list_zones.rb