Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
- `modelexperiements`
- [v0.1.0](services/modelexperiments/CHANGELOG.md#v010)
- **New**: API for STACKIT modelexperiments
- `opensearch`:
- [v1.0.0](services/opensearch/CHANGELOG.md#v100)
- **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.
- **Deprecation:** `tls_ciphers`, `tls_protocols` from `InstanceParameters` model are deprecated and will be removed 2026-12-12.
- **Feature:** Added optional `CreateCredentialsPayload`.

## Release (2026-13-05)
- `auditlog`:
Expand Down
5 changes: 5 additions & 0 deletions services/opensearch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v1.0.0
- **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.
- **Deprecation:** `tls_ciphers`, `tls_protocols` from `InstanceParameters` model are deprecated and will be removed 2026-12-12.
- **Feature:** Added optional `CreateCredentialsPayload`.

## v0.5.0
- **Feature:** regenerate with openapi-generator v7.22.0

Expand Down
2 changes: 1 addition & 1 deletion services/opensearch/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0e64886dd0847341800d7191ed193b75413be998
d4da229ba7a242ed561223c67f68683be824c126
2 changes: 1 addition & 1 deletion services/opensearch/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stackit-opensearch"
version = "v0.5.0"
version = "v1.0.0"
description = "STACKIT Opensearch API"
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
requires-python = ">=3.9,<4.0"
Expand Down
6 changes: 5 additions & 1 deletion services/opensearch/src/stackit/opensearch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

The STACKIT Opensearch API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.

The version of the OpenAPI document: 1.1.0
The version of the OpenAPI document: 2.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand All @@ -30,6 +30,7 @@
"ApiException",
"Backup",
"CreateBackupResponseItem",
"CreateCredentialsPayload",
"CreateInstancePayload",
"CreateInstanceResponse",
"Credentials",
Expand Down Expand Up @@ -76,6 +77,9 @@
from stackit.opensearch.models.create_backup_response_item import (
CreateBackupResponseItem as CreateBackupResponseItem,
)
from stackit.opensearch.models.create_credentials_payload import (
CreateCredentialsPayload as CreateCredentialsPayload,
)
from stackit.opensearch.models.create_instance_payload import (
CreateInstancePayload as CreateInstancePayload,
)
Expand Down
Loading
Loading