Skip to content

Commit b42eff8

Browse files
Generator: Update SDK /services/mariadb (#4932)
* Generate mariadb * chore(mariadb): Add changelogs Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de> --------- Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de> Co-authored-by: Alexander Dahmen <alexander.dahmen@inovex.de>
1 parent 45b3214 commit b42eff8

39 files changed

Lines changed: 792 additions & 275 deletions

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Release (2026-MM-DD)
22

3+
- `mariadb`:
4+
- [v1.0.0](services/mariadb/CHANGELOG.md#v100)
5+
- **Breaking Change:** The region is no longer specified within the client configuration. Instead, the region must be passed as a parameter to any region-specific request.
6+
- **Feature:** Added optional `CreateCredentialsPayload`.
37
- `modelexperiements`
48
- [v0.1.0](services/modelexperiments/CHANGELOG.md#v010)
59
- **New**: API for STACKIT modelexperiments

services/mariadb/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.0.0
2+
- **Breaking Change:** The region is no longer specified within the client configuration. Instead, the region must be passed as a parameter to any region-specific request.
3+
- **Feature:** Added optional `CreateCredentialsPayload`.
4+
15
## v0.4.0
26
- **Feature:** regenerate with openapi-generator v7.22.0
37

services/mariadb/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0e64886dd0847341800d7191ed193b75413be998
1+
d4da229ba7a242ed561223c67f68683be824c126

services/mariadb/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stackit-mariadb"
3-
version = "v0.4.0"
3+
version = "v1.0.0"
44
description = "STACKIT MariaDB API"
55
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
66
requires-python = ">=3.9,<4.0"

services/mariadb/src/stackit/mariadb/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
The STACKIT MariaDB API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
99
10-
The version of the OpenAPI document: 1.1.0
10+
The version of the OpenAPI document: 2.0
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
1313
Do not edit the class manually.
@@ -30,6 +30,7 @@
3030
"ApiException",
3131
"Backup",
3232
"CreateBackupResponseItem",
33+
"CreateCredentialsPayload",
3334
"CreateInstancePayload",
3435
"CreateInstanceResponse",
3536
"Credentials",
@@ -76,6 +77,9 @@
7677
from stackit.mariadb.models.create_backup_response_item import (
7778
CreateBackupResponseItem as CreateBackupResponseItem,
7879
)
80+
from stackit.mariadb.models.create_credentials_payload import (
81+
CreateCredentialsPayload as CreateCredentialsPayload,
82+
)
7983
from stackit.mariadb.models.create_instance_payload import (
8084
CreateInstancePayload as CreateInstancePayload,
8185
)

0 commit comments

Comments
 (0)