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
 7 def initialize(argshash)
 8   Puppet.warn_once('deprecations', 'AST::ResourceInstance', _('Use of Puppet::Parser::AST::ResourceInstance is deprecated'))
 9   super(argshash)
10 end