@@ -129,7 +129,7 @@ class MySQLDatabase(Base):
129129 properties = {
130130 "id" : Property (identifier = True ),
131131 "label" : Property (mutable = True ),
132- "allow_list" : Property (mutable = True ),
132+ "allow_list" : Property (mutable = True , unordered = True ),
133133 "backups" : Property (derived_class = MySQLDatabaseBackup ),
134134 "cluster_size" : Property (),
135135 "created" : Property (is_datetime = True ),
@@ -262,7 +262,7 @@ class PostgreSQLDatabase(Base):
262262 properties = {
263263 "id" : Property (identifier = True ),
264264 "label" : Property (mutable = True ),
265- "allow_list" : Property (mutable = True ),
265+ "allow_list" : Property (mutable = True , unordered = True ),
266266 "backups" : Property (derived_class = PostgreSQLDatabaseBackup ),
267267 "cluster_size" : Property (),
268268 "created" : Property (is_datetime = True ),
@@ -404,7 +404,7 @@ class Database(Base):
404404 properties = {
405405 "id" : Property (),
406406 "label" : Property (),
407- "allow_list" : Property (),
407+ "allow_list" : Property (unordered = True ),
408408 "cluster_size" : Property (),
409409 "created" : Property (),
410410 "encrypted" : Property (),
0 commit comments