INPUT_OBJECT

CreateJobTemplate

link GraphQL Schema definition

1input CreateJobTemplate {
4
2# The set of task template definitions for this job template.
3taskTemplates: [CreateTaskTemplate!]
7
5# Used only by Veritone platform components.
6skipDecider: Boolean
11
8# Optional job-level configuration. Typically used only by Veritone
9# platform components.
10jobConfig: JSONData
16
12# Application ID. Used only by Veritone platform components.
13# Other clients should not attempt to send this field. Any value sent
14# will be ignored.
15applicationId: ID
18
17clusterId: ID
20
19routes: [CreateRoute]
24
21# This contains a list of URIs engine toolkit will send completed chunks.
22# This is for all tasks in job.
23notificationUris: [String]
28
25# deprecated. DO NOT USE.
26# TODO: Remove
27jobPipelineId: ID
32
29# deprecated. DO NOT USE.
30# TODO: Remove
31jobPipelineStage: Int
33}