CreateScopeConfig create scope config for Tapd @Summary create scope config for Tapd @Description create scope config for Tapd @Tags plugins/tapd @Accept application/json @Param connectionId path int true "connectionId" @Param scopeConfig body models.TapdScopeConfig true "scope config" @Success 200
(input *plugin.ApiResourceInput)
| 34 | // @Failure 500 {object} shared.ApiBody "Internal Error" |
| 35 | // @Router /plugins/tapd/connections/{connectionId}/scope-configs [POST] |
| 36 | func PostScopeConfig(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| 37 | return dsHelper.ScopeConfigApi.Post(input) |
| 38 | } |
| 39 | |
| 40 | // UpdateScopeConfig update scope config for Tapd |
| 41 | // @Summary update scope config for Tapd |