@@ -126,6 +126,60 @@ type GetWorkflowRequest struct {
126
126
WorkflowNumber uint64 `json:"-"`
127
127
}
128
128
129
+ type VerifyDataWorkflowRequest struct {
130
+ Organization string `json:"-"`
131
+ Database string `json:"-"`
132
+ WorkflowNumber uint64 `json:"-"`
133
+ }
134
+
135
+ type SwitchReplicasWorkflowRequest struct {
136
+ Organization string `json:"-"`
137
+ Database string `json:"-"`
138
+ WorkflowNumber uint64 `json:"-"`
139
+ }
140
+
141
+ type SwitchPrimariesWorkflowRequest struct {
142
+ Organization string `json:"-"`
143
+ Database string `json:"-"`
144
+ WorkflowNumber uint64 `json:"-"`
145
+ }
146
+
147
+ type ReverseTrafficWorkflowRequest struct {
148
+ Organization string `json:"-"`
149
+ Database string `json:"-"`
150
+ WorkflowNumber uint64 `json:"-"`
151
+ }
152
+
153
+ type CutoverWorkflowRequest struct {
154
+ Organization string `json:"-"`
155
+ Database string `json:"-"`
156
+ WorkflowNumber uint64 `json:"-"`
157
+ }
158
+
159
+ type ReverseCutoverWorkflowRequest struct {
160
+ Organization string `json:"-"`
161
+ Database string `json:"-"`
162
+ WorkflowNumber uint64 `json:"-"`
163
+ }
164
+
165
+ type CompleteWorkflowRequest struct {
166
+ Organization string `json:"-"`
167
+ Database string `json:"-"`
168
+ WorkflowNumber uint64 `json:"-"`
169
+ }
170
+
171
+ type RetryWorkflowRequest struct {
172
+ Organization string `json:"-"`
173
+ Database string `json:"-"`
174
+ WorkflowNumber uint64 `json:"-"`
175
+ }
176
+
177
+ type CancelWorkflowRequest struct {
178
+ Organization string `json:"-"`
179
+ Database string `json:"-"`
180
+ WorkflowNumber uint64 `json:"-"`
181
+ }
182
+
129
183
type CreateWorkflowRequest struct {
130
184
Organization string `json:"-"`
131
185
Database string `json:"-"`
@@ -144,15 +198,15 @@ type WorkflowsService interface {
144
198
List (context.Context , * ListWorkflowsRequest ) ([]* Workflow , error )
145
199
Get (context.Context , * GetWorkflowRequest ) (* Workflow , error )
146
200
Create (context.Context , * CreateWorkflowRequest ) (* Workflow , error )
147
- VerifyData (context.Context , * GetWorkflowRequest ) (* Workflow , error )
148
- SwitchReplicas (context.Context , * GetWorkflowRequest ) (* Workflow , error )
149
- SwitchPrimaries (context.Context , * GetWorkflowRequest ) (* Workflow , error )
150
- ReverseTraffic (context.Context , * GetWorkflowRequest ) (* Workflow , error )
151
- Cutover (context.Context , * GetWorkflowRequest ) (* Workflow , error )
152
- ReverseCutover (context.Context , * GetWorkflowRequest ) (* Workflow , error )
153
- Complete (context.Context , * GetWorkflowRequest ) (* Workflow , error )
154
- Retry (context.Context , * GetWorkflowRequest ) (* Workflow , error )
155
- Cancel (context.Context , * GetWorkflowRequest ) (* Workflow , error )
201
+ VerifyData (context.Context , * VerifyDataWorkflowRequest ) (* Workflow , error )
202
+ SwitchReplicas (context.Context , * SwitchReplicasWorkflowRequest ) (* Workflow , error )
203
+ SwitchPrimaries (context.Context , * SwitchPrimariesWorkflowRequest ) (* Workflow , error )
204
+ ReverseTraffic (context.Context , * ReverseTrafficWorkflowRequest ) (* Workflow , error )
205
+ Cutover (context.Context , * CutoverWorkflowRequest ) (* Workflow , error )
206
+ ReverseCutover (context.Context , * ReverseCutoverWorkflowRequest ) (* Workflow , error )
207
+ Complete (context.Context , * CompleteWorkflowRequest ) (* Workflow , error )
208
+ Retry (context.Context , * RetryWorkflowRequest ) (* Workflow , error )
209
+ Cancel (context.Context , * CancelWorkflowRequest ) (* Workflow , error )
156
210
}
157
211
158
212
type workflowsService struct {
@@ -215,7 +269,7 @@ func (ws *workflowsService) Create(ctx context.Context, createReq *CreateWorkflo
215
269
return workflow , nil
216
270
}
217
271
218
- func (ws * workflowsService ) VerifyData (ctx context.Context , verifyDataReq * GetWorkflowRequest ) (* Workflow , error ) {
272
+ func (ws * workflowsService ) VerifyData (ctx context.Context , verifyDataReq * VerifyDataWorkflowRequest ) (* Workflow , error ) {
219
273
path := fmt .Sprintf ("%s/verify-data" , workflowAPIPath (verifyDataReq .Organization , verifyDataReq .Database , verifyDataReq .WorkflowNumber ))
220
274
req , err := ws .client .newRequest (http .MethodPatch , path , nil )
221
275
@@ -232,7 +286,7 @@ func (ws *workflowsService) VerifyData(ctx context.Context, verifyDataReq *GetWo
232
286
return workflow , nil
233
287
}
234
288
235
- func (ws * workflowsService ) SwitchReplicas (ctx context.Context , switchReplicasReq * GetWorkflowRequest ) (* Workflow , error ) {
289
+ func (ws * workflowsService ) SwitchReplicas (ctx context.Context , switchReplicasReq * SwitchReplicasWorkflowRequest ) (* Workflow , error ) {
236
290
path := fmt .Sprintf ("%s/switch-replicas" , workflowAPIPath (switchReplicasReq .Organization , switchReplicasReq .Database , switchReplicasReq .WorkflowNumber ))
237
291
req , err := ws .client .newRequest (http .MethodPatch , path , nil )
238
292
@@ -249,7 +303,7 @@ func (ws *workflowsService) SwitchReplicas(ctx context.Context, switchReplicasRe
249
303
return workflow , nil
250
304
}
251
305
252
- func (ws * workflowsService ) SwitchPrimaries (ctx context.Context , switchPrimariesReq * GetWorkflowRequest ) (* Workflow , error ) {
306
+ func (ws * workflowsService ) SwitchPrimaries (ctx context.Context , switchPrimariesReq * SwitchPrimariesWorkflowRequest ) (* Workflow , error ) {
253
307
path := fmt .Sprintf ("%s/switch-primaries" , workflowAPIPath (switchPrimariesReq .Organization , switchPrimariesReq .Database , switchPrimariesReq .WorkflowNumber ))
254
308
req , err := ws .client .newRequest (http .MethodPatch , path , nil )
255
309
@@ -266,7 +320,7 @@ func (ws *workflowsService) SwitchPrimaries(ctx context.Context, switchPrimaries
266
320
return workflow , nil
267
321
}
268
322
269
- func (ws * workflowsService ) ReverseTraffic (ctx context.Context , reverseTrafficReq * GetWorkflowRequest ) (* Workflow , error ) {
323
+ func (ws * workflowsService ) ReverseTraffic (ctx context.Context , reverseTrafficReq * ReverseTrafficWorkflowRequest ) (* Workflow , error ) {
270
324
path := fmt .Sprintf ("%s/reverse-traffic" , workflowAPIPath (reverseTrafficReq .Organization , reverseTrafficReq .Database , reverseTrafficReq .WorkflowNumber ))
271
325
req , err := ws .client .newRequest (http .MethodPatch , path , nil )
272
326
@@ -283,7 +337,7 @@ func (ws *workflowsService) ReverseTraffic(ctx context.Context, reverseTrafficRe
283
337
return workflow , nil
284
338
}
285
339
286
- func (ws * workflowsService ) Cutover (ctx context.Context , cutoverReq * GetWorkflowRequest ) (* Workflow , error ) {
340
+ func (ws * workflowsService ) Cutover (ctx context.Context , cutoverReq * CutoverWorkflowRequest ) (* Workflow , error ) {
287
341
path := fmt .Sprintf ("%s/cutover" , workflowAPIPath (cutoverReq .Organization , cutoverReq .Database , cutoverReq .WorkflowNumber ))
288
342
req , err := ws .client .newRequest (http .MethodPatch , path , nil )
289
343
@@ -300,7 +354,7 @@ func (ws *workflowsService) Cutover(ctx context.Context, cutoverReq *GetWorkflow
300
354
return workflow , nil
301
355
}
302
356
303
- func (ws * workflowsService ) ReverseCutover (ctx context.Context , reverseCutoverReq * GetWorkflowRequest ) (* Workflow , error ) {
357
+ func (ws * workflowsService ) ReverseCutover (ctx context.Context , reverseCutoverReq * ReverseCutoverWorkflowRequest ) (* Workflow , error ) {
304
358
path := fmt .Sprintf ("%s/reverse-cutover" , workflowAPIPath (reverseCutoverReq .Organization , reverseCutoverReq .Database , reverseCutoverReq .WorkflowNumber ))
305
359
req , err := ws .client .newRequest (http .MethodPatch , path , nil )
306
360
@@ -317,7 +371,7 @@ func (ws *workflowsService) ReverseCutover(ctx context.Context, reverseCutoverRe
317
371
return workflow , nil
318
372
}
319
373
320
- func (ws * workflowsService ) Complete (ctx context.Context , completeReq * GetWorkflowRequest ) (* Workflow , error ) {
374
+ func (ws * workflowsService ) Complete (ctx context.Context , completeReq * CompleteWorkflowRequest ) (* Workflow , error ) {
321
375
path := fmt .Sprintf ("%s/complete" , workflowAPIPath (completeReq .Organization , completeReq .Database , completeReq .WorkflowNumber ))
322
376
req , err := ws .client .newRequest (http .MethodPatch , path , nil )
323
377
@@ -334,7 +388,7 @@ func (ws *workflowsService) Complete(ctx context.Context, completeReq *GetWorkfl
334
388
return workflow , nil
335
389
}
336
390
337
- func (ws * workflowsService ) Retry (ctx context.Context , retryReq * GetWorkflowRequest ) (* Workflow , error ) {
391
+ func (ws * workflowsService ) Retry (ctx context.Context , retryReq * RetryWorkflowRequest ) (* Workflow , error ) {
338
392
path := fmt .Sprintf ("%s/retry" , workflowAPIPath (retryReq .Organization , retryReq .Database , retryReq .WorkflowNumber ))
339
393
req , err := ws .client .newRequest (http .MethodPatch , path , nil )
340
394
@@ -351,7 +405,7 @@ func (ws *workflowsService) Retry(ctx context.Context, retryReq *GetWorkflowRequ
351
405
return workflow , nil
352
406
}
353
407
354
- func (ws * workflowsService ) Cancel (ctx context.Context , cancelReq * GetWorkflowRequest ) (* Workflow , error ) {
408
+ func (ws * workflowsService ) Cancel (ctx context.Context , cancelReq * CancelWorkflowRequest ) (* Workflow , error ) {
355
409
path := workflowAPIPath (cancelReq .Organization , cancelReq .Database , cancelReq .WorkflowNumber )
356
410
req , err := ws .client .newRequest (http .MethodDelete , path , nil )
357
411
0 commit comments