17.33. Jobs Create RPC¶
Requests creation of a new job based on a known pipeline.
rpc Create (JobsCreateRequest) returns (JobsCreateResponse)
17.33.1. Messages¶
- JobsCreateRequest
- JobsCreateResponse
17.34. JobsCreateRequest¶
message JobsCreateRequest { RequestHeader header = 1; Identifier pipeline_id = 2; string name = 3; JobPriority priority = 4; repeated Identifier input_payloads = 5; map<string, string> metadata = 6; }
17.34.1. Properties¶
17.34.1.2. pipeline_id¶
type: message
Unique identifier of the pipeline the job will instance.
Required. If the identifier value is omitted from the request or does not match any known pipeline identifier, Clara Deploy SDK will be unable to fulfill the request.
See Identifier for details.
17.34.1.5. input_payloads¶
type: list
Set of identifiers of static payloads to include as input for the job. Input payloads must be PAYLOAD_TYPE_STATIC.
Input payloads will be copied into the “~/input/” folder of the job’s storage payload in the order provided.
Any name collisions during content copy will result in an error.
See Identifier for details.
17.34.1.6. metadata¶
type: map
Metadata (set of key/value pairs) associated with the job.
Key and value are string types.
17.35. JobsCreateResponse¶
message JobCreateResponse { ResponseHeader header = 1; Identifier job_id = 2; Identifier payload_id = 3; }
Clara Deploy SDK Jobs service will respond to any create request with a JobsCreateResponse
message. Requestors can use the response message to determine the result of their request.
17.35.1. Properties¶
17.35.1.2. job_id¶
type: message
Unique identifier of the newly created job.
See Identifier for details.
17.35.1.3. payload_id¶
type: message
Unique payload identifier of the newly created job.
See Identifier for details.