Interface AlertEventControllerApi


@Generated(value="org.openapitools.codegen.languages.SpringCodegen", date="2025-10-02T09:52:44.969958167Z[Etc/UTC]") @Validated public interface AlertEventControllerApi
  • Method Details

    • create

      @RequestMapping(method=POST, value="/api/alertEvents", produces="application/json", consumes="application/json") org.springframework.http.ResponseEntity<AlertEventDtoGenerated> create(@Valid @RequestBody(required=false) @Valid AlertEventImplDtoGenerated alertEventImplDtoGenerated)
      POST /api/alertEvents : create
      Parameters:
      alertEventImplDtoGenerated - (optional)
      Returns:
      OK (status code 200) or Created (status code 201) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
    • delete

      @RequestMapping(method=DELETE, value="/api/alertEvents/alert/{alertId}/entity/{entityId}") org.springframework.http.ResponseEntity<Void> delete(@PathVariable("alertId") UUID alertId, @PathVariable("entityId") UUID entityId)
      DELETE /api/alertEvents/alert/{alertId}/entity/{entityId} : delete
      Parameters:
      alertId - alertId (required)
      entityId - entityId (required)
      Returns:
      No Content (status code 204) or Unauthorized (status code 401) or Forbidden (status code 403)
    • getAlertEvent

      @RequestMapping(method=GET, value="/api/alertEvents/alert/{alertId}/entity/{entityId}", produces="application/json") org.springframework.http.ResponseEntity<AlertEventDtoGenerated> getAlertEvent(@PathVariable("alertId") UUID alertId, @PathVariable("entityId") UUID entityId)
      GET /api/alertEvents/alert/{alertId}/entity/{entityId} : getAlertEvent
      Parameters:
      alertId - alertId (required)
      entityId - entityId (required)
      Returns:
      OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
    • getAll

      @RequestMapping(method=GET, value="/api/alertEvents", produces="application/json") org.springframework.http.ResponseEntity<List<AlertEventDtoGenerated>> getAll()
      GET /api/alertEvents : getAll
      Returns:
      OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
    • update

      @RequestMapping(method=PUT, value="/api/alertEvents/alert/{alertId}/entity/{entityId}", consumes="application/json") org.springframework.http.ResponseEntity<Void> update(@PathVariable("alertId") UUID alertId, @PathVariable("entityId") UUID entityId, @Valid @RequestBody(required=false) @Valid AlertEventImplDtoGenerated alertEventImplDtoGenerated)
      PUT /api/alertEvents/alert/{alertId}/entity/{entityId} : update
      Parameters:
      alertId - alertId (required)
      entityId - entityId (required)
      alertEventImplDtoGenerated - (optional)
      Returns:
      Created (status code 201) or No Content (status code 204) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)