Sha256: da8807ee9260eee363ba1084c9b0f8c5351cc4fd9c84fcb61bd0acf73eaeaa8c
Contents?: true
Size: 1003 Bytes
Versions: 5
Compression:
Stored size: 1003 Bytes
Contents
# frozen_string_literal: true module Fog module DNS class PowerDNS class Real # Update a specific config setting of one server # TODO: Can only get / retrieve recursor's allow_from # # ==== Parameters # * server<~String> - server id # * config<~String> - config name # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'type': <~String>, # * 'name': <~String>, # * 'value': <~String> # * status<~String> - 200 when successful def update_server_config(server, config, body) if config == 'allows_from' request( body: body, expects: 200, method: 'PUT', path: "/api/#{@api_version}/servers/#{server}/config/#{config}" ).body else puts 'Only allows_from config is allowed.' end end end end end end
Version data entries
5 entries across 3 versions & 2 rubygems