From 203257d7d4eb0b95207cfa723095f6f12c38ad5d Mon Sep 17 00:00:00 2001 From: Matthew Long Date: Fri, 26 Sep 2025 17:31:32 +0100 Subject: [PATCH] fix: moving enable default user field to the region properties --- service/databases/model_active_active.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/databases/model_active_active.go b/service/databases/model_active_active.go index 2867ffb..2ccfd34 100644 --- a/service/databases/model_active_active.go +++ b/service/databases/model_active_active.go @@ -114,7 +114,6 @@ type UpdateActiveActiveDatabase struct { GlobalAlerts *[]*Alert `json:"globalAlerts,omitempty"` Regions []*LocalRegionProperties `json:"regions,omitempty"` DataEvictionPolicy *string `json:"dataEvictionPolicy,omitempty"` - EnableDefaultUser *bool `json:"enableDefaultUser,omitempty"` QueryPerformanceFactor *string `json:"queryPerformanceFactor,omitempty"` } @@ -129,6 +128,7 @@ type LocalRegionProperties struct { DataPersistence *string `json:"dataPersistence,omitempty"` Password *string `json:"password,omitempty"` SourceIP []*string `json:"sourceIp,omitempty"` + EnableDefaultUser *bool `json:"enableDefaultUser,omitempty"` // Using a pointer to allow empty slices to be serialised/sent Alerts *[]*Alert `json:"alerts,omitempty"` }