Uses of Record Class
dev.dokimos.server.dto.v1.AlertWebhookView
Packages that use AlertWebhookView
Package
Description
-
Uses of AlertWebhookView in dev.dokimos.server.controller.v1
Methods in dev.dokimos.server.controller.v1 that return AlertWebhookViewModifier and TypeMethodDescriptionAlertWebhookController.getAlertWebhook(UUID projectId, UUID webhookId) Returns one webhook, or 404 if the project or webhook does not exist.AlertWebhookController.updateAlertWebhook(UUID projectId, UUID webhookId, @Valid UpdateAlertWebhookRequest request) Updates a webhook.Methods in dev.dokimos.server.controller.v1 that return types with arguments of type AlertWebhookViewModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<AlertWebhookView> AlertWebhookController.createAlertWebhook(UUID projectId, @Valid CreateAlertWebhookRequest request) Registers a webhook for the project.AlertWebhookController.listAlertWebhooks(UUID projectId) Lists the project's webhooks. -
Uses of AlertWebhookView in dev.dokimos.server.dto.v1
Methods in dev.dokimos.server.dto.v1 that return AlertWebhookViewModifier and TypeMethodDescriptionstatic AlertWebhookViewAlertWebhookView.from(AlertWebhook webhook) -
Uses of AlertWebhookView in dev.dokimos.server.service
Methods in dev.dokimos.server.service that return AlertWebhookViewModifier and TypeMethodDescriptionAlertWebhookService.create(UUID projectId, CreateAlertWebhookRequest request) Registers a webhook for a project.Returns one of a project's webhooks.AlertWebhookService.update(UUID projectId, UUID webhookId, UpdateAlertWebhookRequest request) Replaces a webhook's url and enabled flag, and optionally its secret.Methods in dev.dokimos.server.service that return types with arguments of type AlertWebhookViewModifier and TypeMethodDescriptionLists a project's webhooks in creation order.