Skip to content

Commit

Permalink
Manual trigger API alignment - mark mandatory param as required (#19730)
Browse files Browse the repository at this point in the history
* Manual trigger API alignment - mark mandatory param as required

* Fixed missing identifier id in array item property

* Removed redundant definition
  • Loading branch information
loriatarms authored Jul 15, 2022
1 parent 70efa69 commit c03c258
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 71 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,8 @@
"type": "array",
"items": {
"$ref": "#/definitions/AutomationRuleAction"
}
},
"x-ms-identifiers": []
},
"lastModifiedTimeUtc": {
"format": "date-time",
Expand Down Expand Up @@ -835,7 +836,10 @@
"type": "array",
"items": {
"$ref": "#/definitions/AutomationRuleCondition"
}
},
"x-ms-identifiers": [
"conditionType"
]
}
}
},
Expand Down Expand Up @@ -892,6 +896,9 @@
},
"ManualTriggerRequestBody": {
"type": "object",
"required": [
"logicAppsResourceId"
],
"properties": {
"tenantId": {
"format": "uuid",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,29 +384,6 @@
"modelAsString": true,
"name": "UebaDataSources"
}
},
"Sku": {
"description": "The pricing tier of the solution",
"properties": {
"name": {
"description": "The kind of the tier",
"enum": [
"PerGB",
"CapacityReservation"
],
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "SkuKind"
}
},
"capacityReservationLevel": {
"description": "The amount of reservation level",
"type": "integer",
"format": "int32"
}
},
"type": "object"
}
},
"parameters": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -901,6 +901,9 @@
},
"ManualTriggerRequestBody": {
"type": "object",
"required": [
"logicAppsResourceId"
],
"properties": {
"tenantId": {
"format": "uuid",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,29 +384,6 @@
"modelAsString": true,
"name": "UebaDataSources"
}
},
"Sku": {
"description": "The pricing tier of the solution",
"properties": {
"name": {
"description": "The kind of the tier",
"enum": [
"PerGB",
"CapacityReservation"
],
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "SkuKind"
}
},
"capacityReservationLevel": {
"description": "The amount of reservation level",
"type": "integer",
"format": "int32"
}
},
"type": "object"
}
},
"parameters": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -901,6 +901,9 @@
},
"ManualTriggerRequestBody": {
"type": "object",
"required": [
"logicAppsResourceId"
],
"properties": {
"tenantId": {
"format": "uuid",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,29 +398,6 @@
"modelAsString": true,
"name": "UebaDataSources"
}
},
"Sku": {
"description": "The pricing tier of the solution",
"properties": {
"name": {
"description": "The kind of the tier",
"enum": [
"PerGB",
"CapacityReservation"
],
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "SkuKind"
}
},
"capacityReservationLevel": {
"description": "The amount of reservation level",
"type": "integer",
"format": "int32"
}
},
"type": "object"
}
},
"parameters": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1037,6 +1037,9 @@
},
"ManualTriggerRequestBody": {
"type": "object",
"required": [
"logicAppsResourceId"
],
"properties": {
"tenantId": {
"format": "uuid",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1037,6 +1037,9 @@
},
"ManualTriggerRequestBody": {
"type": "object",
"required": [
"logicAppsResourceId"
],
"properties": {
"tenantId": {
"format": "uuid",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1042,6 +1042,9 @@
},
"ManualTriggerRequestBody": {
"type": "object",
"required": [
"logicAppsResourceId"
],
"properties": {
"tenantId": {
"format": "uuid",
Expand Down

0 comments on commit c03c258

Please sign in to comment.