Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -16985,6 +16985,11 @@
"identity": {
"type": "string",
"description": "The identity of the client who started this operation."
},
"stateSizeBytes": {
"type": "string",
"format": "int64",
"description": "Updated once on scheduled and once on terminal status."
}
},
"description": "Full current state of a standalone Nexus operation, as of the time of the request."
Expand Down Expand Up @@ -17038,6 +17043,11 @@
"executionDuration": {
"type": "string",
"description": "The difference between close time and scheduled time.\nThis field is only populated if the operation is closed."
},
"stateSizeBytes": {
"type": "string",
"format": "int64",
"description": "Updated once on scheduled and once on terminal status."
}
},
"description": "Limited Nexus operation information returned in the list response.\nWhen adding fields here, ensure that it is also present in NexusOperationExecutionInfo (note that it may already be present in\nNexusOperationExecutionInfo but not at the top-level)."
Expand Down
6 changes: 6 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13371,6 +13371,9 @@ components:
identity:
type: string
description: The identity of the client who started this operation.
stateSizeBytes:
type: string
description: Updated once on scheduled and once on terminal status.
description: Full current state of a standalone Nexus operation, as of the time of the request.
NexusOperationExecutionListInfo:
type: object
Expand Down Expand Up @@ -13423,6 +13426,9 @@ components:
description: |-
The difference between close time and scheduled time.
This field is only populated if the operation is closed.
stateSizeBytes:
type: string
description: Updated once on scheduled and once on terminal status.
description: |-
Limited Nexus operation information returned in the list response.
When adding fields here, ensure that it is also present in NexusOperationExecutionInfo (note that it may already be present in
Expand Down
6 changes: 6 additions & 0 deletions temporal/api/nexus/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,9 @@ message NexusOperationExecutionInfo {

// The identity of the client who started this operation.
string identity = 28;

// Updated once on scheduled and once on terminal status.
int64 state_size_bytes = 29;
}

// Limited Nexus operation information returned in the list response.
Expand Down Expand Up @@ -362,4 +365,7 @@ message NexusOperationExecutionListInfo {
// The difference between close time and scheduled time.
// This field is only populated if the operation is closed.
google.protobuf.Duration execution_duration = 11;

// Updated once on scheduled and once on terminal status.
int64 state_size_bytes = 12;
}
Loading