| 26 | } |
| 27 | |
| 28 | type FlowVaultConnectionAPI interface { |
| 29 | // CreateConnection Create a new flow vault connection. |
| 30 | CreateConnection(ctx context.Context, r *management.FlowVaultConnection, opts ...management.RequestOption) error |
| 31 | |
| 32 | // GetConnection Retrieve flow vault connection details. |
| 33 | GetConnection(ctx context.Context, id string, opts ...management.RequestOption) (r *management.FlowVaultConnection, err error) |
| 34 | |
| 35 | // UpdateConnection Update an existing flow vault connection. |
| 36 | UpdateConnection(ctx context.Context, id string, r *management.FlowVaultConnection, opts ...management.RequestOption) error |
| 37 | |
| 38 | // DeleteConnection Delete a flow vault connection. |
| 39 | DeleteConnection(ctx context.Context, id string, opts ...management.RequestOption) error |
| 40 | |
| 41 | // GetConnectionList List flow vault connections. |
| 42 | GetConnectionList(ctx context.Context, opts ...management.RequestOption) (r *management.FlowVaultConnectionList, err error) |
| 43 | } |
no outgoing calls
no test coverage detected