|
1218 | 1218 | "documentation":"<p>Lists members on a job.</p>",
|
1219 | 1219 | "endpoint":{"hostPrefix":"management."}
|
1220 | 1220 | },
|
| 1221 | + "ListJobParameterDefinitions":{ |
| 1222 | + "name":"ListJobParameterDefinitions", |
| 1223 | + "http":{ |
| 1224 | + "method":"GET", |
| 1225 | + "requestUri":"/2023-10-12/farms/{farmId}/queues/{queueId}/jobs/{jobId}/parameter-definitions", |
| 1226 | + "responseCode":200 |
| 1227 | + }, |
| 1228 | + "input":{"shape":"ListJobParameterDefinitionsRequest"}, |
| 1229 | + "output":{"shape":"ListJobParameterDefinitionsResponse"}, |
| 1230 | + "errors":[ |
| 1231 | + {"shape":"AccessDeniedException"}, |
| 1232 | + {"shape":"InternalServerErrorException"}, |
| 1233 | + {"shape":"ResourceNotFoundException"}, |
| 1234 | + {"shape":"ThrottlingException"}, |
| 1235 | + {"shape":"ValidationException"} |
| 1236 | + ], |
| 1237 | + "documentation":"<p>Lists parameter definitions of a job.</p>", |
| 1238 | + "endpoint":{"hostPrefix":"management."} |
| 1239 | + }, |
1221 | 1240 | "ListJobs":{
|
1222 | 1241 | "name":"ListJobs",
|
1223 | 1242 | "http":{
|
|
3203 | 3222 | "required":[
|
3204 | 3223 | "farmId",
|
3205 | 3224 | "queueId",
|
3206 |
| - "template", |
3207 |
| - "templateType", |
3208 | 3225 | "priority"
|
3209 | 3226 | ],
|
3210 | 3227 | "members":{
|
|
3262 | 3279 | "maxRetriesPerTask":{
|
3263 | 3280 | "shape":"MaxRetriesPerTask",
|
3264 | 3281 | "documentation":"<p>The maximum number of retries for each task.</p>"
|
| 3282 | + }, |
| 3283 | + "sourceJobId":{ |
| 3284 | + "shape":"JobId", |
| 3285 | + "documentation":"<p>The job ID for the source job.</p>" |
3265 | 3286 | }
|
3266 | 3287 | }
|
3267 | 3288 | },
|
|
5211 | 5232 | "description":{
|
5212 | 5233 | "shape":"JobDescription",
|
5213 | 5234 | "documentation":"<p>The description of the job.</p> <important> <p>This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.</p> </important>"
|
| 5235 | + }, |
| 5236 | + "sourceJobId":{ |
| 5237 | + "shape":"JobId", |
| 5238 | + "documentation":"<p>The job ID for the source job.</p>" |
5214 | 5239 | }
|
5215 | 5240 | }
|
5216 | 5241 | },
|
|
6693 | 6718 | "documentation":"<p>The details of job parameters.</p>",
|
6694 | 6719 | "union":true
|
6695 | 6720 | },
|
| 6721 | + "JobParameterDefinition":{ |
| 6722 | + "type":"structure", |
| 6723 | + "members":{ |
| 6724 | + }, |
| 6725 | + "document":true |
| 6726 | + }, |
| 6727 | + "JobParameterDefinitions":{ |
| 6728 | + "type":"list", |
| 6729 | + "member":{"shape":"JobParameterDefinition"} |
| 6730 | + }, |
6696 | 6731 | "JobParameters":{
|
6697 | 6732 | "type":"map",
|
6698 | 6733 | "key":{"shape":"String"},
|
|
6794 | 6829 | "jobParameters":{
|
6795 | 6830 | "shape":"JobParameters",
|
6796 | 6831 | "documentation":"<p>The job parameters.</p>"
|
| 6832 | + }, |
| 6833 | + "sourceJobId":{ |
| 6834 | + "shape":"JobId", |
| 6835 | + "documentation":"<p>The job ID for the source job.</p>" |
6797 | 6836 | }
|
6798 | 6837 | },
|
6799 | 6838 | "documentation":"<p>The details of a job search.</p>"
|
|
6877 | 6916 | "maxRetriesPerTask":{
|
6878 | 6917 | "shape":"MaxRetriesPerTask",
|
6879 | 6918 | "documentation":"<p>The maximum number of retries for a job.</p>"
|
| 6919 | + }, |
| 6920 | + "sourceJobId":{ |
| 6921 | + "shape":"JobId", |
| 6922 | + "documentation":"<p>The job ID for the source job.</p>" |
6880 | 6923 | }
|
6881 | 6924 | },
|
6882 | 6925 | "documentation":"<p>A summary of job details.</p>"
|
|
7260 | 7303 | }
|
7261 | 7304 | }
|
7262 | 7305 | },
|
| 7306 | + "ListJobParameterDefinitionsRequest":{ |
| 7307 | + "type":"structure", |
| 7308 | + "required":[ |
| 7309 | + "farmId", |
| 7310 | + "jobId", |
| 7311 | + "queueId" |
| 7312 | + ], |
| 7313 | + "members":{ |
| 7314 | + "farmId":{ |
| 7315 | + "shape":"FarmId", |
| 7316 | + "documentation":"<p>The farm ID of the job to list.</p>", |
| 7317 | + "location":"uri", |
| 7318 | + "locationName":"farmId" |
| 7319 | + }, |
| 7320 | + "jobId":{ |
| 7321 | + "shape":"JobId", |
| 7322 | + "documentation":"<p>The job ID to include on the list.</p>", |
| 7323 | + "location":"uri", |
| 7324 | + "locationName":"jobId" |
| 7325 | + }, |
| 7326 | + "queueId":{ |
| 7327 | + "shape":"QueueId", |
| 7328 | + "documentation":"<p>The queue ID to include on the list.</p>", |
| 7329 | + "location":"uri", |
| 7330 | + "locationName":"queueId" |
| 7331 | + }, |
| 7332 | + "nextToken":{ |
| 7333 | + "shape":"String", |
| 7334 | + "documentation":"<p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>", |
| 7335 | + "location":"querystring", |
| 7336 | + "locationName":"nextToken" |
| 7337 | + }, |
| 7338 | + "maxResults":{ |
| 7339 | + "shape":"MaxResults", |
| 7340 | + "documentation":"<p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>", |
| 7341 | + "location":"querystring", |
| 7342 | + "locationName":"maxResults" |
| 7343 | + } |
| 7344 | + } |
| 7345 | + }, |
| 7346 | + "ListJobParameterDefinitionsResponse":{ |
| 7347 | + "type":"structure", |
| 7348 | + "required":["jobParameterDefinitions"], |
| 7349 | + "members":{ |
| 7350 | + "jobParameterDefinitions":{ |
| 7351 | + "shape":"JobParameterDefinitions", |
| 7352 | + "documentation":"<p>Lists parameter definitions of a job.</p>" |
| 7353 | + }, |
| 7354 | + "nextToken":{ |
| 7355 | + "shape":"String", |
| 7356 | + "documentation":"<p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>" |
| 7357 | + } |
| 7358 | + } |
| 7359 | + }, |
7263 | 7360 | "ListJobsRequest":{
|
7264 | 7361 | "type":"structure",
|
7265 | 7362 | "required":[
|
|
0 commit comments