File: update_rrsets.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 (47 lines) | stat: -rw-r--r-- 1,414 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
module Fog
  module DNS
    class PowerDNS
      class Real
        # Modify existing RRset's of a zone
        #
        # ==== Parameters
        # server<~String> - server id
        # zone<~String> - zone id
        # options<~Hash> - see pdns api for rules
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'rrsets'<~Hash> The representation of the rrsets:
        #       * 'name': <~String>,
        #       * 'type': <~String>,
        #       * 'changetype': <~String>,
        #       * 'records' <~Hash> domain records:
        #         * 'content': <~String>,
        #         * 'name': <~String>,
        #         * 'ttl': <~Integer>,
        #         * 'type': <~String>,
        #         * 'disabled': <~Boolean>,
        #         * 'set-ptr': <~Boolean>
        #       * 'comments' <~Hash> comments:
        #         * 'account': <~String>,
        #         * 'content': <~String>,
        #         * 'modfied_at': <~Integer>


        def update_rrsets(server, zone, options = {})
          options.each { |option, value|
            body[option] = value;
          }

          request(
              :body     => Fog::JSON.encode(body),
              :expects  => 200,
              :method   => 'PATCH',
              :path     => "/servers/#{server}/zones/#{zone}/"
          )
        end
      end
    end
  end
end