You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi/swagger.json
+12-21Lines changed: 12 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -200,7 +200,7 @@
200
200
},
201
201
"jobID": {
202
202
"type": "string",
203
-
"description": "The ID of the job handling the table creation"
203
+
"description": "The ID of the asynchronous job"
204
204
}
205
205
},
206
206
"required": [
@@ -333,7 +333,8 @@
333
333
"enum": [
334
334
"true",
335
335
"false"
336
-
]
336
+
],
337
+
"description": "Allow asynchronous processing, which will return a job ID. Note that this does not force asynchronouys processing. The caller must handle both synchronous and asynchronous responses."
337
338
},
338
339
"required": false
339
340
},
@@ -772,18 +773,6 @@
772
773
}
773
774
},
774
775
"parameters": [
775
-
{
776
-
"name": "x-glide-asynchronous",
777
-
"in": "header",
778
-
"schema": {
779
-
"type": "string",
780
-
"enum": [
781
-
"true",
782
-
"false"
783
-
]
784
-
},
785
-
"required": false
786
-
},
787
776
{
788
777
"name": "appsToLink",
789
778
"in": "query",
@@ -912,12 +901,13 @@
912
901
"data": {
913
902
"type": "object",
914
903
"properties": {
915
-
"workflowID": {
916
-
"type": "string"
904
+
"jobID": {
905
+
"type": "string",
906
+
"description": "The ID of the asynchronous job"
917
907
}
918
908
},
919
909
"required": [
920
-
"workflowID"
910
+
"jobID"
921
911
],
922
912
"additionalProperties": false
923
913
}
@@ -1116,7 +1106,8 @@
1116
1106
"enum": [
1117
1107
"true",
1118
1108
"false"
1119
-
]
1109
+
],
1110
+
"description": "Allow asynchronous processing, which will return a job ID. Note that this does not force asynchronouys processing. The caller must handle both synchronous and asynchronous responses."
1120
1111
},
1121
1112
"required": false
1122
1113
},
@@ -2519,13 +2510,13 @@
2519
2510
"type": "string",
2520
2511
"enum": [
2521
2512
"running",
2522
-
"completed",
2513
+
"succeeded",
2523
2514
"failed"
2524
2515
],
2525
2516
"description": "The current status of the job"
2526
2517
},
2527
2518
"result": {
2528
-
"description": "The result of the job, if it is completed"
2519
+
"description": "The result of the job, if it `succeeded`"
2529
2520
},
2530
2521
"error": {
2531
2522
"type": "object",
@@ -2539,7 +2530,7 @@
2539
2530
"message"
2540
2531
],
2541
2532
"additionalProperties": false,
2542
-
"description": "The error information, if the job failed"
2533
+
"description": "The error information, if the job `failed`"
0 commit comments