@itentialopensource/adapter-paragon_job_store 0.3.5 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/.eslintrc.js +1 -0
  2. package/AUTH.md +4 -4
  3. package/BROKER.md +4 -4
  4. package/CALLS.md +9 -9
  5. package/ENHANCE.md +3 -3
  6. package/PROPERTIES.md +24 -9
  7. package/README.md +24 -23
  8. package/SUMMARY.md +2 -2
  9. package/SYSTEMINFO.md +1 -1
  10. package/TAB1.md +2 -2
  11. package/TAB2.md +9 -5
  12. package/TROUBLESHOOT.md +10 -1
  13. package/UTILITIES.md +473 -0
  14. package/adapter.js +5 -5
  15. package/adapterBase.js +52 -16
  16. package/package.json +24 -28
  17. package/pronghorn.json +17 -15
  18. package/propertiesSchema.json +68 -7
  19. package/report/adapterInfo.json +7 -7
  20. package/report/auto-adapter-openapi.json +2269 -0
  21. package/report/updateReport1748551504793.json +120 -0
  22. package/sampleProperties.json +4 -0
  23. package/test/integration/adapterTestBasicGet.js +88 -54
  24. package/test/integration/adapterTestConnectivity.js +15 -16
  25. package/test/integration/adapterTestIntegration.js +1 -38
  26. package/test/unit/adapterBaseTestUnit.js +641 -39
  27. package/test/unit/adapterTestUnit.js +17 -54
  28. package/utils/adapterInfo.js +114 -164
  29. package/utils/argParser.js +44 -0
  30. package/utils/checkMigrate.js +77 -38
  31. package/utils/entitiesToDB.js +53 -42
  32. package/utils/logger.js +26 -0
  33. package/utils/modify.js +56 -55
  34. package/utils/mongoDbConnection.js +79 -0
  35. package/utils/mongoUtils.js +162 -0
  36. package/utils/taskMover.js +31 -32
  37. package/utils/tbScript.js +36 -172
  38. package/utils/tbUtils.js +84 -226
  39. package/utils/troubleshootingAdapter.js +68 -84
  40. package/utils/updateAdapterConfig.js +158 -0
  41. package/utils/addAuth.js +0 -94
  42. package/utils/artifactize.js +0 -146
  43. package/utils/basicGet.js +0 -50
  44. package/utils/packModificationScript.js +0 -35
  45. package/utils/patches2bundledDeps.js +0 -90
