(pluginName string, connectionId uint64)
| 289 | } |
| 290 | |
| 291 | func (d *DevlakeClient) ListScopeConfigs(pluginName string, connectionId uint64) []any { |
| 292 | return sendHttpRequest[[]any](d.testCtx, d.timeout, &testContext{ |
| 293 | client: d, |
| 294 | printPayload: true, |
| 295 | inlineJson: false, |
| 296 | }, http.MethodGet, fmt.Sprintf("%s/plugins/%s/connections/%d/scope-configs?pageSize=20&page=1", |
| 297 | d.Endpoint, pluginName, connectionId), nil, nil) |
| 298 | } |
| 299 | |
| 300 | func (d *DevlakeClient) GetScopeConfig(pluginName string, connectionId uint64, scopeConfigId uint64) any { |
| 301 | return sendHttpRequest[any](d.testCtx, d.timeout, &testContext{ |
nothing calls this directly
no test coverage detected