From b46f318e3ebc674f2c3153d9c40bb6296cf37b5b Mon Sep 17 00:00:00 2001 From: Vojtech Kronika Date: Tue, 24 Sep 2024 15:40:55 +0200 Subject: [PATCH] Updated version in makefile and generate files --- Makefile | 2 +- statusboard/v1/status_updates_client.go | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c4a5f6917..a8c5bf5ae 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ export PATH := $(LOCAL_BIN_PATH):$(PATH) export CGO_ENABLED=0 # Details of the model to use: -model_version:=v0.0.395 +model_version:=v0.0.396 model_url:=https://github.com/openshift-online/ocm-api-model.git # Details of the metamodel to use: diff --git a/statusboard/v1/status_updates_client.go b/statusboard/v1/status_updates_client.go index e52f9084f..096c6e92a 100644 --- a/statusboard/v1/status_updates_client.go +++ b/statusboard/v1/status_updates_client.go @@ -228,6 +228,7 @@ type StatusUpdatesListRequest struct { header http.Header createdAfter *time.Time createdBefore *time.Time + flapDetection *bool fullNames *string limitScope *time.Time page *int @@ -267,6 +268,12 @@ func (r *StatusUpdatesListRequest) CreatedBefore(value time.Time) *StatusUpdates return r } +// FlapDetection sets the value of the 'flap_detection' parameter. +func (r *StatusUpdatesListRequest) FlapDetection(value bool) *StatusUpdatesListRequest { + r.flapDetection = &value + return r +} + // FullNames sets the value of the 'full_names' parameter. func (r *StatusUpdatesListRequest) FullNames(value string) *StatusUpdatesListRequest { r.fullNames = &value @@ -320,6 +327,9 @@ func (r *StatusUpdatesListRequest) SendContext(ctx context.Context) (result *Sta if r.createdBefore != nil { helpers.AddValue(&query, "created_before", *r.createdBefore) } + if r.flapDetection != nil { + helpers.AddValue(&query, "flap_detection", *r.flapDetection) + } if r.fullNames != nil { helpers.AddValue(&query, "full_names", *r.fullNames) }