File tree 3 files changed +20
-0
lines changed
3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 11224
11224
"type": "string",
11225
11225
"format": "int64",
11226
11226
"description": "The `WORKFLOW_TASK_COMPLETED` event that the corresponding RequestCancelNexusOperation command was reported\nwith."
11227
+ },
11228
+ "scheduledEventId": {
11229
+ "type": "string",
11230
+ "format": "int64",
11231
+ "description": "The id of the `NEXUS_OPERATION_SCHEDULED` event this cancel request corresponds to."
11227
11232
}
11228
11233
}
11229
11234
},
11243
11248
"failure": {
11244
11249
"$ref": "#/definitions/apifailurev1Failure",
11245
11250
"description": "Failure details. A NexusOperationFailureInfo wrapping a CanceledFailureInfo."
11251
+ },
11252
+ "scheduledEventId": {
11253
+ "type": "string",
11254
+ "format": "int64",
11255
+ "description": "The id of the `NEXUS_OPERATION_SCHEDULED` event this cancel request corresponds to."
11246
11256
}
11247
11257
}
11248
11258
},
Original file line number Diff line number Diff line change @@ -8397,6 +8397,9 @@ components:
8397
8397
description: |-
8398
8398
The `WORKFLOW_TASK_COMPLETED` event that the corresponding RequestCancelNexusOperation command was reported
8399
8399
with.
8400
+ scheduledEventId:
8401
+ type: string
8402
+ description: The id of the `NEXUS_OPERATION_SCHEDULED` event this cancel request corresponds to.
8400
8403
NexusOperationCancelRequestFailedEventAttributes:
8401
8404
type: object
8402
8405
properties:
@@ -8412,6 +8415,9 @@ components:
8412
8415
allOf:
8413
8416
- $ref: '#/components/schemas/Failure'
8414
8417
description: Failure details. A NexusOperationFailureInfo wrapping a CanceledFailureInfo.
8418
+ scheduledEventId:
8419
+ type: string
8420
+ description: The id of the `NEXUS_OPERATION_SCHEDULED` event this cancel request corresponds to.
8415
8421
NexusOperationCancelRequestedEventAttributes:
8416
8422
type: object
8417
8423
properties:
Original file line number Diff line number Diff line change @@ -969,6 +969,8 @@ message NexusOperationCancelRequestCompletedEventAttributes {
969
969
// The `WORKFLOW_TASK_COMPLETED` event that the corresponding RequestCancelNexusOperation command was reported
970
970
// with.
971
971
int64 workflow_task_completed_event_id = 2 ;
972
+ // The id of the `NEXUS_OPERATION_SCHEDULED` event this cancel request corresponds to.
973
+ int64 scheduled_event_id = 3 ;
972
974
}
973
975
974
976
message NexusOperationCancelRequestFailedEventAttributes {
@@ -979,6 +981,8 @@ message NexusOperationCancelRequestFailedEventAttributes {
979
981
int64 workflow_task_completed_event_id = 2 ;
980
982
// Failure details. A NexusOperationFailureInfo wrapping a CanceledFailureInfo.
981
983
temporal.api.failure.v1.Failure failure = 3 ;
984
+ // The id of the `NEXUS_OPERATION_SCHEDULED` event this cancel request corresponds to.
985
+ int64 scheduled_event_id = 4 ;
982
986
}
983
987
984
988
// History events are the method by which Temporal SDKs advance (or recreate) workflow state.
You can’t perform that action at this time.
0 commit comments