Class: ExecutableJobRequest
Defined in: packages/microservice/job-broker/src/middleware/schemas/executable-job.schema.ts:12
Schema representing an executed task result. This schema defines the structure of the task that has been executed, including the executable name, its arguments, environment variables, standard input, and whether it should run in a TTY.
Constructors
Constructor
new ExecutableJobRequest():
ExecutableJobRequest
Returns
ExecutableJobRequest
Properties
arguments?
optionalarguments:string[]
Defined in: packages/microservice/job-broker/src/middleware/schemas/executable-job.schema.ts:19
env_vars?
optionalenv_vars:string[]
Defined in: packages/microservice/job-broker/src/middleware/schemas/executable-job.schema.ts:23
executable
executable:
string
Defined in: packages/microservice/job-broker/src/middleware/schemas/executable-job.schema.ts:15
stdin?
optionalstdin:string
Defined in: packages/microservice/job-broker/src/middleware/schemas/executable-job.schema.ts:27
tty?
optionaltty:boolean
Defined in: packages/microservice/job-broker/src/middleware/schemas/executable-job.schema.ts:31
