From afb80d572a1d7de76ffed2a11d14f8adeade16d1 Mon Sep 17 00:00:00 2001 From: Mike Degatano Date: Wed, 6 Aug 2025 15:20:25 -0400 Subject: [PATCH] Add `disk_lifetime` issue type --- aiohasupervisor/models/resolution.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aiohasupervisor/models/resolution.py b/aiohasupervisor/models/resolution.py index c2becea..9bc3f65 100644 --- a/aiohasupervisor/models/resolution.py +++ b/aiohasupervisor/models/resolution.py @@ -52,6 +52,7 @@ class IssueType(StrEnum): DETACHED_ADDON_REMOVED = "detached_addon_removed" DEVICE_ACCESS_MISSING = "device_access_missing" DISABLED_DATA_DISK = "disabled_data_disk" + DISK_LIFETIME = "disk_lifetime" DNS_LOOP = "dns_loop" DNS_SERVER_FAILED = "dns_server_failed" DNS_SERVER_IPV6_ERROR = "dns_server_ipv6_error"