File: record.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 (31 lines) | stat: -rw-r--r-- 606 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
22
23
24
25
26
27
28
29
30
31
require 'fog/core/model'

module Fog
  module DNS
    class PowerDNS
      class Record < Fog::Model
        # TODO: Needs work to comply with powerdns api
        identity :name

        attribute :content
        attribute :ttl
        attribute :type
        attribute :disabled
        attribute :set_ptr

        def initialize(attributes={})
          super
        end
        def domain
          name
        end
        def destroy
          # service.delete_record(id)
          # TODO: maybe hack our own delete? this does nothing for now
          true
        end

      end
    end
  end
end