DeleteConnection FIXME
(pluginName string, connectionId uint64)
| 68 | |
| 69 | // DeleteConnection FIXME |
| 70 | func (d *DevlakeClient) DeleteConnection(pluginName string, connectionId uint64) services.BlueprintProjectPairs { |
| 71 | d.testCtx.Helper() |
| 72 | refs := sendHttpRequest[shared.TypedApiBody[services.BlueprintProjectPairs]](d.testCtx, d.timeout, &testContext{ |
| 73 | client: d, |
| 74 | printPayload: true, |
| 75 | inlineJson: false, |
| 76 | }, http.MethodDelete, fmt.Sprintf("%s/plugins/%s/connections/%d", d.Endpoint, pluginName, connectionId), nil, nil) |
| 77 | return refs.Data |
| 78 | } |
| 79 | |
| 80 | // CreateBasicBlueprintV2 FIXME |
| 81 | func (d *DevlakeClient) CreateBasicBlueprintV2(name string, config *BlueprintV2Config) models.Blueprint { |