File: records.rb

package info (click to toggle)
ruby-fog-powerdns 0.1.1%2Bdebian-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 192 kB
  • ctags: 123
  • sloc: ruby: 452; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 384 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'fog/core/collection'
require 'fog/rage4/models/dns/record'
module Fog
  module DNS
    class PowerDNS
      class Records < Fog::Collection
        attribute :zone
        model Fog::DNS::PowerDNS::Record

        def all
          requires :zone
          clear
          data = service.get_zone(zone)[:records]
          load(data)
        end


      end
    end
  end
end