@@ -151,25 +151,39 @@ service Dapr {
151
151
rpc SubtleVerifyAlpha1 (SubtleVerifyRequest ) returns (SubtleVerifyResponse );
152
152
153
153
// Starts a new instance of a workflow
154
- rpc StartWorkflowAlpha1 (StartWorkflowRequest ) returns (StartWorkflowResponse ) {}
154
+ rpc StartWorkflowAlpha1 (StartWorkflowRequest ) returns (StartWorkflowResponse ) {
155
+ option deprecated = true ;
156
+ }
155
157
156
158
// Gets details about a started workflow instance
157
- rpc GetWorkflowAlpha1 (GetWorkflowRequest ) returns (GetWorkflowResponse ) {}
159
+ rpc GetWorkflowAlpha1 (GetWorkflowRequest ) returns (GetWorkflowResponse ) {
160
+ option deprecated = true ;
161
+ }
158
162
159
163
// Purge Workflow
160
- rpc PurgeWorkflowAlpha1 (PurgeWorkflowRequest ) returns (google .protobuf .Empty ) {}
164
+ rpc PurgeWorkflowAlpha1 (PurgeWorkflowRequest ) returns (google .protobuf .Empty ) {
165
+ option deprecated = true ;
166
+ }
161
167
162
168
// Terminates a running workflow instance
163
- rpc TerminateWorkflowAlpha1 (TerminateWorkflowRequest ) returns (google .protobuf .Empty ) {}
169
+ rpc TerminateWorkflowAlpha1 (TerminateWorkflowRequest ) returns (google .protobuf .Empty ) {
170
+ option deprecated = true ;
171
+ }
164
172
165
173
// Pauses a running workflow instance
166
- rpc PauseWorkflowAlpha1 (PauseWorkflowRequest ) returns (google .protobuf .Empty ) {}
174
+ rpc PauseWorkflowAlpha1 (PauseWorkflowRequest ) returns (google .protobuf .Empty ) {
175
+ option deprecated = true ;
176
+ }
167
177
168
178
// Resumes a paused workflow instance
169
- rpc ResumeWorkflowAlpha1 (ResumeWorkflowRequest ) returns (google .protobuf .Empty ) {}
179
+ rpc ResumeWorkflowAlpha1 (ResumeWorkflowRequest ) returns (google .protobuf .Empty ) {
180
+ option deprecated = true ;
181
+ }
170
182
171
183
// Raise an event to a running workflow instance
172
- rpc RaiseEventWorkflowAlpha1 (RaiseEventWorkflowRequest ) returns (google .protobuf .Empty ) {}
184
+ rpc RaiseEventWorkflowAlpha1 (RaiseEventWorkflowRequest ) returns (google .protobuf .Empty ) {
185
+ option deprecated = true ;
186
+ }
173
187
174
188
// Starts a new instance of a workflow
175
189
rpc StartWorkflowBeta1 (StartWorkflowRequest ) returns (StartWorkflowResponse ) {}
@@ -191,6 +205,7 @@ service Dapr {
191
205
192
206
// Raise an event to a running workflow instance
193
207
rpc RaiseEventWorkflowBeta1 (RaiseEventWorkflowRequest ) returns (google .protobuf .Empty ) {}
208
+
194
209
// Shutdown the sidecar
195
210
rpc Shutdown (ShutdownRequest ) returns (google .protobuf .Empty ) {}
196
211
0 commit comments