Rebuild GraphQL api and Swagger UI code.

This commit is contained in:
2023-02-21 18:13:16 +01:00
parent 6c0d192662
commit 60437ce264
6 changed files with 108 additions and 81 deletions

View File

@@ -708,8 +708,7 @@
"example": 123000
},
"jobState": {
"description": "Final state of job",
"type": "string",
"description": "Final job state",
"enum": [
"completed",
"failed",
@@ -717,6 +716,11 @@
"stopped",
"timeout"
],
"allOf": [
{
"$ref": "#/definitions/schema.JobState"
}
],
"example": "completed"
},
"startTime": {
@@ -769,7 +773,6 @@
},
"jobState": {
"description": "Final state of job",
"type": "string",
"enum": [
"completed",
"failed",
@@ -778,6 +781,11 @@
"timeout",
"out_of_memory"
],
"allOf": [
{
"$ref": "#/definitions/schema.JobState"
}
],
"example": "completed"
},
"metaData": {
@@ -901,7 +909,6 @@
},
"jobState": {
"description": "Final state of job",
"type": "string",
"enum": [
"completed",
"failed",
@@ -910,6 +917,11 @@
"timeout",
"out_of_memory"
],
"allOf": [
{
"$ref": "#/definitions/schema.JobState"
}
],
"example": "completed"
},
"metaData": {
@@ -1004,6 +1016,29 @@
}
}
},
"schema.JobState": {
"type": "string",
"enum": [
"running",
"completed",
"failed",
"cancelled",
"stopped",
"timeout",
"preempted",
"out_of_memory"
],
"x-enum-varnames": [
"JobStateRunning",
"JobStateCompleted",
"JobStateFailed",
"JobStateCancelled",
"JobStateStopped",
"JobStateTimeout",
"JobStatePreempted",
"JobStateOutOfMemory"
]
},
"schema.JobStatistics": {
"description": "Specification for job metric statistics.",
"type": "object",

View File

@@ -59,7 +59,9 @@ definitions:
example: 123000
type: integer
jobState:
description: Final state of job
allOf:
- $ref: '#/definitions/schema.JobState'
description: Final job state
enum:
- completed
- failed
@@ -67,7 +69,6 @@ definitions:
- stopped
- timeout
example: completed
type: string
startTime:
description: Start Time of job as epoch
example: 1649723812
@@ -112,6 +113,8 @@ definitions:
example: 123000
type: integer
jobState:
allOf:
- $ref: '#/definitions/schema.JobState'
description: Final state of job
enum:
- completed
@@ -121,7 +124,6 @@ definitions:
- timeout
- out_of_memory
example: completed
type: string
metaData:
additionalProperties:
type: string
@@ -220,6 +222,8 @@ definitions:
example: 123000
type: integer
jobState:
allOf:
- $ref: '#/definitions/schema.JobState'
description: Final state of job
enum:
- completed
@@ -229,7 +233,6 @@ definitions:
- timeout
- out_of_memory
example: completed
type: string
metaData:
additionalProperties:
type: string
@@ -303,6 +306,26 @@ definitions:
minimum: 1
type: integer
type: object
schema.JobState:
enum:
- running
- completed
- failed
- cancelled
- stopped
- timeout
- preempted
- out_of_memory
type: string
x-enum-varnames:
- JobStateRunning
- JobStateCompleted
- JobStateFailed
- JobStateCancelled
- JobStateStopped
- JobStateTimeout
- JobStatePreempted
- JobStateOutOfMemory
schema.JobStatistics:
description: Specification for job metric statistics.
properties: