Puppet Function: dig

Defined in:
puppet/modules/stdlib/lib/puppet/parser/functions/dig.rb
Function type:
Ruby 3.x API

Overview

dig()Any

DEPRECATED: This function has been replaced in Puppet 4.5.0, please use dig44() for backwards compatibility or use the new version.

Returns:

  • (Any)


6
7
8
9
10
11
12
13
14
15
# File 'puppet/modules/stdlib/lib/puppet/parser/functions/dig.rb', line 6

newfunction(:dig, :type => :rvalue, :doc => <<-EOS
  DEPRECATED: This function has been replaced in Puppet 4.5.0, please use dig44() for backwards compatibility or use the new version.
  EOS
) do |arguments|
  warning("dig() DEPRECATED: This function has been replaced in Puppet 4.5.0, please use dig44() for backwards compatibility or use the new version.")
  if ! Puppet::Parser::Functions.autoloader.loaded?(:dig44)
    Puppet::Parser::Functions.autoloader.load(:dig44)
  end
  function_dig44(arguments)
end