File: list_server_configs.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 (30 lines) | stat: -rw-r--r-- 729 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
module Fog
  module DNS
    class PowerDNS
      class Real
        # Get all of a DNS server's config settings
        #
        # ==== Parameters
        # * server<~String> - server id
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Array>:
        #       * Config<~Hash>:
        #         * 'type': <~String>,
        #         * 'name': <~String>,
        #         * 'value': <~String>
        #   * status<~String> - 200 when successful

        def list_server_configs(server)
          request(
              :expects  => 200,
              :method   => 'GET',
              :path     => "/servers/#{server}/config"
          ).body
        end

      end
    end
  end
end