Implement routes to list, get and delete execution environments
* #9 Implement routes to list, get and delete execution environments. A refactoring was required to introduce the ExecutionEnvironment interface. * Fix MR comments, linting issues and bug that lead to e2e test failure * Add e2e tests * Add unit tests
This commit is contained in:
@ -321,6 +321,14 @@ paths:
|
||||
description: List all execution environments the API is aware of.
|
||||
tags:
|
||||
- execution environment
|
||||
parameters:
|
||||
- name: fetch
|
||||
in: query
|
||||
description: Specify whether environments should be fetched again from the executor before returning. Otherwise, the data currently in cache is returned.
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
required: false
|
||||
responses:
|
||||
"200":
|
||||
description: Success. Returns all execution environments
|
||||
@ -350,6 +358,14 @@ paths:
|
||||
description: Get a representation of the execution environment specified by the id.
|
||||
tags:
|
||||
- execution environment
|
||||
parameters:
|
||||
- name: fetch
|
||||
in: query
|
||||
description: Specify whether the environment should be fetched again from the executor before returning. Otherwise, the data currently in cache is returned.
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
required: false
|
||||
responses:
|
||||
"200":
|
||||
description: Success. Returns the execution environment
|
||||
|
Reference in New Issue
Block a user