PutScope create or update opsgenie service @Summary create or update opsgenie service @Description Create or update opsgenie service @Tags plugins/opsgenie @Accept application/json @Param connectionId path int true "connection ID" @Param scope body PutScopesReqBody true "json" @Success 200 {object}
(input *plugin.ApiResourceInput)
| 39 | // @Failure 500 {object} shared.ApiBody "Internal Error" |
| 40 | // @Router /plugins/opsgenie/connections/{connectionId}/scopes [PUT] |
| 41 | func PutScope(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| 42 | return dsHelper.ScopeApi.PutMultiple(input) |
| 43 | } |
| 44 | |
| 45 | // UpdateScope patch to opsgenie service |
| 46 | // @Summary patch to opsgenie service |
nothing calls this directly
no test coverage detected