diff --git a/scaleway-async/scaleway_async/tem/v1alpha1/types.py b/scaleway-async/scaleway_async/tem/v1alpha1/types.py index 1fa1cf64c..a8446b95d 100644 --- a/scaleway-async/scaleway_async/tem/v1alpha1/types.py +++ b/scaleway-async/scaleway_async/tem/v1alpha1/types.py @@ -121,10 +121,9 @@ def __str__(self) -> str: class WebhookEventStatus(str, Enum, metaclass=StrEnumMeta): UNKNOWN_STATUS = "unknown_status" - WAITING = "waiting" SENDING = "sending" SENT = "sent" - ERROR = "error" + FAILED = "failed" def __str__(self) -> str: return str(self.value) diff --git a/scaleway/scaleway/tem/v1alpha1/types.py b/scaleway/scaleway/tem/v1alpha1/types.py index 1fa1cf64c..a8446b95d 100644 --- a/scaleway/scaleway/tem/v1alpha1/types.py +++ b/scaleway/scaleway/tem/v1alpha1/types.py @@ -121,10 +121,9 @@ def __str__(self) -> str: class WebhookEventStatus(str, Enum, metaclass=StrEnumMeta): UNKNOWN_STATUS = "unknown_status" - WAITING = "waiting" SENDING = "sending" SENT = "sent" - ERROR = "error" + FAILED = "failed" def __str__(self) -> str: return str(self.value)