class Puppet::Parser::AST::ResourceInstance
A simple container for a parameter for an object. Consists of a title and a set of parameters.
Attributes
parameters[RW]
title[RW]
Public Class Methods
new(argshash)
click to toggle source
Calls superclass method
Puppet::Parser::AST::Branch::new
# File lib/puppet/parser/ast/resource_instance.rb 6 def initialize(argshash) 7 Puppet.warn_once('deprecations', 'AST::ResourceInstance', _('Use of Puppet::Parser::AST::ResourceInstance is deprecated')) 8 super(argshash) 9 end