From a429b25847e694a6b3ab1391299a7eec58e8c69f Mon Sep 17 00:00:00 2001 From: Eric Abruzzese Date: Fri, 7 Nov 2025 15:00:59 -0500 Subject: [PATCH] Add initialize_backup_supported to the DatabaseImage resource --- lib/aptible/api/database_image.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/aptible/api/database_image.rb b/lib/aptible/api/database_image.rb index 0b12a8a..cc95844 100644 --- a/lib/aptible/api/database_image.rb +++ b/lib/aptible/api/database_image.rb @@ -12,6 +12,7 @@ class DatabaseImage < Resource field :created_at, type: Time field :updated_at, type: Time field :pitr_supported, type: Aptible::Resource::Boolean + field :initialize_backup_supported, type: Aptible::Resource::Boolean end end end