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/openapiv2.json
+25-5Lines changed: 25 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -5660,14 +5660,18 @@
5660
5660
"type": "object",
5661
5661
"properties": {
5662
5662
"operationId": {
5663
-
"type": "string"
5663
+
"type": "string",
5664
+
"description": "Deprecated: Renamed to operation_token."
5664
5665
},
5665
5666
"links": {
5666
5667
"type": "array",
5667
5668
"items": {
5668
5669
"type": "object",
5669
5670
"$ref": "#/definitions/apinexusv1Link"
5670
5671
}
5672
+
},
5673
+
"operationToken": {
5674
+
"type": "string"
5671
5675
}
5672
5676
},
5673
5677
"description": "The operation will complete asynchronously.\nThe returned ID can be used to reference this operation."
@@ -7668,7 +7672,11 @@
7668
7672
},
7669
7673
"operationId": {
7670
7674
"type": "string",
7671
-
"description": "Operation ID as originally generated by a Handler."
7675
+
"description": "Operation ID as originally generated by a Handler.\n\nDeprecated: Renamed to operation_token."
7676
+
},
7677
+
"operationToken": {
7678
+
"type": "string",
7679
+
"description": "Operation token as originally generated by a Handler."
7672
7680
}
7673
7681
},
7674
7682
"description": "A request to cancel an operation."
@@ -9902,7 +9910,11 @@
9902
9910
},
9903
9911
"operationId": {
9904
9912
"type": "string",
9905
-
"description": "Operation ID - may be empty if the operation completed synchronously."
9913
+
"description": "Operation ID - may be empty if the operation completed synchronously.\n\nDeprecated: Renamed to operation_token."
9914
+
},
9915
+
"operationToken": {
9916
+
"type": "string",
9917
+
"description": "Operation token - may be empty if the operation completed synchronously."
9906
9918
}
9907
9919
}
9908
9920
},
@@ -9962,11 +9974,15 @@
9962
9974
},
9963
9975
"operationId": {
9964
9976
"type": "string",
9965
-
"description": "The operation ID returned by the Nexus handler in the response to the StartOperation request.\nThis ID is used when canceling the operation."
9977
+
"description": "The operation ID returned by the Nexus handler in the response to the StartOperation request.\nThis ID is used when canceling the operation.\n\nDeprecated: Renamed to operation_token."
9966
9978
},
9967
9979
"requestId": {
9968
9980
"type": "string",
9969
9981
"description": "The request ID allocated at schedule time."
9982
+
},
9983
+
"operationToken": {
9984
+
"type": "string",
9985
+
"description": "The operation token returned by the Nexus handler in the response to the StartOperation request.\nThis token is used when canceling the operation."
9970
9986
}
9971
9987
},
9972
9988
"description": "Event marking an asynchronous operation was started by the responding Nexus handler.\nIf the operation completes synchronously, this event is not generated.\nIn rare situations, such as request timeouts, the service may fail to record the actual start time and will fabricate\nthis event upon receiving the operation completion via callback."
@@ -10185,7 +10201,7 @@
10185
10201
},
10186
10202
"operationId": {
10187
10203
"type": "string",
10188
-
"description": "Operation ID. Only set for asynchronous operations after a successful StartOperation call."
10204
+
"description": "Operation ID. Only set for asynchronous operations after a successful StartOperation call.\n\nDeprecated: Renamed to operation_token."
10189
10205
},
10190
10206
"scheduleToCloseTimeout": {
10191
10207
"type": "string",
@@ -10229,6 +10245,10 @@
10229
10245
"blockedReason": {
10230
10246
"type": "string",
10231
10247
"description": "If the state is BLOCKED, blocked reason provides additional information."
10248
+
},
10249
+
"operationToken": {
10250
+
"type": "string",
10251
+
"description": "Operation token. Only set for asynchronous operations after a successful StartOperation call."
10232
10252
}
10233
10253
},
10234
10254
"description": "PendingNexusOperationInfo contains the state of a pending Nexus operation."
0 commit comments