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, jakarta.servlet.http.HttpServletRequest http) Returns one webhook, or 404 if the project or webhook does not exist or belongs to another tenant.AlertWebhookController.updateAlertWebhook(UUID projectId, UUID webhookId, @Valid UpdateAlertWebhookRequest request, jakarta.servlet.http.HttpServletRequest http) 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, jakarta.servlet.http.HttpServletRequest http) Registers a webhook for the project.AlertWebhookController.listAlertWebhooks(UUID projectId, jakarta.servlet.http.HttpServletRequest http) 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, TenantScope scope) Registers a webhook for a project, stamped with the project's tenant.AlertWebhookService.get(UUID projectId, UUID webhookId, TenantScope scope) Returns one of a project's webhooks.AlertWebhookService.update(UUID projectId, UUID webhookId, UpdateAlertWebhookRequest request, TenantScope scope) 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 TypeMethodDescriptionAlertWebhookService.list(UUID projectId, TenantScope scope) Lists a project's webhooks in creation order.