1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Puppet::Type.newtype(:datacat_fragment) do
desc 'A fragment of data for a datacat resource.'
newparam(:name, :namevar => true) do
desc 'The name of this fragment.'
end
newparam(:target) do
desc 'The title of the datacat resource that the data should be considered part of. May be an array to indicate multiple targetted collectors.'
end
newparam(:order) do
desc 'The order in which to merge this fragment into the datacat resource. Defaults to the string "50"'
defaultto "50"
end
newparam(:data) do
desc 'A hash of data to be merged for this resource.'
end
end
|