diff --git a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2022-01-01-preview/AutomationRules.json b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2022-01-01-preview/AutomationRules.json index 1c0ffc3355de..de6b23fbd1e3 100644 --- a/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2022-01-01-preview/AutomationRules.json +++ b/specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2022-01-01-preview/AutomationRules.json @@ -384,12 +384,15 @@ "properties": { "displayName": { "description": "The display name of the automation rule", - "type": "string" + "type": "string", + "maxLength": 500 }, "order": { "format": "int32", "description": "The order of execution of the automation rule", - "type": "integer" + "type": "integer", + "minimum": 1, + "maximum": 1000 }, "triggeringLogic": { "$ref": "#/definitions/AutomationRuleTriggeringLogic" @@ -399,7 +402,9 @@ "type": "array", "items": { "$ref": "#/definitions/AutomationRuleAction" - } + }, + "x-ms-identifiers": [], + "maxItems": 20 }, "lastModifiedTimeUtc": { "format": "date-time", @@ -833,9 +838,13 @@ "conditions": { "description": "The conditions to evaluate to determine if the automation rule should be triggered on a given object", "type": "array", + "maxItems": 50, "items": { "$ref": "#/definitions/AutomationRuleCondition" - } + }, + "x-ms-identifiers": [ + "conditionType" + ] } } },