(pluginName string, connectionId uint64, scopeConfigId uint64, scopeConfig any)
| 280 | } |
| 281 | |
| 282 | func (d *DevlakeClient) PatchScopeConfig(pluginName string, connectionId uint64, scopeConfigId uint64, scopeConfig any) any { |
| 283 | return sendHttpRequest[any](d.testCtx, d.timeout, &testContext{ |
| 284 | client: d, |
| 285 | printPayload: true, |
| 286 | inlineJson: false, |
| 287 | }, http.MethodPatch, fmt.Sprintf("%s/plugins/%s/connections/%d/scope-configs/%d", |
| 288 | d.Endpoint, pluginName, connectionId, scopeConfigId), nil, scopeConfig) |
| 289 | } |
| 290 | |
| 291 | func (d *DevlakeClient) ListScopeConfigs(pluginName string, connectionId uint64) []any { |
| 292 | return sendHttpRequest[[]any](d.testCtx, d.timeout, &testContext{ |
no outgoing calls