Skip to content

Commit

Permalink
Fix Flatten In AutomationRules Modles (#17840)
Browse files Browse the repository at this point in the history
* Fix

* operation

Co-authored-by: Roy Reinhorn <roreinho@microsoft.com>
  • Loading branch information
royrein and Roy Reinhorn authored Feb 24, 2022
1 parent 9967109 commit 59eb5a7
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
"manualTrigger"
],
"description": "Triggers playbook on a specific incident",
"operationId": "AutomationRules_ManualTriggerPlaybook",
"operationId": "Incidents_RunPlaybook",
"consumes": [
"application/json"
],
Expand Down Expand Up @@ -366,11 +366,11 @@
"properties": {
"actionConfiguration": {
"type": "object",
"x-ms-client-flatten": true,
"$ref": "#/definitions/IncidentPropertiesAction"
}
},
"x-ms-discriminator-value": "ModifyProperties"
"x-ms-discriminator-value": "ModifyProperties",
"x-ms-client-flatten": true
},
"AutomationRuleProperties": {
"description": "Automation rule properties",
Expand Down Expand Up @@ -786,10 +786,10 @@
"properties": {
"actionConfiguration": {
"type": "object",
"x-ms-client-flatten": true,
"$ref": "#/definitions/PlaybookActionProperties"
}
},
"x-ms-client-flatten": true,
"x-ms-discriminator-value": "RunPlaybook"
},
"AutomationRulesList": {
Expand Down Expand Up @@ -927,10 +927,10 @@
"properties": {
"conditionProperties": {
"type": "object",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AutomationRulePropertyValuesCondition"
}
},
"x-ms-client-flatten": true,
"x-ms-discriminator-value": "Property"
},
"triggersOn": {
Expand Down

0 comments on commit 59eb5a7

Please sign in to comment.