File tree 3 files changed +5
-1
lines changed
temporal/api/workflowservice/v1
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 12060
12060
"type": "string",
12061
12061
"format": "byte"
12062
12062
}
12063
- }
12063
+ },
12064
+ "description": "Deprecated: Use with `ListWorkflowExecutions`."
12064
12065
},
12065
12066
"v1Schedule": {
12066
12067
"type": "object",
Original file line number Diff line number Diff line change @@ -899,13 +899,15 @@ message ListArchivedWorkflowExecutionsResponse {
899
899
bytes next_page_token = 2 ;
900
900
}
901
901
902
+ // Deprecated: Use with `ListWorkflowExecutions`.
902
903
message ScanWorkflowExecutionsRequest {
903
904
string namespace = 1 ;
904
905
int32 page_size = 2 ;
905
906
bytes next_page_token = 3 ;
906
907
string query = 4 ;
907
908
}
908
909
910
+ // Deprecated: Use with `ListWorkflowExecutions`.
909
911
message ScanWorkflowExecutionsResponse {
910
912
repeated temporal.api.workflow.v1.WorkflowExecutionInfo executions = 1 ;
911
913
bytes next_page_token = 2 ;
Original file line number Diff line number Diff line change @@ -482,6 +482,7 @@ service WorkflowService {
482
482
483
483
// ScanWorkflowExecutions is a visibility API to list large amount of workflow executions in a specific namespace without order.
484
484
//
485
+ // Deprecated: Replaced with `ListWorkflowExecutions`.
485
486
// (-- api-linter: core::0127::http-annotation=disabled
486
487
// aip.dev/not-precedent: HTTP users should use ListWorkflowExecutions instead. --)
487
488
rpc ScanWorkflowExecutions (ScanWorkflowExecutionsRequest ) returns (ScanWorkflowExecutionsResponse ) {
You can’t perform that action at this time.
0 commit comments