(pluginName string, connectionId uint64, scopeConfigId uint64)
| 307 | } |
| 308 | |
| 309 | func (d *DevlakeClient) DeleteScopeConfig(pluginName string, connectionId uint64, scopeConfigId uint64) { |
| 310 | sendHttpRequest[any](d.testCtx, d.timeout, &testContext{ |
| 311 | client: d, |
| 312 | printPayload: true, |
| 313 | inlineJson: false, |
| 314 | }, http.MethodDelete, fmt.Sprintf("%s/plugins/%s/connections/%d/scope-configs/%d", |
| 315 | d.Endpoint, pluginName, connectionId, scopeConfigId), nil, nil) |
| 316 | } |
| 317 | |
| 318 | func (d *DevlakeClient) RemoteScopes(query RemoteScopesQuery) RemoteScopesOutput { |
| 319 | url := fmt.Sprintf("%s/plugins/%s/connections/%d/remote-scopes", |
no outgoing calls