| 9 | ) |
| 10 | |
| 11 | type FlowAPI interface { |
| 12 | // Create a new flow. |
| 13 | Create(ctx context.Context, r *management.Flow, opts ...management.RequestOption) error |
| 14 | |
| 15 | // Read flow details. |
| 16 | Read(ctx context.Context, id string, opts ...management.RequestOption) (r *management.Flow, err error) |
| 17 | |
| 18 | // Update an existing flow. |
| 19 | Update(ctx context.Context, id string, r *management.Flow, opts ...management.RequestOption) error |
| 20 | |
| 21 | // Delete a flow. |
| 22 | Delete(ctx context.Context, id string, opts ...management.RequestOption) error |
| 23 | |
| 24 | // List flow. |
| 25 | List(ctx context.Context, opts ...management.RequestOption) (r *management.FlowList, err error) |
| 26 | } |
| 27 | |
| 28 | type FlowVaultConnectionAPI interface { |
| 29 | // CreateConnection Create a new flow vault connection. |
nothing calls this directly
no outgoing calls
no test coverage detected