Closed mbardelmeijer closed 1 year ago
When calling the databases create call, the call fails as the optimizing_enabled and backups_enabled fields are required. These are available on the model level, however not passed trough in the Databases endpoint.
databases
optimizing_enabled
backups_enabled
Databases
Create a database via the create API call
create
The database to be created.
API failure:
{ "loc": [ "body", "optimizing_enabled" ], "msg": "field required", "type": "value_error.missing" }, { "loc": [ "body", "backups_enabled" ], "msg": "field required", "type": "value_error.missing" }
-
Fix released in 1.101.2.
Describe the bug
When calling the
databases
create call, the call fails as theoptimizing_enabled
andbackups_enabled
fields are required. These are available on the model level, however not passed trough in theDatabases
endpoint.Reproduction
Create a database via the
create
API callExpected behavior
The database to be created.
Actual behavior
API failure:
Additional information
-