You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**Improvement:** Add validation for `name` field in `CreateDatabasePayload`, `DatabaseRoles`, `GetDatabaseResponse`, `ListDatabase`, `PartialUpdateDatabasePayload` and `UpdateDatabasePayload` models
36
+
-**Docs:** Extend description of `InstanceNetworkAccessScope` enum to note that the `SNA` value is only permitted for enabled accounts
Copy file name to clipboardExpand all lines: services/postgresflex/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
## v1.6.1
2
+
-**Improvement:** Add validation for `name` field in `CreateDatabasePayload`, `DatabaseRoles`, `GetDatabaseResponse`, `ListDatabase`, `PartialUpdateDatabasePayload` and `UpdateDatabasePayload` models
3
+
-**Docs:** Extend description of `InstanceNetworkAccessScope` enum to note that the `SNA` value is only permitted for enabled accounts
4
+
1
5
## v1.6.0
2
6
-**Breaking Change:**`class` attribute in `CloneInstanceOverrides` and `StorageCreate` model is now required (previously optional)
description='"The name of the database." "Database name must be 1–63 characters long, start with a lowercase letter or underscore, and contain only lowercase letters, numbers, or underscores." '
34
+
)
32
35
owner: Optional[StrictStr] =Field(default=None, description="The owner of the database.")
description='"The name of the database." "Database name must be 1–63 characters long, start with a lowercase letter or underscore, and contain only lowercase letters, numbers, or underscores." '
34
+
)
32
35
roles: List[StrictStr] =Field(description="The name and the roles for a database")
description='"The name of the database." "Database name must be 1–63 characters long, start with a lowercase letter or underscore, and contain only lowercase letters, numbers, or underscores." '
35
+
)
33
36
owner: StrictStr=Field(description="The owner of the database.")
Copy file name to clipboardExpand all lines: services/postgresflex/src/stackit/postgresflex/models/instance_network_access_scope.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@
22
22
23
23
classInstanceNetworkAccessScope(str, Enum):
24
24
"""
25
-
The access scope of the instance. It defines if the instance is public or airgapped.
25
+
The access scope of the instance. It defines if the instance is public or airgapped. ⚠️ **Note:** \"SNA\" value for the \"network.accessScope\" field is only permitted for enabled accounts. If your account does not have access, the request will be rejected.
description='"The name of the database." "Database name must be 1–63 characters long, start with a lowercase letter or underscore, and contain only lowercase letters, numbers, or underscores." '
35
+
)
33
36
owner: StrictStr=Field(description="The owner of the database.")
description='"The name of the database." "Database name must be 1–63 characters long, start with a lowercase letter or underscore, and contain only lowercase letters, numbers, or underscores." ',
35
+
)
32
36
owner: Optional[StrictStr] =Field(default=None, description="The owner of the database.")
0 commit comments