@@ -3,6 +3,7 @@ _version = 1
33[configure .config_doc ]
44configurationDocumentSchemaTitle = " Configuration document schema URI"
55configurationDocumentSchemaDescription = " Defines the JSON Schema the configuration document adheres to."
6+ skippingResource = " Skipping resource '%{name}' due to condition '%{condition}' with result '%{result}'"
67
78[configure .constraints ]
89minLengthIsNull = " Parameter '%{name}' has minimum length constraint but is null"
@@ -69,6 +70,7 @@ invokeExpression = "Invoke property expression for %{name}: %{value}"
6970propertyNotString = " Property '%{name}' with value '%{value}' is not a string"
7071metadataMicrosoftDscIgnored = " Resource returned '_metadata' property 'Microsoft.DSC' which is ignored"
7172metadataNotObject = " Resource returned '_metadata' property which is not an object"
73+ metadataRestartRequiredInvalid = " Resource returned '_metadata' property '_restartRequired' which contains invalid value: %{value}"
7274
7375[discovery .commandDiscovery ]
7476couldNotReadSetting = " Could not read 'resourcePath' setting"
@@ -204,9 +206,17 @@ noStringArgs = "Function '%{name}' does not accept string arguments, accepted ty
204206description = " Adds two or more numbers together"
205207invoked = " add function"
206208
209+ [functions .and ]
210+ description = " Evaluates if all arguments are true"
211+ invoked = " and function"
212+
207213[functions .base64 ]
208214description = " Encodes a string to Base64 format"
209215
216+ [functions .bool ]
217+ description = " Converts a string or number to a boolean"
218+ invoked = " bool function"
219+
210220[functions .concat ]
211221description = " Concatenates two or more strings or arrays"
212222invoked = " concat function"
@@ -234,6 +244,10 @@ notFound = "Environment variable not found"
234244[functions .equals ]
235245description = " Evaluates if the two values are the same"
236246
247+ [functions .false ]
248+ description = " Returns the boolean value false"
249+ invoked = " false function"
250+
237251[functions .format ]
238252description = " Formats a string using the given arguments"
239253experimental = " `format()` function is experimental"
@@ -274,6 +288,14 @@ divideByZero = "Cannot divide by zero"
274288description = " Multiplies two or more numbers together"
275289invoked = " mul function"
276290
291+ [functions .not ]
292+ description = " Negates a boolean value"
293+ invoked = " not function"
294+
295+ [functions .or ]
296+ description = " Evaluates if any arguments are true"
297+ invoked = " or function"
298+
277299[functions .parameters ]
278300description = " Retrieves parameters from the configuration"
279301invoked = " parameters function"
@@ -314,6 +336,10 @@ invoked = "sub function"
314336description = " Returns the system root path"
315337invoked = " systemRoot function"
316338
339+ [functions .true ]
340+ description = " Returns the boolean value true"
341+ invoked = " true function"
342+
317343[functions .variables ]
318344description = " Retrieves the value of a variable"
319345invoked = " variables function"
0 commit comments