@@ -3,6 +3,7 @@ _version = 1
3
3
[configure .config_doc ]
4
4
configurationDocumentSchemaTitle = " Configuration document schema URI"
5
5
configurationDocumentSchemaDescription = " Defines the JSON Schema the configuration document adheres to."
6
+ skippingResource = " Skipping resource '%{name}' due to condition '%{condition}' with result '%{result}'"
6
7
7
8
[configure .constraints ]
8
9
minLengthIsNull = " Parameter '%{name}' has minimum length constraint but is null"
@@ -69,6 +70,7 @@ invokeExpression = "Invoke property expression for %{name}: %{value}"
69
70
propertyNotString = " Property '%{name}' with value '%{value}' is not a string"
70
71
metadataMicrosoftDscIgnored = " Resource returned '_metadata' property 'Microsoft.DSC' which is ignored"
71
72
metadataNotObject = " Resource returned '_metadata' property which is not an object"
73
+ metadataRestartRequiredInvalid = " Resource returned '_metadata' property '_restartRequired' which contains invalid value: %{value}"
72
74
73
75
[discovery .commandDiscovery ]
74
76
couldNotReadSetting = " Could not read 'resourcePath' setting"
@@ -204,9 +206,17 @@ noStringArgs = "Function '%{name}' does not accept string arguments, accepted ty
204
206
description = " Adds two or more numbers together"
205
207
invoked = " add function"
206
208
209
+ [functions .and ]
210
+ description = " Evaluates if all arguments are true"
211
+ invoked = " and function"
212
+
207
213
[functions .base64 ]
208
214
description = " Encodes a string to Base64 format"
209
215
216
+ [functions .bool ]
217
+ description = " Converts a string or number to a boolean"
218
+ invoked = " bool function"
219
+
210
220
[functions .concat ]
211
221
description = " Concatenates two or more strings or arrays"
212
222
invoked = " concat function"
@@ -234,6 +244,10 @@ notFound = "Environment variable not found"
234
244
[functions .equals ]
235
245
description = " Evaluates if the two values are the same"
236
246
247
+ [functions .false ]
248
+ description = " Returns the boolean value false"
249
+ invoked = " false function"
250
+
237
251
[functions .format ]
238
252
description = " Formats a string using the given arguments"
239
253
experimental = " `format()` function is experimental"
@@ -274,6 +288,14 @@ divideByZero = "Cannot divide by zero"
274
288
description = " Multiplies two or more numbers together"
275
289
invoked = " mul function"
276
290
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
+
277
299
[functions .parameters ]
278
300
description = " Retrieves parameters from the configuration"
279
301
invoked = " parameters function"
@@ -314,6 +336,10 @@ invoked = "sub function"
314
336
description = " Returns the system root path"
315
337
invoked = " systemRoot function"
316
338
339
+ [functions .true ]
340
+ description = " Returns the boolean value true"
341
+ invoked = " true function"
342
+
317
343
[functions .variables ]
318
344
description = " Retrieves the value of a variable"
319
345
invoked = " variables function"
0 commit comments