INPUT_OBJECT
CreateJob
link GraphQL Schema definition
1 input CreateJob { 3 2 : String 5 4 : ID 8 6 # User-provided job name 7 : String 11 9 # Optional job description 10 : String 13 12 : [CreateTask!] 15 14 : Int 20 16 # Supply a job template ID to indicate that this 17 # job was created from the given job template. 18 # To create a job _from_ a template, use `launchJobTemplates`. 19 : ID 22 21 : Boolean 26 23 # Optionally, specify a cluster ID where the job should run. 24 # Both the organization and the engine must have access to the cluster. 25 : ID 30 27 # Optional job config information. Typically used only by Veritone 28 # platform components. 29 : JSONData 36 31 # Optionally, specify the scheduled job ID that this job is associated 32 # with. Typically it is not necessary for a client to set this; it is 33 # handled internally by the API. 34 # To create a job _from_ a scheduled job, use `launchScheduledJobs` 35 : ID 38 37 : Boolean 42 39 # Optionally, provide input needed to create a `TemporalDataObject`. 40 # The new `TemporalDataObject` will be the target of this job. 41 : CreateTDOInJob 44 43 : [CreateRoute] 48 45 # ID of the organization that the job should be created on behalf of. 46 # Only internal platform components can set this value. 47 : ID 51 49 # This contains a list of URIs engine toolkit will send completed chunks. 50 : [String] 56 52 # Supply a DAG template ID to indicate that this 53 # job was created from the given dag template. 54 # To create a job _from_ a template, use `launchSingleEngineJob`. 55 : ID 58 57 : String 59 }