(input *plugin.ApiResourceInput)
| 70 | } |
| 71 | |
| 72 | func (connApi *DsScopeConfigApiHelper[C, S, SC]) Post(input *plugin.ApiResourceInput) (out *plugin.ApiResourceOutput, err errors.Error) { |
| 73 | // fix connectionId |
| 74 | connectionId, err := extractConnectionId(input) |
| 75 | if err != nil { |
| 76 | return nil, err |
| 77 | } |
| 78 | input.Body["connectionId"] = connectionId |
| 79 | return connApi.ModelApiHelper.Post(input) |
| 80 | } |
| 81 | |
| 82 | func (connApi *DsScopeConfigApiHelper[C, S, SC]) Patch(input *plugin.ApiResourceInput) (out *plugin.ApiResourceOutput, err errors.Error) { |
| 83 | // fix connectionId |
nothing calls this directly
no test coverage detected