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