Skip to content

Commit 1972707

Browse files
Generator: Update SDK /services/redis (#9214)
* Generate redis * chore(redis): 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 4c3d5f0 commit 1972707

39 files changed

Lines changed: 342 additions & 133 deletions

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@
4545
- [v1.3.0](services/rabbitmq/CHANGELOG.md#v130)
4646
- **Breaking Change/Fix:** `create_backup` operation now returns `CreateBackupResponseItem` instead of `List[CreateBackupResponseItem]`
4747
The return type now correctly models the actual JSON response, this operation was broken beforehand.
48+
- `redis`:
49+
- [v1.3.0](services/redis/CHANGELOG.md#v130)
50+
- **Breaking Change/Fix:** `create_backup` operation now returns `CreateBackupResponseItem` instead of `List[CreateBackupResponseItem]`
51+
The return type now correctly models the actual JSON response, this operation was broken beforehand.
52+
- **Deprecation:** Redis service has been deprecated and will be removed after 2027-08-25. Please use the Key Value Store (valkey) service instead.
4853
- `secretsmanager`:
4954
- [v0.7.0](services/secretsmanager/CHANGELOG.md#v070)
5055
- **Feature:** Add support for managing AppRoles and their secret IDs: new `Approle`, `ApproleList`, `ApproleSecret`, `ApproleSecretList`, `CreateApprolePayload`, `CreateApproleSecretIdPayload`, `UpdateApprolePayload` and `UpdateApproleSecretIdPayload` models, plus new `create_approle`, `get_approle`, `get_approles`, `update_approle`, `delete_approle`, `create_approle_secret_id`, `get_approle_secret_id`, `list_approle_secret_ids`, `update_approle_secret_id` and `delete_approle_secret_id` operations

services/redis/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v1.3.0
2+
- **Breaking Change/Fix:** `create_backup` operation now returns `CreateBackupResponseItem` instead of `List[CreateBackupResponseItem]`
3+
The return type now correctly models the actual JSON response, this operation was broken beforehand.
4+
- **Deprecation:** Redis service has been deprecated and will be removed after 2027-08-25. Please use the Key Value Store (valkey) service instead.
5+
16
## v1.2.0
27
- **Breaking Change/Fix:** `list_backups` operation now returns `List[Backup]` instead of `ListBackupsResponse` (response type also removed)
38
The return type now correctly models the actual JSON response, this operation was broken beforehand.

services/redis/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
864bdad12a54f612df8fcdb6e41dd2933e94c3af
1+
1fdef398bea59d49731a7d9ac39394ba5b6bb72c

services/redis/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-redis"
3-
version = "v1.2.0"
3+
version = "v1.3.0"
44
description = "STACKIT Redis API"
55
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
66
requires-python = ">=3.10,<4.0"

services/redis/src/stackit/redis/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# flake8: noqa
44

55
"""
6-
STACKIT Redis API
6+
[DEPRECATED] STACKIT Redis API
77
8-
The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
8+
⚠️ WARNING: THIS API/Service IS DEPRECATED - migrate to valkey! The STACKIT Redis API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
99
1010
The version of the OpenAPI document: 2.1.0
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)

0 commit comments

Comments
 (0)