Skip to content

Commit

Permalink
#76 Updated openapi.json (#77)
Browse files Browse the repository at this point in the history
* #76: Updated `openapi.json`
* Prepare release 0.9.0
  • Loading branch information
ckunki authored Aug 5, 2024
1 parent ca853e8 commit 55281da
Show file tree
Hide file tree
Showing 9 changed files with 454 additions and 340 deletions.
2 changes: 2 additions & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changes

* [unreleased](unreleased.md)
* [0.9.0](changes_0.9.0.md)
* [0.8.0](changes_0.8.0.md)
* [0.7.0](changes_0.7.0.md)
* [0.6.0](changes_0.6.0.md)
Expand All @@ -16,6 +17,7 @@
hidden:
---
unreleased
changes_0.9.0
changes_0.8.0
changes_0.7.0
changes_0.6.0
Expand Down
5 changes: 5 additions & 0 deletions doc/changes/changes_0.9.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# 0.9.0 - 2024-08-05

## Refactorings

* #76: Updated `openapi.json`
2 changes: 2 additions & 0 deletions exasol/saas/client/openapi/models/__init__.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions exasol/saas/client/openapi/models/database.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 57 additions & 0 deletions exasol/saas/client/openapi/models/database_settings.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 18 additions & 2 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"version": "1.0",
"download": {
"source": "https://cloud.exasol.com/openapi.json",
"timestamp": "2024-07-03T14:36:30.377504+00:00"
"timestamp": "2024-08-05T11:13:00.786294+00:00"
}
},
"servers": [
Expand Down Expand Up @@ -2793,7 +2793,8 @@
"provider",
"region",
"createdAt",
"createdBy"
"createdBy",
"settings"
],
"properties": {
"status": {
Expand Down Expand Up @@ -2861,10 +2862,25 @@
"deletedAt": {
"type": "string",
"format": "date-time"
},
"settings": {
"$ref": "#/components/schemas/DatabaseSettings"
}
},
"type": "object"
},
"DatabaseSettings": {
"required": [
"offloadEnabled"
],
"properties": {
"offloadEnabled": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object"
},
"DownloadFile": {
"required": [
"url"
Expand Down
Loading

0 comments on commit 55281da

Please sign in to comment.