From 5c8d0a0d84f02787406d5c98905819074310fee9 Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Wed, 28 Aug 2024 07:18:20 +0000 Subject: [PATCH 1/2] Generate logme --- services/logme/model_get_metrics_response.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/services/logme/model_get_metrics_response.go b/services/logme/model_get_metrics_response.go index 4366a893a..18e4d0540 100644 --- a/services/logme/model_get_metrics_response.go +++ b/services/logme/model_get_metrics_response.go @@ -14,9 +14,9 @@ package logme type GetMetricsResponse struct { CpuIdleTime *int64 `json:"cpuIdleTime,omitempty"` // REQUIRED - CpuLoadPercent *int64 `json:"cpuLoadPercent"` - CpuSystemTime *int64 `json:"cpuSystemTime,omitempty"` - CpuUserTime *int64 `json:"cpuUserTime,omitempty"` + CpuLoadPercent *float64 `json:"cpuLoadPercent"` + CpuSystemTime *int64 `json:"cpuSystemTime,omitempty"` + CpuUserTime *int64 `json:"cpuUserTime,omitempty"` // REQUIRED DiskEphemeralTotal *int64 `json:"diskEphemeralTotal"` // REQUIRED @@ -26,11 +26,11 @@ type GetMetricsResponse struct { // REQUIRED DiskPersistentUsed *int64 `json:"diskPersistentUsed"` // REQUIRED - Load1 *int64 `json:"load1"` + Load1 *float64 `json:"load1"` // REQUIRED - Load15 *int64 `json:"load15"` + Load15 *float64 `json:"load15"` // REQUIRED - Load5 *int64 `json:"load5"` + Load5 *float64 `json:"load5"` // REQUIRED MemoryTotal *int64 `json:"memoryTotal"` // REQUIRED @@ -38,7 +38,7 @@ type GetMetricsResponse struct { // REQUIRED OpensearchDashboardURL *string `json:"opensearchDashboardURL"` // REQUIRED - ParachuteDiskEphemeralActivated *int64 `json:"parachuteDiskEphemeralActivated"` + ParachuteDiskEphemeralActivated *bool `json:"parachuteDiskEphemeralActivated"` // REQUIRED ParachuteDiskEphemeralTotal *int64 `json:"parachuteDiskEphemeralTotal"` // REQUIRED @@ -48,7 +48,7 @@ type GetMetricsResponse struct { // REQUIRED ParachuteDiskEphemeralUsedThreshold *int64 `json:"parachuteDiskEphemeralUsedThreshold"` // REQUIRED - ParachuteDiskPersistentActivated *int64 `json:"parachuteDiskPersistentActivated"` + ParachuteDiskPersistentActivated *bool `json:"parachuteDiskPersistentActivated"` // REQUIRED ParachuteDiskPersistentTotal *int64 `json:"parachuteDiskPersistentTotal"` // REQUIRED From 7b60f72bc9644f9f98807bd5338ec65b52e4a43e Mon Sep 17 00:00:00 2001 From: vicentepinto98 Date: Mon, 2 Sep 2024 10:17:21 +0100 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 18 +++++++++++++----- services/logme/CHANGELOG.md | 6 ++++++ 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94fb7f0bf..538e4d887 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,20 @@ +## Release (2024-XX-XX) + +- `logme`: [v0.19.0](services/logme/CHANGELOG.md#v0190-2024-09-02) + - **Breaking changes:** `GetMetricsResponse` fields have changed data types + - `CpuLoadPercent`, `Load1`, `Load15` and `Load5` are now `*float64` + - `ParachuteDiskEphemeralActivated` and `ParachuteDiskPersistentActivated` are now `*bool` + ## Release (2024-08-26) > [!WARNING] -> -> **The STACKIT Argus service was renamed to STACKIT Observability.** -> +> +> **The STACKIT Argus service was renamed to STACKIT Observability.** +> > In the SDK, this means that there is a new `observability` service, which offers the same functionality as the deprecated `argus` service. -> +> > SDK updates from now on will be released on the new `observability` service, meaning `argus` will no longer get updates. -> +> > Please migrate to `github.com/stackitcloud/stackit-sdk-go/services/observability`. - `observability`: [v0.1.0](services/observability/CHANGELOG.md#v010-2024-08-21) @@ -43,6 +50,7 @@ - **Feature:** `Plan` has a new field `SkuName` ## Release (2024-07-24) + - `iaas`: [v0.5.0](services/iaas/CHANGELOG.md#v050-2024-07-24) - **Feature:** `CreateNetworkAddressFamily` and `UpdateNetworkAddressFamily` have a new field `Ipv6` - **Feature:** `Network` has new fields: `NameserversV6` and `PrefixesV6` diff --git a/services/logme/CHANGELOG.md b/services/logme/CHANGELOG.md index 09dd5f80a..d9f55e654 100644 --- a/services/logme/CHANGELOG.md +++ b/services/logme/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.19.0 (2024-09-02) + +- **Breaking changes:** `GetMetricsResponse` fields have changed data types + - `CpuLoadPercent`, `Load1`, `Load15` and `Load5` are now `*float64` + - `ParachuteDiskEphemeralActivated` and `ParachuteDiskPersistentActivated` are now `*bool` + ## v0.18.0 (2024-08-01) - **Feature:** `Plan` has a new field `SkuName`