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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
- **Feature:** New API client methods: `create_compliance_lock`, `delete_compliance_lock`, `delete_default_retention`, `get_compliance_lock`, `get_credentials_group`, `get_default_retention`, `set_default_retention`
- `serviceaccount`: [v0.7.0](services/serviceaccount/CHANGELOG.md#v070)
- **Feature:** Add `token_endpoint` attribute to `CreateServiceAccountKeyResponseCredentials` model class
- `observability`: [v0.14.0](services/observability/CHANGELOG.md#v0140)
- **Feature:** Add attribute `otlp_http_logs_url` to `InstanceSensitiveData` model class
- `vpn`: [v0.1.0](services/vpn/CHANGELOG.md#v010)
- Initial publication of STACKIT Python SDK module for STACKIT VPN service

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.14.0
- **Feature:** Add attribute `otlp_http_logs_url` to `InstanceSensitiveData` model class

## v0.13.1
- **Feature:** client now supports UUID and decimal types
- **Bugfix:** timeouts now passed to requests library
Expand Down
2 changes: 1 addition & 1 deletion services/observability/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0e64886dd0847341800d7191ed193b75413be998
87a3ad63dec0a953ff5c6072ad9a15fddd8ec5f8
2 changes: 1 addition & 1 deletion services/observability/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stackit-observability"
version = "v0.13.1"
version = "v0.14.0"
description = "STACKIT Observability API"
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
requires-python = ">=3.9,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ class InstanceSensitiveData(BaseModel):
metrics_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="metricsUrl")
name: Optional[Annotated[str, Field(strict=True, max_length=300)]] = ""
otlp_grpc_traces_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="otlpGrpcTracesUrl")
otlp_http_logs_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="otlpHttpLogsUrl")
otlp_http_traces_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="otlpHttpTracesUrl")
otlp_traces_url: Annotated[str, Field(min_length=1, strict=True)] = Field(alias="otlpTracesUrl")
plan: PlanModel
Expand Down Expand Up @@ -84,6 +85,7 @@ class InstanceSensitiveData(BaseModel):
"metricsUrl",
"name",
"otlpGrpcTracesUrl",
"otlpHttpLogsUrl",
"otlpHttpTracesUrl",
"otlpTracesUrl",
"plan",
Expand Down Expand Up @@ -170,6 +172,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
"metricsUrl": obj.get("metricsUrl"),
"name": obj.get("name") if obj.get("name") is not None else "",
"otlpGrpcTracesUrl": obj.get("otlpGrpcTracesUrl"),
"otlpHttpLogsUrl": obj.get("otlpHttpLogsUrl"),
"otlpHttpTracesUrl": obj.get("otlpHttpTracesUrl"),
"otlpTracesUrl": obj.get("otlpTracesUrl"),
"plan": PlanModel.from_dict(obj["plan"]) if obj.get("plan") is not None else None,
Expand Down
Loading