@@ -0,0 +1,2269 @@
1
+ {
2
+ "openapi": "3.1.0",
3
+ "info": {
4
+ "title": "",
5
+ "version": "1.0.0"
6
+ },
7
+ "paths": {
8
+ "/jobstore/job/{iD}": {
9
+ "put": {
10
+ "tags": [
11
+ "JobstoreService"
12
+ ],
13
+ "operationId": "jobstoreServiceUpdateJob",
14
+ "description": "The parameters and request body are for method: jobstoreServiceUpdateJob. Same endpoint also used in methods:",
15
+ "responses": {
16
+ "200": {
17
+ "description": "Successful operation",
18
+ "content": {
19
+ "application/json": {
20
+ "schema": {
21
+ "title": "result",
22
+ "type": "object"
23
+ }
24
+ }
25
+ }
26
+ }
27
+ },
28
+ "parameters": [
29
+ {
30
+ "name": "iD",
31
+ "in": "path",
32
+ "required": true,
33
+ "schema": {
34
+ "title": "iD",
35
+ "type": "string"
36
+ }
37
+ }
38
+ ],
39
+ "requestBody": {
40
+ "description": "indeterminate body object",
41
+ "content": {
42
+ "application/json": {
43
+ "schema": {
44
+ "type": "object"
45
+ }
46
+ }
47
+ }
48
+ }
49
+ },
50
+ "get": {
51
+ "tags": [
52
+ "JobstoreService"
53
+ ],
54
+ "operationId": "jobstoreServiceGetJob",
55
+ "description": "The parameters and request body are for method: jobstoreServiceGetJob. Same endpoint also used in methods:",
56
+ "responses": {
57
+ "200": {
58
+ "description": "Successful operation",
59
+ "content": {
60
+ "application/json": {
61
+ "schema": {
62
+ "title": "result",
63
+ "type": "object"
64
+ }
65
+ }
66
+ }
67
+ }
68
+ },
69
+ "parameters": [
70
+ {
71
+ "name": "iD",
72
+ "in": "path",
73
+ "required": true,
74
+ "schema": {
75
+ "title": "iD",
76
+ "type": "string"
77
+ }
78
+ },
79
+ {
80
+ "name": "detail",
81
+ "in": "query",
82
+ "required": true,
83
+ "schema": {
84
+ "type": "string"
85
+ }
86
+ },
87
+ {
88
+ "name": "fields",
89
+ "in": "query",
90
+ "required": true,
91
+ "schema": {
92
+ "type": "string"
93
+ }
94
+ },
95
+ {
96
+ "name": "refFields",
97
+ "in": "query",
98
+ "required": true,
99
+ "schema": {
100
+ "type": "string"
101
+ }
102
+ }
103
+ ],
104
+ "requestBody": {
105
+ "content": {
106
+ "application/json": {
107
+ "schema": {
108
+ "type": "object"
109
+ },
110
+ "example": {}
111
+ }
112
+ }
113
+ }
114
+ },
115
+ "delete": {
116
+ "tags": [
117
+ "JobstoreService"
118
+ ],
119
+ "operationId": "jobstoreServiceDeleteJob",
120
+ "description": "The parameters and request body are for method: jobstoreServiceDeleteJob. Same endpoint also used in methods:",
121
+ "responses": {
122
+ "200": {
123
+ "description": "Successful operation",
124
+ "content": {
125
+ "application/json": {
126
+ "schema": {
127
+ "title": "result",
128
+ "type": "object"
129
+ }
130
+ }
131
+ }
132
+ }
133
+ },
134
+ "parameters": [
135
+ {
136
+ "name": "iD",
137
+ "in": "path",
138
+ "required": true,
139
+ "schema": {
140
+ "title": "iD",
141
+ "type": "string"
142
+ }
143
+ }
144
+ ],
145
+ "requestBody": {
146
+ "content": {
147
+ "application/json": {
148
+ "schema": {
149
+ "type": "object"
150
+ },
151
+ "example": {}
152
+ }
153
+ }
154
+ }
155
+ }
156
+ },
157
+ "/jobstore/bulk-list-job": {
158
+ "post": {
159
+ "tags": [
160
+ "JobstoreService"
161
+ ],
162
+ "operationId": "jobstoreServiceBulkListJob",
163
+ "description": "The parameters and request body are for method: jobstoreServiceBulkListJob. Same endpoint also used in methods:",
164
+ "responses": {
165
+ "200": {
166
+ "description": "Successful operation",
167
+ "content": {
168
+ "application/json": {
169
+ "schema": {
170
+ "title": "result",
171
+ "type": "object"
172
+ }
173
+ }
174
+ }
175
+ }
176
+ },
177
+ "requestBody": {
178
+ "description": "indeterminate body object",
179
+ "content": {
180
+ "application/json": {
181
+ "schema": {
182
+ "type": "object"
183
+ }
184
+ }
185
+ }
186
+ }
187
+ }
188
+ },
189
+ "/jobstore/bulk-ext-ref-update": {
190
+ "post": {
191
+ "tags": [
192
+ "JobstoreService"
193
+ ],
194
+ "operationId": "jobstoreServiceBulkExtRefUpdate",
195
+ "description": "The parameters and request body are for method: jobstoreServiceBulkExtRefUpdate. Same endpoint also used in methods:",
196
+ "responses": {
197
+ "200": {
198
+ "description": "Successful operation",
199
+ "content": {
200
+ "application/json": {
201
+ "schema": {
202
+ "title": "result",
203
+ "type": "object"
204
+ }
205
+ }
206
+ }
207
+ }
208
+ },
209
+ "requestBody": {
210
+ "description": "indeterminate body object",
211
+ "content": {
212
+ "application/json": {
213
+ "schema": {
214
+ "type": "object"
215
+ }
216
+ }
217
+ }
218
+ }
219
+ }
220
+ },
221
+ "/jobstore/bulk-ref-update": {
222
+ "post": {
223
+ "tags": [
224
+ "JobstoreService"
225
+ ],
226
+ "operationId": "jobstoreServiceBulkRefUpdate",
227
+ "description": "The parameters and request body are for method: jobstoreServiceBulkRefUpdate. Same endpoint also used in methods:",
228
+ "responses": {
229
+ "200": {
230
+ "description": "Successful operation",
231
+ "content": {
232
+ "application/json": {
233
+ "schema": {
234
+ "title": "result",
235
+ "type": "object"
236
+ }
237
+ }
238
+ }
239
+ }
240
+ },
241
+ "requestBody": {
242
+ "description": "indeterminate body object",
243
+ "content": {
244
+ "application/json": {
245
+ "schema": {
246
+ "type": "object"
247
+ }
248
+ }
249
+ }
250
+ }
251
+ }
252
+ },
253
+ "/jobstore/bulk-list-job-purge-policy": {
254
+ "post": {
255
+ "tags": [
256
+ "JobstoreService"
257
+ ],
258
+ "operationId": "jobstoreServiceBulkListJobPurgePolicy",
259
+ "description": "The parameters and request body are for method: jobstoreServiceBulkListJobPurgePolicy. Same endpoint also used in methods:",
260
+ "responses": {
261
+ "200": {
262
+ "description": "Successful operation",
263
+ "content": {
264
+ "application/json": {
265
+ "schema": {
266
+ "title": "result",
267
+ "type": "object"
268
+ }
269
+ }
270
+ }
271
+ }
272
+ },
273
+ "requestBody": {
274
+ "description": "indeterminate body object",
275
+ "content": {
276
+ "application/json": {
277
+ "schema": {
278
+ "type": "object"
279
+ }
280
+ }
281
+ }
282
+ }
283
+ }
284
+ },
285
+ "/jobstore/last-published-notification/{iD}": {
286
+ "put": {
287
+ "tags": [
288
+ "JobstoreService"
289
+ ],
290
+ "operationId": "jobstoreServiceUpdateLastPublishedNotification",
291
+ "description": "The parameters and request body are for method: jobstoreServiceUpdateLastPublishedNotification. Same endpoint also used in methods:",
292
+ "responses": {
293
+ "200": {
294
+ "description": "Successful operation",
295
+ "content": {
296
+ "application/json": {
297
+ "schema": {
298
+ "title": "result",
299
+ "type": "object"
300
+ }
301
+ }
302
+ }
303
+ }
304
+ },
305
+ "parameters": [
306
+ {
307
+ "name": "iD",
308
+ "in": "path",
309
+ "required": true,
310
+ "schema": {
311
+ "title": "iD",
312
+ "type": "string"
313
+ }
314
+ }
315
+ ],
316
+ "requestBody": {
317
+ "description": "indeterminate body object",
318
+ "content": {
319
+ "application/json": {
320
+ "schema": {
321
+ "type": "object"
322
+ }
323
+ }
324
+ }
325
+ }
326
+ },
327
+ "get": {
328
+ "tags": [
329
+ "JobstoreService"
330
+ ],
331
+ "operationId": "jobstoreServiceGetLastPublishedNotification",
332
+ "description": "The parameters and request body are for method: jobstoreServiceGetLastPublishedNotification. Same endpoint also used in methods:",
333
+ "responses": {
334
+ "200": {
335
+ "description": "Successful operation",
336
+ "content": {
337
+ "application/json": {
338
+ "schema": {
339
+ "title": "result",
340
+ "type": "object"
341
+ }
342
+ }
343
+ }
344
+ }
345
+ },
346
+ "parameters": [
347
+ {
348
+ "name": "iD",
349
+ "in": "path",
350
+ "required": true,
351
+ "schema": {
352
+ "title": "iD",
353
+ "type": "string"
354
+ }
355
+ },
356
+ {
357
+ "name": "detail",
358
+ "in": "query",
359
+ "required": true,
360
+ "schema": {
361
+ "type": "string"
362
+ }
363
+ },
364
+ {
365
+ "name": "fields",
366
+ "in": "query",
367
+ "required": true,
368
+ "schema": {
369
+ "type": "string"
370
+ }
371
+ },
372
+ {
373
+ "name": "refFields",
374
+ "in": "query",
375
+ "required": true,
376
+ "schema": {
377
+ "type": "string"
378
+ }
379
+ }
380
+ ],
381
+ "requestBody": {
382
+ "content": {
383
+ "application/json": {
384
+ "schema": {
385
+ "type": "object"
386
+ },
387
+ "example": {}
388
+ }
389
+ }
390
+ }
391
+ },
392
+ "delete": {
393
+ "tags": [
394
+ "JobstoreService"
395
+ ],
396
+ "operationId": "jobstoreServiceDeleteLastPublishedNotification",
397
+ "description": "The parameters and request body are for method: jobstoreServiceDeleteLastPublishedNotification. Same endpoint also used in methods:",
398
+ "responses": {
399
+ "200": {
400
+ "description": "Successful operation",
401
+ "content": {
402
+ "application/json": {
403
+ "schema": {
404
+ "title": "result",
405
+ "type": "object"
406
+ }
407
+ }
408
+ }
409
+ }
410
+ },
411
+ "parameters": [
412
+ {
413
+ "name": "iD",
414
+ "in": "path",
415
+ "required": true,
416
+ "schema": {
417
+ "title": "iD",
418
+ "type": "string"
419
+ }
420
+ }
421
+ ],
422
+ "requestBody": {
423
+ "content": {
424
+ "application/json": {
425
+ "schema": {
426
+ "type": "object"
427
+ },
428
+ "example": {}
429
+ }
430
+ }
431
+ }
432
+ }
433
+ },
434
+ "/jobstore/bulk-list-task": {
435
+ "post": {
436
+ "tags": [
437
+ "JobstoreService"
438
+ ],
439
+ "operationId": "jobstoreServiceBulkListTask",
440
+ "description": "The parameters and request body are for method: jobstoreServiceBulkListTask. Same endpoint also used in methods:",
441
+ "responses": {
442
+ "200": {
443
+ "description": "Successful operation",
444
+ "content": {
445
+ "application/json": {
446
+ "schema": {
447
+ "title": "result",
448
+ "type": "object"
449
+ }
450
+ }
451
+ }
452
+ }
453
+ },
454
+ "requestBody": {
455
+ "description": "indeterminate body object",
456
+ "content": {
457
+ "application/json": {
458
+ "schema": {
459
+ "type": "object"
460
+ }
461
+ }
462
+ }
463
+ }
464
+ }
465
+ },
466
+ "/jobstore/last-published-notification": {
467
+ "post": {
468
+ "tags": [
469
+ "JobstoreService"
470
+ ],
471
+ "operationId": "jobstoreServiceCreateLastPublishedNotification",
472
+ "description": "The parameters and request body are for method: jobstoreServiceCreateLastPublishedNotification. Same endpoint also used in methods:",
473
+ "responses": {
474
+ "200": {
475
+ "description": "Successful operation",
476
+ "content": {
477
+ "application/json": {
478
+ "schema": {
479
+ "title": "result",
480
+ "type": "object"
481
+ }
482
+ }
483
+ }
484
+ }
485
+ },
486
+ "requestBody": {
487
+ "description": "indeterminate body object",
488
+ "content": {
489
+ "application/json": {
490
+ "schema": {
491
+ "type": "object"
492
+ }
493
+ }
494
+ }
495
+ }
496
+ },
497
+ "get": {
498
+ "tags": [
499
+ "JobstoreService"
500
+ ],
501
+ "operationId": "jobstoreServiceListLastPublishedNotification",
502
+ "description": "The parameters and request body are for method: jobstoreServiceListLastPublishedNotification. Same endpoint also used in methods:",
503
+ "responses": {
504
+ "200": {
505
+ "description": "Successful operation",
506
+ "content": {
507
+ "application/json": {
508
+ "schema": {
509
+ "title": "result",
510
+ "type": "object"
511
+ }
512
+ }
513
+ }
514
+ }
515
+ },
516
+ "parameters": [
517
+ {
518
+ "name": "specSize",
519
+ "in": "query",
520
+ "required": true,
521
+ "schema": {
522
+ "type": "string"
523
+ }
524
+ },
525
+ {
526
+ "name": "specPageMarker",
527
+ "in": "query",
528
+ "required": true,
529
+ "schema": {
530
+ "type": "string"
531
+ }
532
+ },
533
+ {
534
+ "name": "specDetail",
535
+ "in": "query",
536
+ "required": true,
537
+ "schema": {
538
+ "type": "string"
539
+ }
540
+ },
541
+ {
542
+ "name": "specCount",
543
+ "in": "query",
544
+ "required": true,
545
+ "schema": {
546
+ "type": "string"
547
+ }
548
+ },
549
+ {
550
+ "name": "specExcludeShared",
551
+ "in": "query",
552
+ "required": true,
553
+ "schema": {
554
+ "type": "string"
555
+ }
556
+ },
557
+ {
558
+ "name": "specExcludeHrefs",
559
+ "in": "query",
560
+ "required": true,
561
+ "schema": {
562
+ "type": "string"
563
+ }
564
+ },
565
+ {
566
+ "name": "specParentFqNameStr",
567
+ "in": "query",
568
+ "required": true,
569
+ "schema": {
570
+ "type": "string"
571
+ }
572
+ },
573
+ {
574
+ "name": "specParentType",
575
+ "in": "query",
576
+ "required": true,
577
+ "schema": {
578
+ "type": "string"
579
+ }
580
+ },
581
+ {
582
+ "name": "specParentId",
583
+ "in": "query",
584
+ "required": true,
585
+ "schema": {
586
+ "type": "string"
587
+ }
588
+ },
589
+ {
590
+ "name": "specBackRefId",
591
+ "in": "query",
592
+ "required": true,
593
+ "schema": {
594
+ "type": "string"
595
+ }
596
+ },
597
+ {
598
+ "name": "specObjUuids",
599
+ "in": "query",
600
+ "required": true,
601
+ "schema": {
602
+ "type": "string"
603
+ }
604
+ },
605
+ {
606
+ "name": "specFields",
607
+ "in": "query",
608
+ "required": true,
609
+ "schema": {
610
+ "type": "string"
611
+ }
612
+ },
613
+ {
614
+ "name": "specFilters",
615
+ "in": "query",
616
+ "required": true,
617
+ "schema": {
618
+ "type": "string"
619
+ }
620
+ },
621
+ {
622
+ "name": "specRefUuids",
623
+ "in": "query",
624
+ "required": true,
625
+ "schema": {
626
+ "type": "string"
627
+ }
628
+ },
629
+ {
630
+ "name": "specFrom",
631
+ "in": "query",
632
+ "required": true,
633
+ "schema": {
634
+ "type": "string"
635
+ }
636
+ },
637
+ {
638
+ "name": "specSortby",
639
+ "in": "query",
640
+ "required": true,
641
+ "schema": {
642
+ "type": "string"
643
+ }
644
+ },
645
+ {
646
+ "name": "specOperation",
647
+ "in": "query",
648
+ "required": true,
649
+ "schema": {
650
+ "type": "string"
651
+ }
652
+ },
653
+ {
654
+ "name": "specTagFilters",
655
+ "in": "query",
656
+ "required": true,
657
+ "schema": {
658
+ "type": "string"
659
+ }
660
+ },
661
+ {
662
+ "name": "specTagDetail",
663
+ "in": "query",
664
+ "required": true,
665
+ "schema": {
666
+ "type": "string"
667
+ }
668
+ },
669
+ {
670
+ "name": "specRefFields",
671
+ "in": "query",
672
+ "required": true,
673
+ "schema": {
674
+ "type": "string"
675
+ }
676
+ },
677
+ {
678
+ "name": "specExtRefUuids",
679
+ "in": "query",
680
+ "required": true,
681
+ "schema": {
682
+ "type": "string"
683
+ }
684
+ }
685
+ ],
686
+ "requestBody": {
687
+ "content": {
688
+ "application/json": {
689
+ "schema": {
690
+ "type": "object"
691
+ },
692
+ "example": {}
693
+ }
694
+ }
695
+ }
696
+ }
697
+ },
698
+ "/jobstore/job-purge-policy": {
699
+ "post": {
700
+ "tags": [
701
+ "JobstoreService"
702
+ ],
703
+ "operationId": "jobstoreServiceCreateJobPurgePolicy",
704
+ "description": "The parameters and request body are for method: jobstoreServiceCreateJobPurgePolicy. Same endpoint also used in methods:",
705
+ "responses": {
706
+ "200": {
707
+ "description": "Successful operation",
708
+ "content": {
709
+ "application/json": {
710
+ "schema": {
711
+ "title": "result",
712
+ "type": "object"
713
+ }
714
+ }
715
+ }
716
+ }
717
+ },
718
+ "requestBody": {
719
+ "description": "indeterminate body object",
720
+ "content": {
721
+ "application/json": {
722
+ "schema": {
723
+ "type": "object"
724
+ }
725
+ }
726
+ }
727
+ }
728
+ },
729
+ "get": {
730
+ "tags": [
731
+ "JobstoreService"
732
+ ],
733
+ "operationId": "jobstoreServiceListJobPurgePolicy",
734
+ "description": "The parameters and request body are for method: jobstoreServiceListJobPurgePolicy. Same endpoint also used in methods:",
735
+ "responses": {
736
+ "200": {
737
+ "description": "Successful operation",
738
+ "content": {
739
+ "application/json": {
740
+ "schema": {
741
+ "title": "result",
742
+ "type": "object"
743
+ }
744
+ }
745
+ }
746
+ }
747
+ },
748
+ "parameters": [
749
+ {
750
+ "name": "specSize",
751
+ "in": "query",
752
+ "required": true,
753
+ "schema": {
754
+ "type": "string"
755
+ }
756
+ },
757
+ {
758
+ "name": "specPageMarker",
759
+ "in": "query",
760
+ "required": true,
761
+ "schema": {
762
+ "type": "string"
763
+ }
764
+ },
765
+ {
766
+ "name": "specDetail",
767
+ "in": "query",
768
+ "required": true,
769
+ "schema": {
770
+ "type": "string"
771
+ }
772
+ },
773
+ {
774
+ "name": "specCount",
775
+ "in": "query",
776
+ "required": true,
777
+ "schema": {
778
+ "type": "string"
779
+ }
780
+ },
781
+ {
782
+ "name": "specExcludeShared",
783
+ "in": "query",
784
+ "required": true,
785
+ "schema": {
786
+ "type": "string"
787
+ }
788
+ },
789
+ {
790
+ "name": "specExcludeHrefs",
791
+ "in": "query",
792
+ "required": true,
793
+ "schema": {
794
+ "type": "string"
795
+ }
796
+ },
797
+ {
798
+ "name": "specParentFqNameStr",
799
+ "in": "query",
800
+ "required": true,
801
+ "schema": {
802
+ "type": "string"
803
+ }
804
+ },
805
+ {
806
+ "name": "specParentType",
807
+ "in": "query",
808
+ "required": true,
809
+ "schema": {
810
+ "type": "string"
811
+ }
812
+ },
813
+ {
814
+ "name": "specParentId",
815
+ "in": "query",
816
+ "required": true,
817
+ "schema": {
818
+ "type": "string"
819
+ }
820
+ },
821
+ {
822
+ "name": "specBackRefId",
823
+ "in": "query",
824
+ "required": true,
825
+ "schema": {
826
+ "type": "string"
827
+ }
828
+ },
829
+ {
830
+ "name": "specObjUuids",
831
+ "in": "query",
832
+ "required": true,
833
+ "schema": {
834
+ "type": "string"
835
+ }
836
+ },
837
+ {
838
+ "name": "specFields",
839
+ "in": "query",
840
+ "required": true,
841
+ "schema": {
842
+ "type": "string"
843
+ }
844
+ },
845
+ {
846
+ "name": "specFilters",
847
+ "in": "query",
848
+ "required": true,
849
+ "schema": {
850
+ "type": "string"
851
+ }
852
+ },
853
+ {
854
+ "name": "specRefUuids",
855
+ "in": "query",
856
+ "required": true,
857
+ "schema": {
858
+ "type": "string"
859
+ }
860
+ },
861
+ {
862
+ "name": "specFrom",
863
+ "in": "query",
864
+ "required": true,
865
+ "schema": {
866
+ "type": "string"
867
+ }
868
+ },
869
+ {
870
+ "name": "specSortby",
871
+ "in": "query",
872
+ "required": true,
873
+ "schema": {
874
+ "type": "string"
875
+ }
876
+ },
877
+ {
878
+ "name": "specOperation",
879
+ "in": "query",
880
+ "required": true,
881
+ "schema": {
882
+ "type": "string"
883
+ }
884
+ },
885
+ {
886
+ "name": "specTagFilters",
887
+ "in": "query",
888
+ "required": true,
889
+ "schema": {
890
+ "type": "string"
891
+ }
892
+ },
893
+ {
894
+ "name": "specTagDetail",
895
+ "in": "query",
896
+ "required": true,
897
+ "schema": {
898
+ "type": "string"
899
+ }
900
+ },
901
+ {
902
+ "name": "specRefFields",
903
+ "in": "query",
904
+ "required": true,
905
+ "schema": {
906
+ "type": "string"
907
+ }
908
+ },
909
+ {
910
+ "name": "specExtRefUuids",
911
+ "in": "query",
912
+ "required": true,
913
+ "schema": {
914
+ "type": "string"
915
+ }
916
+ }
917
+ ],
918
+ "requestBody": {
919
+ "content": {
920
+ "application/json": {
921
+ "schema": {
922
+ "type": "object"
923
+ },
924
+ "example": {}
925
+ }
926
+ }
927
+ }
928
+ }
929
+ },
930
+ "/jobstore/task": {
931
+ "post": {
932
+ "tags": [
933
+ "JobstoreService"
934
+ ],
935
+ "operationId": "jobstoreServiceCreateTask",
936
+ "description": "The parameters and request body are for method: jobstoreServiceCreateTask. Same endpoint also used in methods:",
937
+ "responses": {
938
+ "200": {
939
+ "description": "Successful operation",
940
+ "content": {
941
+ "application/json": {
942
+ "schema": {
943
+ "title": "result",
944
+ "type": "object"
945
+ }
946
+ }
947
+ }
948
+ }
949
+ },
950
+ "requestBody": {
951
+ "description": "indeterminate body object",
952
+ "content": {
953
+ "application/json": {
954
+ "schema": {
955
+ "type": "object"
956
+ }
957
+ }
958
+ }
959
+ }
960
+ },
961
+ "get": {
962
+ "tags": [
963
+ "JobstoreService"
964
+ ],
965
+ "operationId": "jobstoreServiceListTask",
966
+ "description": "The parameters and request body are for method: jobstoreServiceListTask. Same endpoint also used in methods:",
967
+ "responses": {
968
+ "200": {
969
+ "description": "Successful operation",
970
+ "content": {
971
+ "application/json": {
972
+ "schema": {
973
+ "title": "result",
974
+ "type": "object"
975
+ }
976
+ }
977
+ }
978
+ }
979
+ },
980
+ "parameters": [
981
+ {
982
+ "name": "specSize",
983
+ "in": "query",
984
+ "required": true,
985
+ "schema": {
986
+ "type": "string"
987
+ }
988
+ },
989
+ {
990
+ "name": "specPageMarker",
991
+ "in": "query",
992
+ "required": true,
993
+ "schema": {
994
+ "type": "string"
995
+ }
996
+ },
997
+ {
998
+ "name": "specDetail",
999
+ "in": "query",
1000
+ "required": true,
1001
+ "schema": {
1002
+ "type": "string"
1003
+ }
1004
+ },
1005
+ {
1006
+ "name": "specCount",
1007
+ "in": "query",
1008
+ "required": true,
1009
+ "schema": {
1010
+ "type": "string"
1011
+ }
1012
+ },
1013
+ {
1014
+ "name": "specExcludeShared",
1015
+ "in": "query",
1016
+ "required": true,
1017
+ "schema": {
1018
+ "type": "string"
1019
+ }
1020
+ },
1021
+ {
1022
+ "name": "specExcludeHrefs",
1023
+ "in": "query",
1024
+ "required": true,
1025
+ "schema": {
1026
+ "type": "string"
1027
+ }
1028
+ },
1029
+ {
1030
+ "name": "specParentFqNameStr",
1031
+ "in": "query",
1032
+ "required": true,
1033
+ "schema": {
1034
+ "type": "string"
1035
+ }
1036
+ },
1037
+ {
1038
+ "name": "specParentType",
1039
+ "in": "query",
1040
+ "required": true,
1041
+ "schema": {
1042
+ "type": "string"
1043
+ }
1044
+ },
1045
+ {
1046
+ "name": "specParentId",
1047
+ "in": "query",
1048
+ "required": true,
1049
+ "schema": {
1050
+ "type": "string"
1051
+ }
1052
+ },
1053
+ {
1054
+ "name": "specBackRefId",
1055
+ "in": "query",
1056
+ "required": true,
1057
+ "schema": {
1058
+ "type": "string"
1059
+ }
1060
+ },
1061
+ {
1062
+ "name": "specObjUuids",
1063
+ "in": "query",
1064
+ "required": true,
1065
+ "schema": {
1066
+ "type": "string"
1067
+ }
1068
+ },
1069
+ {
1070
+ "name": "specFields",
1071
+ "in": "query",
1072
+ "required": true,
1073
+ "schema": {
1074
+ "type": "string"
1075
+ }
1076
+ },
1077
+ {
1078
+ "name": "specFilters",
1079
+ "in": "query",
1080
+ "required": true,
1081
+ "schema": {
1082
+ "type": "string"
1083
+ }
1084
+ },
1085
+ {
1086
+ "name": "specRefUuids",
1087
+ "in": "query",
1088
+ "required": true,
1089
+ "schema": {
1090
+ "type": "string"
1091
+ }
1092
+ },
1093
+ {
1094
+ "name": "specFrom",
1095
+ "in": "query",
1096
+ "required": true,
1097
+ "schema": {
1098
+ "type": "string"
1099
+ }
1100
+ },
1101
+ {
1102
+ "name": "specSortby",
1103
+ "in": "query",
1104
+ "required": true,
1105
+ "schema": {
1106
+ "type": "string"
1107
+ }
1108
+ },
1109
+ {
1110
+ "name": "specOperation",
1111
+ "in": "query",
1112
+ "required": true,
1113
+ "schema": {
1114
+ "type": "string"
1115
+ }
1116
+ },
1117
+ {
1118
+ "name": "specTagFilters",
1119
+ "in": "query",
1120
+ "required": true,
1121
+ "schema": {
1122
+ "type": "string"
1123
+ }
1124
+ },
1125
+ {
1126
+ "name": "specTagDetail",
1127
+ "in": "query",
1128
+ "required": true,
1129
+ "schema": {
1130
+ "type": "string"
1131
+ }
1132
+ },
1133
+ {
1134
+ "name": "specRefFields",
1135
+ "in": "query",
1136
+ "required": true,
1137
+ "schema": {
1138
+ "type": "string"
1139
+ }
1140
+ },
1141
+ {
1142
+ "name": "specExtRefUuids",
1143
+ "in": "query",
1144
+ "required": true,
1145
+ "schema": {
1146
+ "type": "string"
1147
+ }
1148
+ }
1149
+ ],
1150
+ "requestBody": {
1151
+ "content": {
1152
+ "application/json": {
1153
+ "schema": {
1154
+ "type": "object"
1155
+ },
1156
+ "example": {}
1157
+ }
1158
+ }
1159
+ }
1160
+ }
1161
+ },
1162
+ "/jobstore/ref-update": {
1163
+ "post": {
1164
+ "tags": [
1165
+ "JobstoreService"
1166
+ ],
1167
+ "operationId": "jobstoreServiceRefUpdate",
1168
+ "description": "The parameters and request body are for method: jobstoreServiceRefUpdate. Same endpoint also used in methods:",
1169
+ "responses": {
1170
+ "200": {
1171
+ "description": "Successful operation",
1172
+ "content": {
1173
+ "application/json": {
1174
+ "schema": {
1175
+ "title": "result",
1176
+ "type": "object"
1177
+ }
1178
+ }
1179
+ }
1180
+ }
1181
+ },
1182
+ "requestBody": {
1183
+ "description": "indeterminate body object",
1184
+ "content": {
1185
+ "application/json": {
1186
+ "schema": {
1187
+ "type": "object"
1188
+ }
1189
+ }
1190
+ }
1191
+ }
1192
+ }
1193
+ },
1194
+ "/jobstore/ext-ref-update": {
1195
+ "post": {
1196
+ "tags": [
1197
+ "JobstoreService"
1198
+ ],
1199
+ "operationId": "jobstoreServiceExtRefUpdate",
1200
+ "description": "The parameters and request body are for method: jobstoreServiceExtRefUpdate. Same endpoint also used in methods:",
1201
+ "responses": {
1202
+ "200": {
1203
+ "description": "Successful operation",
1204
+ "content": {
1205
+ "application/json": {
1206
+ "schema": {
1207
+ "title": "result",
1208
+ "type": "object"
1209
+ }
1210
+ }
1211
+ }
1212
+ }
1213
+ },
1214
+ "requestBody": {
1215
+ "description": "indeterminate body object",
1216
+ "content": {
1217
+ "application/json": {
1218
+ "schema": {
1219
+ "type": "object"
1220
+ }
1221
+ }
1222
+ }
1223
+ }
1224
+ }
1225
+ },
1226
+ "/jobstore/job": {
1227
+ "post": {
1228
+ "tags": [
1229
+ "JobstoreService"
1230
+ ],
1231
+ "operationId": "jobstoreServiceCreateJob",
1232
+ "description": "The parameters and request body are for method: jobstoreServiceCreateJob. Same endpoint also used in methods:",
1233
+ "responses": {
1234
+ "200": {
1235
+ "description": "Successful operation",
1236
+ "content": {
1237
+ "application/json": {
1238
+ "schema": {
1239
+ "title": "result",
1240
+ "type": "object"
1241
+ }
1242
+ }
1243
+ }
1244
+ }
1245
+ },
1246
+ "requestBody": {
1247
+ "description": "indeterminate body object",
1248
+ "content": {
1249
+ "application/json": {
1250
+ "schema": {
1251
+ "type": "object"
1252
+ }
1253
+ }
1254
+ }
1255
+ }
1256
+ },
1257
+ "get": {
1258
+ "tags": [
1259
+ "JobstoreService"
1260
+ ],
1261
+ "operationId": "jobstoreServiceListJob",
1262
+ "description": "The parameters and request body are for method: jobstoreServiceListJob. Same endpoint also used in methods:",
1263
+ "responses": {
1264
+ "200": {
1265
+ "description": "Successful operation",
1266
+ "content": {
1267
+ "application/json": {
1268
+ "schema": {
1269
+ "title": "result",
1270
+ "type": "object"
1271
+ }
1272
+ }
1273
+ }
1274
+ }
1275
+ },
1276
+ "parameters": [
1277
+ {
1278
+ "name": "specSize",
1279
+ "in": "query",
1280
+ "required": true,
1281
+ "schema": {
1282
+ "type": "string"
1283
+ }
1284
+ },
1285
+ {
1286
+ "name": "specPageMarker",
1287
+ "in": "query",
1288
+ "required": true,
1289
+ "schema": {
1290
+ "type": "string"
1291
+ }
1292
+ },
1293
+ {
1294
+ "name": "specDetail",
1295
+ "in": "query",
1296
+ "required": true,
1297
+ "schema": {
1298
+ "type": "string"
1299
+ }
1300
+ },
1301
+ {
1302
+ "name": "specCount",
1303
+ "in": "query",
1304
+ "required": true,
1305
+ "schema": {
1306
+ "type": "string"
1307
+ }
1308
+ },
1309
+ {
1310
+ "name": "specExcludeShared",
1311
+ "in": "query",
1312
+ "required": true,
1313
+ "schema": {
1314
+ "type": "string"
1315
+ }
1316
+ },
1317
+ {
1318
+ "name": "specExcludeHrefs",
1319
+ "in": "query",
1320
+ "required": true,
1321
+ "schema": {
1322
+ "type": "string"
1323
+ }
1324
+ },
1325
+ {
1326
+ "name": "specParentFqNameStr",
1327
+ "in": "query",
1328
+ "required": true,
1329
+ "schema": {
1330
+ "type": "string"
1331
+ }
1332
+ },
1333
+ {
1334
+ "name": "specParentType",
1335
+ "in": "query",
1336
+ "required": true,
1337
+ "schema": {
1338
+ "type": "string"
1339
+ }
1340
+ },
1341
+ {
1342
+ "name": "specParentId",
1343
+ "in": "query",
1344
+ "required": true,
1345
+ "schema": {
1346
+ "type": "string"
1347
+ }
1348
+ },
1349
+ {
1350
+ "name": "specBackRefId",
1351
+ "in": "query",
1352
+ "required": true,
1353
+ "schema": {
1354
+ "type": "string"
1355
+ }
1356
+ },
1357
+ {
1358
+ "name": "specObjUuids",
1359
+ "in": "query",
1360
+ "required": true,
1361
+ "schema": {
1362
+ "type": "string"
1363
+ }
1364
+ },
1365
+ {
1366
+ "name": "specFields",
1367
+ "in": "query",
1368
+ "required": true,
1369
+ "schema": {
1370
+ "type": "string"
1371
+ }
1372
+ },
1373
+ {
1374
+ "name": "specFilters",
1375
+ "in": "query",
1376
+ "required": true,
1377
+ "schema": {
1378
+ "type": "string"
1379
+ }
1380
+ },
1381
+ {
1382
+ "name": "specRefUuids",
1383
+ "in": "query",
1384
+ "required": true,
1385
+ "schema": {
1386
+ "type": "string"
1387
+ }
1388
+ },
1389
+ {
1390
+ "name": "specFrom",
1391
+ "in": "query",
1392
+ "required": true,
1393
+ "schema": {
1394
+ "type": "string"
1395
+ }
1396
+ },
1397
+ {
1398
+ "name": "specSortby",
1399
+ "in": "query",
1400
+ "required": true,
1401
+ "schema": {
1402
+ "type": "string"
1403
+ }
1404
+ },
1405
+ {
1406
+ "name": "specOperation",
1407
+ "in": "query",
1408
+ "required": true,
1409
+ "schema": {
1410
+ "type": "string"
1411
+ }
1412
+ },
1413
+ {
1414
+ "name": "specTagFilters",
1415
+ "in": "query",
1416
+ "required": true,
1417
+ "schema": {
1418
+ "type": "string"
1419
+ }
1420
+ },
1421
+ {
1422
+ "name": "specTagDetail",
1423
+ "in": "query",
1424
+ "required": true,
1425
+ "schema": {
1426
+ "type": "string"
1427
+ }
1428
+ },
1429
+ {
1430
+ "name": "specRefFields",
1431
+ "in": "query",
1432
+ "required": true,
1433
+ "schema": {
1434
+ "type": "string"
1435
+ }
1436
+ },
1437
+ {
1438
+ "name": "specExtRefUuids",
1439
+ "in": "query",
1440
+ "required": true,
1441
+ "schema": {
1442
+ "type": "string"
1443
+ }
1444
+ }
1445
+ ],
1446
+ "requestBody": {
1447
+ "content": {
1448
+ "application/json": {
1449
+ "schema": {
1450
+ "type": "object"
1451
+ },
1452
+ "example": {}
1453
+ }
1454
+ }
1455
+ }
1456
+ }
1457
+ },
1458
+ "/jobstore/job-purge-policy/{iD}": {
1459
+ "put": {
1460
+ "tags": [
1461
+ "JobstoreService"
1462
+ ],
1463
+ "operationId": "jobstoreServiceUpdateJobPurgePolicy",
1464
+ "description": "The parameters and request body are for method: jobstoreServiceUpdateJobPurgePolicy. Same endpoint also used in methods:",
1465
+ "responses": {
1466
+ "200": {
1467
+ "description": "Successful operation",
1468
+ "content": {
1469
+ "application/json": {
1470
+ "schema": {
1471
+ "title": "result",
1472
+ "type": "object"
1473
+ }
1474
+ }
1475
+ }
1476
+ }
1477
+ },
1478
+ "parameters": [
1479
+ {
1480
+ "name": "iD",
1481
+ "in": "path",
1482
+ "required": true,
1483
+ "schema": {
1484
+ "title": "iD",
1485
+ "type": "string"
1486
+ }
1487
+ }
1488
+ ],
1489
+ "requestBody": {
1490
+ "description": "indeterminate body object",
1491
+ "content": {
1492
+ "application/json": {
1493
+ "schema": {
1494
+ "type": "object"
1495
+ }
1496
+ }
1497
+ }
1498
+ }
1499
+ },
1500
+ "get": {
1501
+ "tags": [
1502
+ "JobstoreService"
1503
+ ],
1504
+ "operationId": "jobstoreServiceGetJobPurgePolicy",
1505
+ "description": "The parameters and request body are for method: jobstoreServiceGetJobPurgePolicy. Same endpoint also used in methods:",
1506
+ "responses": {
1507
+ "200": {
1508
+ "description": "Successful operation",
1509
+ "content": {
1510
+ "application/json": {
1511
+ "schema": {
1512
+ "title": "result",
1513
+ "type": "object"
1514
+ }
1515
+ }
1516
+ }
1517
+ }
1518
+ },
1519
+ "parameters": [
1520
+ {
1521
+ "name": "iD",
1522
+ "in": "path",
1523
+ "required": true,
1524
+ "schema": {
1525
+ "title": "iD",
1526
+ "type": "string"
1527
+ }
1528
+ },
1529
+ {
1530
+ "name": "detail",
1531
+ "in": "query",
1532
+ "required": true,
1533
+ "schema": {
1534
+ "type": "string"
1535
+ }
1536
+ },
1537
+ {
1538
+ "name": "fields",
1539
+ "in": "query",
1540
+ "required": true,
1541
+ "schema": {
1542
+ "type": "string"
1543
+ }
1544
+ },
1545
+ {
1546
+ "name": "refFields",
1547
+ "in": "query",
1548
+ "required": true,
1549
+ "schema": {
1550
+ "type": "string"
1551
+ }
1552
+ }
1553
+ ],
1554
+ "requestBody": {
1555
+ "content": {
1556
+ "application/json": {
1557
+ "schema": {
1558
+ "type": "object"
1559
+ },
1560
+ "example": {}
1561
+ }
1562
+ }
1563
+ }
1564
+ },
1565
+ "delete": {
1566
+ "tags": [
1567
+ "JobstoreService"
1568
+ ],
1569
+ "operationId": "jobstoreServiceDeleteJobPurgePolicy",
1570
+ "description": "The parameters and request body are for method: jobstoreServiceDeleteJobPurgePolicy. Same endpoint also used in methods:",
1571
+ "responses": {
1572
+ "200": {
1573
+ "description": "Successful operation",
1574
+ "content": {
1575
+ "application/json": {
1576
+ "schema": {
1577
+ "title": "result",
1578
+ "type": "object"
1579
+ }
1580
+ }
1581
+ }
1582
+ }
1583
+ },
1584
+ "parameters": [
1585
+ {
1586
+ "name": "iD",
1587
+ "in": "path",
1588
+ "required": true,
1589
+ "schema": {
1590
+ "title": "iD",
1591
+ "type": "string"
1592
+ }
1593
+ }
1594
+ ],
1595
+ "requestBody": {
1596
+ "content": {
1597
+ "application/json": {
1598
+ "schema": {
1599
+ "type": "object"
1600
+ },
1601
+ "example": {}
1602
+ }
1603
+ }
1604
+ }
1605
+ }
1606
+ },
1607
+ "/jobstore/deleted-resource": {
1608
+ "post": {
1609
+ "tags": [
1610
+ "JobstoreService"
1611
+ ],
1612
+ "operationId": "jobstoreServiceCreateDeletedResource",
1613
+ "description": "The parameters and request body are for method: jobstoreServiceCreateDeletedResource. Same endpoint also used in methods:",
1614
+ "responses": {
1615
+ "200": {
1616
+ "description": "Successful operation",
1617
+ "content": {
1618
+ "application/json": {
1619
+ "schema": {
1620
+ "title": "result",
1621
+ "type": "object"
1622
+ }
1623
+ }
1624
+ }
1625
+ }
1626
+ },
1627
+ "requestBody": {
1628
+ "description": "indeterminate body object",
1629
+ "content": {
1630
+ "application/json": {
1631
+ "schema": {
1632
+ "type": "object"
1633
+ }
1634
+ }
1635
+ }
1636
+ }
1637
+ },
1638
+ "get": {
1639
+ "tags": [
1640
+ "JobstoreService"
1641
+ ],
1642
+ "operationId": "jobstoreServiceListDeletedResource",
1643
+ "description": "The parameters and request body are for method: jobstoreServiceListDeletedResource. Same endpoint also used in methods:",
1644
+ "responses": {
1645
+ "200": {
1646
+ "description": "Successful operation",
1647
+ "content": {
1648
+ "application/json": {
1649
+ "schema": {
1650
+ "title": "result",
1651
+ "type": "object"
1652
+ }
1653
+ }
1654
+ }
1655
+ }
1656
+ },
1657
+ "parameters": [
1658
+ {
1659
+ "name": "specSize",
1660
+ "in": "query",
1661
+ "required": true,
1662
+ "schema": {
1663
+ "type": "string"
1664
+ }
1665
+ },
1666
+ {
1667
+ "name": "specPageMarker",
1668
+ "in": "query",
1669
+ "required": true,
1670
+ "schema": {
1671
+ "type": "string"
1672
+ }
1673
+ },
1674
+ {
1675
+ "name": "specDetail",
1676
+ "in": "query",
1677
+ "required": true,
1678
+ "schema": {
1679
+ "type": "string"
1680
+ }
1681
+ },
1682
+ {
1683
+ "name": "specCount",
1684
+ "in": "query",
1685
+ "required": true,
1686
+ "schema": {
1687
+ "type": "string"
1688
+ }
1689
+ },
1690
+ {
1691
+ "name": "specExcludeShared",
1692
+ "in": "query",
1693
+ "required": true,
1694
+ "schema": {
1695
+ "type": "string"
1696
+ }
1697
+ },
1698
+ {
1699
+ "name": "specExcludeHrefs",
1700
+ "in": "query",
1701
+ "required": true,
1702
+ "schema": {
1703
+ "type": "string"
1704
+ }
1705
+ },
1706
+ {
1707
+ "name": "specParentFqNameStr",
1708
+ "in": "query",
1709
+ "required": true,
1710
+ "schema": {
1711
+ "type": "string"
1712
+ }
1713
+ },
1714
+ {
1715
+ "name": "specParentType",
1716
+ "in": "query",
1717
+ "required": true,
1718
+ "schema": {
1719
+ "type": "string"
1720
+ }
1721
+ },
1722
+ {
1723
+ "name": "specParentId",
1724
+ "in": "query",
1725
+ "required": true,
1726
+ "schema": {
1727
+ "type": "string"
1728
+ }
1729
+ },
1730
+ {
1731
+ "name": "specBackRefId",
1732
+ "in": "query",
1733
+ "required": true,
1734
+ "schema": {
1735
+ "type": "string"
1736
+ }
1737
+ },
1738
+ {
1739
+ "name": "specObjUuids",
1740
+ "in": "query",
1741
+ "required": true,
1742
+ "schema": {
1743
+ "type": "string"
1744
+ }
1745
+ },
1746
+ {
1747
+ "name": "specFields",
1748
+ "in": "query",
1749
+ "required": true,
1750
+ "schema": {
1751
+ "type": "string"
1752
+ }
1753
+ },
1754
+ {
1755
+ "name": "specFilters",
1756
+ "in": "query",
1757
+ "required": true,
1758
+ "schema": {
1759
+ "type": "string"
1760
+ }
1761
+ },
1762
+ {
1763
+ "name": "specRefUuids",
1764
+ "in": "query",
1765
+ "required": true,
1766
+ "schema": {
1767
+ "type": "string"
1768
+ }
1769
+ },
1770
+ {
1771
+ "name": "specFrom",
1772
+ "in": "query",
1773
+ "required": true,
1774
+ "schema": {
1775
+ "type": "string"
1776
+ }
1777
+ },
1778
+ {
1779
+ "name": "specSortby",
1780
+ "in": "query",
1781
+ "required": true,
1782
+ "schema": {
1783
+ "type": "string"
1784
+ }
1785
+ },
1786
+ {
1787
+ "name": "specOperation",
1788
+ "in": "query",
1789
+ "required": true,
1790
+ "schema": {
1791
+ "type": "string"
1792
+ }
1793
+ },
1794
+ {
1795
+ "name": "specTagFilters",
1796
+ "in": "query",
1797
+ "required": true,
1798
+ "schema": {
1799
+ "type": "string"
1800
+ }
1801
+ },
1802
+ {
1803
+ "name": "specTagDetail",
1804
+ "in": "query",
1805
+ "required": true,
1806
+ "schema": {
1807
+ "type": "string"
1808
+ }
1809
+ },
1810
+ {
1811
+ "name": "specRefFields",
1812
+ "in": "query",
1813
+ "required": true,
1814
+ "schema": {
1815
+ "type": "string"
1816
+ }
1817
+ },
1818
+ {
1819
+ "name": "specExtRefUuids",
1820
+ "in": "query",
1821
+ "required": true,
1822
+ "schema": {
1823
+ "type": "string"
1824
+ }
1825
+ }
1826
+ ],
1827
+ "requestBody": {
1828
+ "content": {
1829
+ "application/json": {
1830
+ "schema": {
1831
+ "type": "object"
1832
+ },
1833
+ "example": {}
1834
+ }
1835
+ }
1836
+ }
1837
+ }
1838
+ },
1839
+ "/jobstore/bulk-list-deleted-resource": {
1840
+ "post": {
1841
+ "tags": [
1842
+ "JobstoreService"
1843
+ ],
1844
+ "operationId": "jobstoreServiceBulkListDeletedResource",
1845
+ "description": "The parameters and request body are for method: jobstoreServiceBulkListDeletedResource. Same endpoint also used in methods:",
1846
+ "responses": {
1847
+ "200": {
1848
+ "description": "Successful operation",
1849
+ "content": {
1850
+ "application/json": {
1851
+ "schema": {
1852
+ "title": "result",
1853
+ "type": "object"
1854
+ }
1855
+ }
1856
+ }
1857
+ }
1858
+ },
1859
+ "requestBody": {
1860
+ "description": "indeterminate body object",
1861
+ "content": {
1862
+ "application/json": {
1863
+ "schema": {
1864
+ "type": "object"
1865
+ }
1866
+ }
1867
+ }
1868
+ }
1869
+ }
1870
+ },
1871
+ "/jobstore/deleted-resource/{iD}": {
1872
+ "put": {
1873
+ "tags": [
1874
+ "JobstoreService"
1875
+ ],
1876
+ "operationId": "jobstoreServiceUpdateDeletedResource",
1877
+ "description": "The parameters and request body are for method: jobstoreServiceUpdateDeletedResource. Same endpoint also used in methods:",
1878
+ "responses": {
1879
+ "200": {
1880
+ "description": "Successful operation",
1881
+ "content": {
1882
+ "application/json": {
1883
+ "schema": {
1884
+ "title": "result",
1885
+ "type": "object"
1886
+ }
1887
+ }
1888
+ }
1889
+ }
1890
+ },
1891
+ "parameters": [
1892
+ {
1893
+ "name": "iD",
1894
+ "in": "path",
1895
+ "required": true,
1896
+ "schema": {
1897
+ "title": "iD",
1898
+ "type": "string"
1899
+ }
1900
+ }
1901
+ ],
1902
+ "requestBody": {
1903
+ "description": "indeterminate body object",
1904
+ "content": {
1905
+ "application/json": {
1906
+ "schema": {
1907
+ "type": "object"
1908
+ }
1909
+ }
1910
+ }
1911
+ }
1912
+ },
1913
+ "get": {
1914
+ "tags": [
1915
+ "JobstoreService"
1916
+ ],
1917
+ "operationId": "jobstoreServiceGetDeletedResource",
1918
+ "description": "The parameters and request body are for method: jobstoreServiceGetDeletedResource. Same endpoint also used in methods:",
1919
+ "responses": {
1920
+ "200": {
1921
+ "description": "Successful operation",
1922
+ "content": {
1923
+ "application/json": {
1924
+ "schema": {
1925
+ "title": "result",
1926
+ "type": "object"
1927
+ }
1928
+ }
1929
+ }
1930
+ }
1931
+ },
1932
+ "parameters": [
1933
+ {
1934
+ "name": "iD",
1935
+ "in": "path",
1936
+ "required": true,
1937
+ "schema": {
1938
+ "title": "iD",
1939
+ "type": "string"
1940
+ }
1941
+ },
1942
+ {
1943
+ "name": "detail",
1944
+ "in": "query",
1945
+ "required": true,
1946
+ "schema": {
1947
+ "type": "string"
1948
+ }
1949
+ },
1950
+ {
1951
+ "name": "fields",
1952
+ "in": "query",
1953
+ "required": true,
1954
+ "schema": {
1955
+ "type": "string"
1956
+ }
1957
+ },
1958
+ {
1959
+ "name": "refFields",
1960
+ "in": "query",
1961
+ "required": true,
1962
+ "schema": {
1963
+ "type": "string"
1964
+ }
1965
+ }
1966
+ ],
1967
+ "requestBody": {
1968
+ "content": {
1969
+ "application/json": {
1970
+ "schema": {
1971
+ "type": "object"
1972
+ },
1973
+ "example": {}
1974
+ }
1975
+ }
1976
+ }
1977
+ },
1978
+ "delete": {
1979
+ "tags": [
1980
+ "JobstoreService"
1981
+ ],
1982
+ "operationId": "jobstoreServiceDeleteDeletedResource",
1983
+ "description": "The parameters and request body are for method: jobstoreServiceDeleteDeletedResource. Same endpoint also used in methods:",
1984
+ "responses": {
1985
+ "200": {
1986
+ "description": "Successful operation",
1987
+ "content": {
1988
+ "application/json": {
1989
+ "schema": {
1990
+ "title": "result",
1991
+ "type": "object"
1992
+ }
1993
+ }
1994
+ }
1995
+ }
1996
+ },
1997
+ "parameters": [
1998
+ {
1999
+ "name": "iD",
2000
+ "in": "path",
2001
+ "required": true,
2002
+ "schema": {
2003
+ "title": "iD",
2004
+ "type": "string"
2005
+ }
2006
+ }
2007
+ ],
2008
+ "requestBody": {
2009
+ "content": {
2010
+ "application/json": {
2011
+ "schema": {
2012
+ "type": "object"
2013
+ },
2014
+ "example": {}
2015
+ }
2016
+ }
2017
+ }
2018
+ }
2019
+ },
2020
+ "/jobstore/bulk-list-last-published-notification": {
2021
+ "post": {
2022
+ "tags": [
2023
+ "JobstoreService"
2024
+ ],
2025
+ "operationId": "jobstoreServiceBulkListLastPublishedNotification",
2026
+ "description": "The parameters and request body are for method: jobstoreServiceBulkListLastPublishedNotification. Same endpoint also used in methods:",
2027
+ "responses": {
2028
+ "200": {
2029
+ "description": "Successful operation",
2030
+ "content": {
2031
+ "application/json": {
2032
+ "schema": {
2033
+ "title": "result",
2034
+ "type": "object"
2035
+ }
2036
+ }
2037
+ }
2038
+ }
2039
+ },
2040
+ "requestBody": {
2041
+ "description": "indeterminate body object",
2042
+ "content": {
2043
+ "application/json": {
2044
+ "schema": {
2045
+ "type": "object"
2046
+ }
2047
+ }
2048
+ }
2049
+ }
2050
+ }
2051
+ },
2052
+ "/jobstore/task/{iD}": {
2053
+ "put": {
2054
+ "tags": [
2055
+ "JobstoreService"
2056
+ ],
2057
+ "operationId": "jobstoreServiceUpdateTask",
2058
+ "description": "The parameters and request body are for method: jobstoreServiceUpdateTask. Same endpoint also used in methods:",
2059
+ "responses": {
2060
+ "200": {
2061
+ "description": "Successful operation",
2062
+ "content": {
2063
+ "application/json": {
2064
+ "schema": {
2065
+ "title": "result",
2066
+ "type": "object"
2067
+ }
2068
+ }
2069
+ }
2070
+ }
2071
+ },
2072
+ "parameters": [
2073
+ {
2074
+ "name": "iD",
2075
+ "in": "path",
2076
+ "required": true,
2077
+ "schema": {
2078
+ "title": "iD",
2079
+ "type": "string"
2080
+ }
2081
+ }
2082
+ ],
2083
+ "requestBody": {
2084
+ "description": "indeterminate body object",
2085
+ "content": {
2086
+ "application/json": {
2087
+ "schema": {
2088
+ "type": "object"
2089
+ }
2090
+ }
2091
+ }
2092
+ }
2093
+ },
2094
+ "get": {
2095
+ "tags": [
2096
+ "JobstoreService"
2097
+ ],
2098
+ "operationId": "jobstoreServiceGetTask",
2099
+ "description": "The parameters and request body are for method: jobstoreServiceGetTask. Same endpoint also used in methods:",
2100
+ "responses": {
2101
+ "200": {
2102
+ "description": "Successful operation",
2103
+ "content": {
2104
+ "application/json": {
2105
+ "schema": {
2106
+ "title": "result",
2107
+ "type": "object"
2108
+ }
2109
+ }
2110
+ }
2111
+ }
2112
+ },
2113
+ "parameters": [
2114
+ {
2115
+ "name": "iD",
2116
+ "in": "path",
2117
+ "required": true,
2118
+ "schema": {
2119
+ "title": "iD",
2120
+ "type": "string"
2121
+ }
2122
+ },
2123
+ {
2124
+ "name": "detail",
2125
+ "in": "query",
2126
+ "required": true,
2127
+ "schema": {
2128
+ "type": "string"
2129
+ }
2130
+ },
2131
+ {
2132
+ "name": "fields",
2133
+ "in": "query",
2134
+ "required": true,
2135
+ "schema": {
2136
+ "type": "string"
2137
+ }
2138
+ },
2139
+ {
2140
+ "name": "refFields",
2141
+ "in": "query",
2142
+ "required": true,
2143
+ "schema": {
2144
+ "type": "string"
2145
+ }
2146
+ }
2147
+ ],
2148
+ "requestBody": {
2149
+ "content": {
2150
+ "application/json": {
2151
+ "schema": {
2152
+ "type": "object"
2153
+ },
2154
+ "example": {}
2155
+ }
2156
+ }
2157
+ }
2158
+ },
2159
+ "delete": {
2160
+ "tags": [
2161
+ "JobstoreService"
2162
+ ],
2163
+ "operationId": "jobstoreServiceDeleteTask",
2164
+ "description": "The parameters and request body are for method: jobstoreServiceDeleteTask. Same endpoint also used in methods:",
2165
+ "responses": {
2166
+ "200": {
2167
+ "description": "Successful operation",
2168
+ "content": {
2169
+ "application/json": {
2170
+ "schema": {
2171
+ "title": "result",
2172
+ "type": "object"
2173
+ }
2174
+ }
2175
+ }
2176
+ }
2177
+ },
2178
+ "parameters": [
2179
+ {
2180
+ "name": "iD",
2181
+ "in": "path",
2182
+ "required": true,
2183
+ "schema": {
2184
+ "title": "iD",
2185
+ "type": "string"
2186
+ }
2187
+ }
2188
+ ],
2189
+ "requestBody": {
2190
+ "content": {
2191
+ "application/json": {
2192
+ "schema": {
2193
+ "type": "object"
2194
+ },
2195
+ "example": {}
2196
+ }
2197
+ }
2198
+ }
2199
+ }
2200
+ },
2201
+ "/jobstore/sync": {
2202
+ "post": {
2203
+ "tags": [
2204
+ "JobstoreService"
2205
+ ],
2206
+ "operationId": "jobstoreServiceSync",
2207
+ "description": "The parameters and request body are for method: jobstoreServiceSync. Same endpoint also used in methods:",
2208
+ "responses": {
2209
+ "200": {
2210
+ "description": "Successful operation",
2211
+ "content": {
2212
+ "application/json": {
2213
+ "schema": {
2214
+ "title": "result",
2215
+ "type": "object"
2216
+ }
2217
+ }
2218
+ }
2219
+ }
2220
+ },
2221
+ "requestBody": {
2222
+ "description": "indeterminate body object",
2223
+ "content": {
2224
+ "application/json": {
2225
+ "schema": {
2226
+ "type": "object"
2227
+ }
2228
+ }
2229
+ }
2230
+ }
2231
+ }
2232
+ },
2233
+ "/jobstore/purge": {
2234
+ "post": {
2235
+ "tags": [
2236
+ "JobstoreManager"
2237
+ ],
2238
+ "operationId": "jobstoreManagerPurge",
2239
+ "description": "The parameters and request body are for method: jobstoreManagerPurge. Same endpoint also used in methods:",
2240
+ "responses": {
2241
+ "200": {
2242
+ "description": "Successful operation",
2243
+ "content": {
2244
+ "application/json": {
2245
+ "schema": {
2246
+ "title": "result",
2247
+ "type": "object"
2248
+ }
2249
+ }
2250
+ }
2251
+ }
2252
+ },
2253
+ "requestBody": {
2254
+ "description": "indeterminate body object",
2255
+ "content": {
2256
+ "application/json": {
2257
+ "schema": {
2258
+ "type": "object"
2259
+ }
2260
+ }
2261
+ }
2262
+ }
2263
+ }
2264
+ }
2265
+ },
2266
+ "components": {
2267
+ "schemas": {}
2268
+ }
2269
+ }