Skip to content

Commit

Permalink
Added support for asynchronous pattern when executing a flow. (#3078)
Browse files Browse the repository at this point in the history
  • Loading branch information
lpperras authored Nov 11, 2023
1 parent 27e7214 commit 5d3d8aa
Showing 1 changed file with 61 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,12 @@
"$ref": "#/definitions/FlowExecutionResponse"
}
},
"202": {
"description": "Success",
"schema": {
"$ref": "#/definitions/FlowExecutionResponse"
}
},
"400": {
"description": "Bad Request"
},
Expand All @@ -452,6 +458,60 @@
]
}
},
"/api/ExecutionProgress": {
"get": {
"description": "Get the progress of an execution.",
"operationId": "GetExecutionProgress",
"parameters": [
{
"in": "query",
"name": "executionId",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "timeout",
"required": false,
"type": "string"
},
{
"in": "query",
"name": "startTime",
"required": false,
"type": "string"
}
],
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/FlowExecutionResponse"
}
},
"202": {
"description": "Success",
"schema": {
"$ref": "#/definitions/FlowExecutionResponse"
}
},
"400": {
"description": "Bad Request"
},
"401": {
"description": "Unauthorized"
}
},
"summary": "Get Flow Schema",
"tags": [
"Flows"
],
"x-ms-visibility": "internal"
}
},
"/api/Flows": {
"get": {
"consumes": [
Expand Down Expand Up @@ -742,4 +802,4 @@
"securityDefinitions": {},
"swagger": "2.0",
"tags": []
}
}

0 comments on commit 5d3d8aa

Please sign in to comment.