Skip to content

microservice-job-broker


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?

optional arguments: string[]

Defined in: packages/microservice/job-broker/src/middleware/schemas/executable-job.schema.ts:19


env_vars?

optional env_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?

optional stdin: string

Defined in: packages/microservice/job-broker/src/middleware/schemas/executable-job.schema.ts:27


tty?

optional tty: boolean

Defined in: packages/microservice/job-broker/src/middleware/schemas/executable-job.schema.ts:31