module Infoblox
An AAAA (address) record maps a domain name to an IPv6 address.
Taken from github.com/IMPIMBA/infoblox Credit where credit is due.
ZoneAuth
is only availabe in WAPI_VERSION >= 1.2
Constants
- DEBUG
- VERSION
Public Class Methods
base_path()
click to toggle source
# File lib/infoblox.rb, line 23 def base_path '/wapi/v' + Infoblox.wapi_version + '/' end
wapi_version()
click to toggle source
# File lib/infoblox.rb, line 13 def wapi_version @wapi_version ||= (ENV['WAPI_VERSION'] || '2.0') end
wapi_version=(v)
click to toggle source
# File lib/infoblox.rb, line 18 def wapi_version=(v) @wapi_version = v end
Private Instance Methods
base_path()
click to toggle source
# File lib/infoblox.rb, line 23 def base_path '/wapi/v' + Infoblox.wapi_version + '/' end
wapi_version()
click to toggle source
# File lib/infoblox.rb, line 13 def wapi_version @wapi_version ||= (ENV['WAPI_VERSION'] || '2.0') end
wapi_version=(v)
click to toggle source
# File lib/infoblox.rb, line 18 def wapi_version=(v) @wapi_version = v end