Skip to content

Commit 848647d

Browse files
committed
update
1 parent db3618b commit 848647d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

articles/azure-resource-manager/bicep/user-defined-data-types.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,11 @@ Decorators are written in the format `@expression` and are placed above the decl
237237
| [description](#description) | string | Provide descriptions for the user-defined data type. |
238238
| [discriminator](#discriminator) | string | Use this decorator to ensure the correct subclass is identified and managed. |
239239
| [export](#export) | none | Indicates that the user-defined data type is available for import by another Bicep file. |
240-
| [metadata](#metadata) | all | object | Custom properties to apply to the data type. Can include a description property that is equivalent to the description decorator. |
240+
| [maxLength](#length-constraints) | array, string | int | The maximum length for string and array data types. The value is inclusive. |
241+
| [maxValue](#integer-constraints) | int | int | The maximum value for the integer data types. This value is inclusive. |
242+
| [metadata](#metadata) | all | object | Custom properties to apply to the data types. Can include a description property that is equivalent to the description decorator. |
243+
| [minLength](#length-constraints) | array, string | int | The minimum length for string and array data types. The value is inclusive. |
244+
| [minValue](#integer-constraints) | int | int | The minimum value for the integer data types. This value is inclusive. |
241245
| [sealed](#sealed) | none | Elevate [BCP089](./diagnostics/bcp089.md) from a warning to an error when a property name of a use-define data type is likely a typo. For more information, see [Elevate error level](#elevate-error-level).|
242246
| [secure](#secure-parameters) | string, object | none | Marks the types as secure. The value for a secure type isn't saved to the deployment history and isn't logged. For more information, see [Secure strings and objects](data-types.md#secure-strings-and-objects). |
243247

0 commit comments

Comments
 (0)