-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathopenapi.yaml
8414 lines (8414 loc) · 244 KB
/
openapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Code generated from hashicorp/nomad-openapi/generator; DO NOT EDIT.
components:
parameters:
ACLPolicyNameParam:
description: The ACL policy name.
in: path
name: policyName
required: true
schema:
type: string
ACLTokenAccessorParam:
description: The token accessor ID.
in: path
name: tokenAccessor
required: true
schema:
type: string
AllParam:
description: Flag indicating whether to constrain by job creation index or not.
in: query
name: all
schema:
type: integer
AllocIDParam:
description: Allocation ID.
in: path
name: allocID
required: true
schema:
type: string
AllocNoShutdownDelayParam:
description: Flag indicating whether to delay shutdown when requesting an allocation
stop.
in: query
name: no_shutdown_delay
schema:
type: boolean
AllocationResourcesParam:
description: Flag indicating whether to include resources in response.
in: query
name: resources
schema:
type: boolean
AllocationsTasksStatesParam:
description: Flag indicating whether to include task states in response.
in: query
name: task_states
schema:
type: boolean
DeploymentIDParam:
description: Deployment ID.
in: path
name: deploymentID
required: true
schema:
type: string
EvalIDParam:
description: Evaluation ID.
in: path
name: evalID
required: true
schema:
type: string
FollowParam:
description: Specifies whether to tail the logs.
in: query
name: follow
schema:
type: boolean
IdempotencyTokenParam:
description: Can be used to ensure operations are only run once.
in: query
name: idempotency_token
schema:
type: string
IndexHeader:
description: If set, wait until query exceeds given index. Must be provided
with WaitParam.
in: header
name: index
schema:
type: integer
JobAllocationsParam:
description: Specifies whether the list of allocations should include allocations
from a previously registered job with the same ID. This is possible if the
job is deregistered and reregistered.
in: query
name: all
schema:
type: boolean
JobDiffsParam:
description: Boolean flag indicating whether to compute job diffs.
in: query
name: diffs
schema:
type: boolean
JobGlobalParam:
description: Boolean flag indicating whether the operation should apply to all
instances of the job globally.
in: query
name: global
schema:
type: boolean
JobNameParam:
description: The job identifier.
in: path
name: jobName
required: true
schema:
type: string
JobPurgeParam:
description: Boolean flag indicating whether to purge allocations of the job
after deleting.
in: query
name: purge
schema:
type: boolean
LogTypeParam:
description: Specifies the stream to stream.
in: query
name: type
required: true
schema:
type: string
MetricsFormatParam:
description: The format the user requested for the metrics summary (e.g. prometheus)
in: query
name: format
schema:
type: string
NamespaceNameParam:
description: The namespace identifier.
in: path
name: namespaceName
required: true
schema:
type: string
NamespaceParam:
description: Filters results based on the specified namespace.
in: query
name: namespace
schema:
type: string
NextTokenParam:
description: Indicates where to start paging for queries that support pagination.
in: query
name: next_token
schema:
type: string
NodeIdParam:
description: The ID of the node.
in: path
name: nodeId
required: true
schema:
type: string
NodeResourcesParam:
description: Whether or not to include the NodeResources and ReservedResources
fields in the response.
in: query
name: resources
schema:
type: boolean
NomadTokenHeader:
description: A Nomad ACL token.
in: header
name: X-Nomad-Token
schema:
type: string
OffsetParam:
description: Specifies the offset to start streaming from.
in: query
name: offset
schema:
type: integer
OriginParam:
description: Specifies either "start" or "end" and applies the offset relative to either the start or end of the logs respectively. Defaults to "start"
in: query
name: origin
schema:
type: string
PerPageParam:
description: Maximum number of results to return.
in: query
name: per_page
schema:
type: integer
PlainParam:
description: Return just the plain text without framing. This can be useful when viewing logs in a browser
in: query
name: plain
schema:
type: boolean
PluginIDParam:
description: The CSI plugin identifier.
in: path
name: pluginID
required: true
schema:
type: string
PrefixParam:
description: Constrains results to jobs that start with the defined prefix
in: query
name: prefix
schema:
type: string
QuotaSpecNameParam:
description: The quota spec identifier.
in: path
name: specName
required: true
schema:
type: string
RegionParam:
description: Filters results based on the specified region.
in: query
name: region
schema:
type: string
ScalingPolicyIDParam:
description: The scaling policy identifier.
in: path
name: policyID
required: true
schema:
type: string
SnapshotIDParam:
description: The ID of the snapshot to target.
in: query
name: snapshot_id
schema:
type: string
StaleParam:
description: If present, results will include stale reads.
in: query
name: stale
schema:
type: string
TaskParam:
description: Specifies the allocation ID to query. This is specified as part of the URL. Note, this must be the full allocation ID, not the short 8-character one. This is specified as part of the path.
in: query
name: task
required: true
schema:
type: string
VolumeActionParam:
description: The action to perform on the Volume (create, detach, delete).
in: path
name: action
required: true
schema:
type: string
VolumeForceParam:
description: Used to force the de-registration of a volume.
in: query
name: force
schema:
type: string
VolumeIDParam:
description: Volume unique identifier.
in: path
name: volumeId
required: true
schema:
type: string
VolumeNodeIDParam:
description: Filters volume lists by node ID.
in: query
name: node_id
schema:
type: string
VolumeNodeParam:
description: Specifies node to target volume operation for.
in: query
name: node
schema:
type: string
VolumePluginIDParam:
description: Filters volume lists by plugin ID.
in: query
name: plugin_id
schema:
type: string
VolumeTypeParam:
description: Filters volume lists to a specific type.
in: query
name: type
schema:
type: string
WaitParam:
description: Provided with IndexParam to wait for change.
in: query
name: wait
schema:
type: string
requestBodies:
ACLPolicy:
content:
application/json:
schema:
$ref: '#/components/schemas/ACLPolicy'
required: true
ACLToken:
content:
application/json:
schema:
$ref: '#/components/schemas/ACLToken'
required: true
AutopilotConfiguration:
content:
application/json:
schema:
$ref: '#/components/schemas/AutopilotConfiguration'
required: true
CSISnapshotCreateRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/CSISnapshotCreateRequest'
required: true
CSIVolumeCreateRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/CSIVolumeCreateRequest'
required: true
CSIVolumeRegisterRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/CSIVolumeRegisterRequest'
required: true
DeploymentAllocHealthRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/DeploymentAllocHealthRequest'
required: true
DeploymentPauseRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/DeploymentPauseRequest'
required: true
DeploymentPromoteRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/DeploymentPromoteRequest'
required: true
DeploymentUnblockRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/DeploymentUnblockRequest'
required: true
FuzzySearchRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/FuzzySearchRequest'
required: true
JobDispatchRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/JobDispatchRequest'
required: true
JobEvaluateRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/JobEvaluateRequest'
required: true
JobPlanRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/JobPlanRequest'
required: true
JobRegisterRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/JobRegisterRequest'
required: true
JobRevertRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/JobRevertRequest'
required: true
JobStabilityRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/JobStabilityRequest'
required: true
JobValidateRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/JobValidateRequest'
required: true
JobsParseRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/JobsParseRequest'
required: true
Namespace:
content:
application/json:
schema:
$ref: '#/components/schemas/Namespace'
required: true
NodeUpdateDrainRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/NodeUpdateDrainRequest'
required: true
NodeUpdateEligibilityRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/NodeUpdateEligibilityRequest'
required: true
OneTimeTokenExchangeRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/OneTimeTokenExchangeRequest'
required: true
QuotaSpec:
content:
application/json:
schema:
$ref: '#/components/schemas/QuotaSpec'
required: true
ScalingRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/ScalingRequest'
required: true
SchedulerConfiguration:
content:
application/json:
schema:
$ref: '#/components/schemas/SchedulerConfiguration'
required: true
SearchRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/SearchRequest'
required: true
responses:
BadRequestResponse:
description: Bad request
CreateNamespaceResponse:
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
CreateQuotaSpecResponse:
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
DeleteACLPolicyResponse:
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
DeleteACLTokenResponse:
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
DeleteJobResponse:
content:
application/json:
schema:
$ref: '#/components/schemas/JobDeregisterResponse'
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
DeleteNamespaceResponse:
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
DeleteOperatorRaftPeerResponse:
description: ""
DeleteSnapshotResponse:
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
DeleteVolumeRegistrationResponse:
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
DetachOrDeleteVolumeResponse:
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
ForbiddenResponse:
description: Forbidden
GetACLPoliciesResponse:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/ACLPolicyListStub'
type: array
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetACLPolicyResponse:
content:
application/json:
schema:
$ref: '#/components/schemas/ACLPolicy'
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetACLTokenResponse:
content:
application/json:
schema:
$ref: '#/components/schemas/ACLToken'
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetACLTokenSelfResponse:
content:
application/json:
schema:
$ref: '#/components/schemas/ACLToken'
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetACLTokensResponse:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/ACLTokenListStub'
type: array
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetAllocationLogsResponse:
content:
application/json:
schema:
$ref: '#/components/schemas/AllocationLogs'
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetAllocationResponse:
content:
application/json:
schema:
$ref: '#/components/schemas/Allocation'
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetAllocationServicesResponse:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/ServiceRegistration'
type: array
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetAllocationsResponse:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/AllocationListStub'
type: array
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetDeploymentAllocationsResponse:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/AllocationListStub'
type: array
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetDeploymentResponse:
content:
application/json:
schema:
$ref: '#/components/schemas/Deployment'
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetDeploymentsResponse:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/Deployment'
type: array
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetEvaluationAllocationsResponse:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/AllocationListStub'
type: array
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetEvaluationResponse:
content:
application/json:
schema:
$ref: '#/components/schemas/Evaluation'
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetEvaluationsResponse:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/Evaluation'
type: array
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetExternalVolumesResponse:
content:
application/json:
schema:
$ref: '#/components/schemas/CSIVolumeListExternalResponse'
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetFuzzySearchResponse:
content:
application/json:
schema:
$ref: '#/components/schemas/FuzzySearchResponse'
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetJobAllocationsResponse:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/AllocationListStub'
type: array
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetJobDeploymentResponse:
content:
application/json:
schema:
$ref: '#/components/schemas/Deployment'
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetJobDeploymentsResponse:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/Deployment'
type: array
description: ""
headers:
X-Nomad-Index:
description: A unique identifier representing the current state of the requested
resource. On a new Nomad cluster the value of this index starts at 1.
schema:
type: integer
X-Nomad-KnownLeader:
description: Boolean indicating if there is a known cluster leader.
schema:
type: boolean
X-Nomad-LastContact:
description: The time in milliseconds that a server was last contacted by
the leader node.
schema:
type: integer
GetJobEvaluationsResponse:
content:
application/json:
schema:
items:
$ref: '#/components/schemas/Evaluation'
type: array
description: ""
headers:
X-Nomad-Index: