Skip to content

Generator: Update SDK /services/observability #849

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 17, 2025
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
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
## Release (2025-XX-YY)
- `stackitmarketplace`: [0.4.0](services/stackitmarketplace/CHANGELOG.md#v040-2025-04-16)
- `stackitmarketplace`: [v0.4.0](services/stackitmarketplace/CHANGELOG.md#v040-2025-04-16)
- **Feature:** Add new `InquiryContactSales`, `InquirySuggestProduct`, `PriceType`, `PricingOption` and `DeliveryMethod`
- `stackitmarketplace`: [0.3.0](services/stackitmarketplace/CHANGELOG.md#v030-2025-04-04)
- `stackitmarketplace`: [v0.3.0](services/stackitmarketplace/CHANGELOG.md#v030-2025-04-04)
- **Feature:** Add new `VendorProductId` attribute for subscription products
- `observability`: [v0.4.0](services/observability/CHANGELOG.md#v040-2025-04-17)
- **Feature:** Add new methods `create_logs_alertgroups`, `delete_logs_alertgroup`, `get_logs_alertgroup`, `list_logs_alertgroups`, `update_logs_alertgroup`

## Release (2025-03-27)
- `alb`: [v0.1.0](services/alb/CHANGELOG.md#v010-2025-03-18)
Expand Down
3 changes: 3 additions & 0 deletions services/observability/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.4.0 (2025-04-17)
- **Feature:** Add new methods `create_logs_alertgroups`, `delete_logs_alertgroup`, `get_logs_alertgroup`, `list_logs_alertgroups`, `update_logs_alertgroup`

## v0.3.0 (2025-03-27)

- **Feature:** Added support for alert groups and alert rules.
Expand Down
2 changes: 1 addition & 1 deletion services/observability/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stackit-observability"

[tool.poetry]
name = "stackit-observability"
version = "v0.3.0"
version = "v0.4.0"
authors = [
"STACKIT Developer Tools <[email protected]>",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@
)
from stackit.observability.models.create_instance_payload import CreateInstancePayload
from stackit.observability.models.create_instance_response import CreateInstanceResponse
from stackit.observability.models.create_logs_alertgroups_payload import (
CreateLogsAlertgroupsPayload,
)
from stackit.observability.models.create_scrape_config_payload import (
CreateScrapeConfigPayload,
)
Expand Down Expand Up @@ -199,6 +202,9 @@
UpdateGrafanaConfigsPayloadGenericOauth,
)
from stackit.observability.models.update_instance_payload import UpdateInstancePayload
from stackit.observability.models.update_logs_alertgroup_payload import (
UpdateLogsAlertgroupPayload,
)
from stackit.observability.models.update_metrics_storage_retention_payload import (
UpdateMetricsStorageRetentionPayload,
)
Expand Down
Loading
Loading