Skip to content

Commit 55281da

Browse files
authored
#76 Updated openapi.json (#77)
* #76: Updated `openapi.json` * Prepare release 0.9.0
1 parent ca853e8 commit 55281da

File tree

9 files changed

+454
-340
lines changed

9 files changed

+454
-340
lines changed

doc/changes/changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changes
22

33
* [unreleased](unreleased.md)
4+
* [0.9.0](changes_0.9.0.md)
45
* [0.8.0](changes_0.8.0.md)
56
* [0.7.0](changes_0.7.0.md)
67
* [0.6.0](changes_0.6.0.md)
@@ -16,6 +17,7 @@
1617
hidden:
1718
---
1819
unreleased
20+
changes_0.9.0
1921
changes_0.8.0
2022
changes_0.7.0
2123
changes_0.6.0

doc/changes/changes_0.9.0.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# 0.9.0 - 2024-08-05
2+
3+
## Refactorings
4+
5+
* #76: Updated `openapi.json`

exasol/saas/client/openapi/models/__init__.py

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exasol/saas/client/openapi/models/database.py

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exasol/saas/client/openapi/models/database_settings.py

+57
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openapi.json

+18-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"version": "1.0",
77
"download": {
88
"source": "https://cloud.exasol.com/openapi.json",
9-
"timestamp": "2024-07-03T14:36:30.377504+00:00"
9+
"timestamp": "2024-08-05T11:13:00.786294+00:00"
1010
}
1111
},
1212
"servers": [
@@ -2793,7 +2793,8 @@
27932793
"provider",
27942794
"region",
27952795
"createdAt",
2796-
"createdBy"
2796+
"createdBy",
2797+
"settings"
27972798
],
27982799
"properties": {
27992800
"status": {
@@ -2861,10 +2862,25 @@
28612862
"deletedAt": {
28622863
"type": "string",
28632864
"format": "date-time"
2865+
},
2866+
"settings": {
2867+
"$ref": "#/components/schemas/DatabaseSettings"
28642868
}
28652869
},
28662870
"type": "object"
28672871
},
2872+
"DatabaseSettings": {
2873+
"required": [
2874+
"offloadEnabled"
2875+
],
2876+
"properties": {
2877+
"offloadEnabled": {
2878+
"type": "boolean"
2879+
}
2880+
},
2881+
"additionalProperties": false,
2882+
"type": "object"
2883+
},
28682884
"DownloadFile": {
28692885
"required": [
28702886
"url"

0 commit comments

Comments
 (0)