Skip to content

Commit 3f42081

Browse files
authored
Add batch update execution options operation type enum (#499)
<!-- Describe what has changed in this PR --> Add batch update execution options operation type enum <!-- Tell your future self why have you made these changes --> For use in `DescribeBatchOperation` <!-- Are there any breaking changes on binary or code level? --> **Breaking changes** <!-- If this breaks the Server, please provide the Server PR to merge right after this PR was merged. --> **Server PR**
1 parent ddb4c67 commit 3f42081

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

openapi/openapiv2.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7449,7 +7449,8 @@
74497449
"BATCH_OPERATION_TYPE_CANCEL",
74507450
"BATCH_OPERATION_TYPE_SIGNAL",
74517451
"BATCH_OPERATION_TYPE_DELETE",
7452-
"BATCH_OPERATION_TYPE_RESET"
7452+
"BATCH_OPERATION_TYPE_RESET",
7453+
"BATCH_OPERATION_TYPE_UPDATE_EXECUTION_OPTIONS"
74537454
],
74547455
"default": "BATCH_OPERATION_TYPE_UNSPECIFIED"
74557456
},

openapi/openapiv3.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6016,6 +6016,7 @@ components:
60166016
- BATCH_OPERATION_TYPE_SIGNAL
60176017
- BATCH_OPERATION_TYPE_DELETE
60186018
- BATCH_OPERATION_TYPE_RESET
6019+
- BATCH_OPERATION_TYPE_UPDATE_EXECUTION_OPTIONS
60196020
type: string
60206021
description: Batch operation type
60216022
format: enum

temporal/api/enums/v1/batch_operation.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ enum BatchOperationType {
3838
BATCH_OPERATION_TYPE_SIGNAL = 3;
3939
BATCH_OPERATION_TYPE_DELETE = 4;
4040
BATCH_OPERATION_TYPE_RESET = 5;
41+
BATCH_OPERATION_TYPE_UPDATE_EXECUTION_OPTIONS = 6;
4142
}
4243

4344
enum BatchOperationState {

0 commit comments

Comments
 (0)