Anchor | ||||
---|---|---|---|---|
|
...
Attributes | Type | Description |
---|---|---|
workflowExecutionId | Long | This is the unique id of the workflow execution |
dockerImageName | String | This is the name of the docker image |
environmentId | Long | This is the unique Id of the environment |
executionStatus | String | This is the status of the execution i.e. Success, Failure, Running |
instanceId | Long | This is the unique Id of the instance |
parentWorkflowExecutionId | Long | This is the unique id of a parent execution, if one exists |
predeployWorkflowExecutionId | Long | This is the unique id of a pre-deploy execution, if one was used |
projectId | Long | This is the unique Id of the project |
projectVersionId | Long | This is the unique Id of the project version |
projectWorkflowId | Long | This is the unique Id of the project workflow |
endTime | Timestamp | This is the time the execution ended, if it has ended |
startTime | Timestamp | This is the time the execution started |
workflowRequestId | Long | This is the unique id of the workflow request |
workflowVersionId | Long | This is the unique id of the workflow version |
createdOn | Timestamp | This is the time the execution was created |
createdBy | String | This is the user who created the execution |
updatedOn | Timestamp | This is the time the execution was updated |
updatedBy | String | This is the user who updated the execution last |
version | Integer | This the version number of the execution |
workflowState | String | This is the state of the workflow |
workflowId | Long | This is the id of the workflow |
workflowType | String | This is the type of the workflow |
reviewStatus | String | This is the status of the review |
abortedOn | Timestamp | This is when the execution was aborted if applicable |
abortedBy | String | This is who aborted the execution if applicable |
...
GET
There are two implementations of GET. One will find a workflow execution with the given Id and return the JSON representation of the workflow execution. The other will find a list of workflow executions matching the parameters supplied to it.
...
Code Block | ||||
---|---|---|---|---|
| ||||
{ "workflowVersionId": 228650, "workflowState": "<State Info>", "parentWorkflowExecutionId": null, "dockerImageName": null, "projectWorkflowId": 4113, "predeployWorkflowExecId": null, "createdOn": "2022-03-21T17:58:30.933+0000", "createdBy": "fdadmin", "updatedOn": "2022-03-21T17:58:40.085+0000", "updatedBy": "fdadmin", "versionNumber": 7, "reviewStatus": null, "endTime": "2022-03-21T17:58:40.071+0000", "abortedBy": null, "abortedOn": null, "workflowExecutionId": 1174966, "executionStatus": "Success", "workflowType": "DEPLOY", "startTime": "2022-03-21T17:58:32.500+0000", "workflowRequestId": 268609, "projectId": 4107, "environmentId": 11595, "projectVersionId": 1966876, "workflowId": 4126, "instanceId": 4204 } |
GET (Using Query Parameters)
This GET service will return a list of environments in the form of JSON objects based on the query parameters code and name. Environments are only returned if they match all of the specified query parameters. If no query parameters are given this request will return the entire list of environments.
Info | ||
---|---|---|
| ||
http://host:port/flexdeploy/rest/v1/workflowExecution? Append the following character sequences to the above URL to specify Query parameters.Use '&' between successive query parameters:workflowExecutionId={workflowExecutionId} workflowRequestId={workflowRequestId} |
...
Code Block | ||||
---|---|---|---|---|
| ||||
[ { "workflowVersionId": 228650, "workflowState": "<State Info>", "parentWorkflowExecutionId": null, "dockerImageName": null, "projectWorkflowId": 4113, "predeployWorkflowExecId": null, "createdOn": "2022-03-21T17:58:30.933+0000", "createdBy": "fdadmin", "updatedOn": "2022-03-21T17:58:40.085+0000", "updatedBy": "fdadmin", "versionNumber": 7, "reviewStatus": null, "endTime": "2022-03-21T17:58:40.071+0000", "abortedBy": null, "abortedOn": null, "workflowExecutionId": 1174966, "executionStatus": "Success", "workflowType": "DEPLOY", "startTime": "2022-03-21T17:58:32.500+0000", "workflowRequestId": 268609, "projectId": 4107, "environmentId": 11595, "projectVersionId": 1966876, "workflowId": 4126, "instanceId": 4204 } ] |
GET Logs
This GET service will download all logs associated with this execution as a zip file.
...