Skip to content

Commit 667fcf5

Browse files
Merge pull request #229 from RedisLabs/fix/region-enable-default-users
fix: moving enable default user field to the region properties
2 parents bed9fea + 203257d commit 667fcf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

service/databases/model_active_active.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ type UpdateActiveActiveDatabase struct {
114114
GlobalAlerts *[]*Alert `json:"globalAlerts,omitempty"`
115115
Regions []*LocalRegionProperties `json:"regions,omitempty"`
116116
DataEvictionPolicy *string `json:"dataEvictionPolicy,omitempty"`
117-
EnableDefaultUser *bool `json:"enableDefaultUser,omitempty"`
118117
QueryPerformanceFactor *string `json:"queryPerformanceFactor,omitempty"`
119118
}
120119

@@ -129,6 +128,7 @@ type LocalRegionProperties struct {
129128
DataPersistence *string `json:"dataPersistence,omitempty"`
130129
Password *string `json:"password,omitempty"`
131130
SourceIP []*string `json:"sourceIp,omitempty"`
131+
EnableDefaultUser *bool `json:"enableDefaultUser,omitempty"`
132132
// Using a pointer to allow empty slices to be serialised/sent
133133
Alerts *[]*Alert `json:"alerts,omitempty"`
134134
}

0 commit comments

Comments
 (0)