From c0d51b758a9314c23c343a076c3bad75a9b6d769 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Apr 2024 21:57:37 -0700 Subject: [PATCH] Regenerate Swagger code 74e21bce (#44) Co-authored-by: FireHydrant Bot <44629778+firehydrant-ops@users.noreply.github.com> --- models/runbooks_execution_entity.go | 3 +++ models/runbooks_execution_step_entity.go | 3 +++ 2 files changed, 6 insertions(+) diff --git a/models/runbooks_execution_entity.go b/models/runbooks_execution_entity.go index 78f040d..5d412d0 100644 --- a/models/runbooks_execution_entity.go +++ b/models/runbooks_execution_entity.go @@ -32,6 +32,9 @@ type RunbooksExecutionEntity struct { // id ID string `json:"id,omitempty"` + // is closed + IsClosed bool `json:"is_closed,omitempty"` + // runbook Runbook *SlimRunbookEntity `json:"runbook,omitempty"` diff --git a/models/runbooks_execution_step_entity.go b/models/runbooks_execution_step_entity.go index 28962a9..760f34e 100644 --- a/models/runbooks_execution_step_entity.go +++ b/models/runbooks_execution_step_entity.go @@ -37,6 +37,9 @@ type RunbooksExecutionStepEntity struct { // execution Execution *RunbooksExecutionStepExecutionEntity `json:"execution,omitempty"` + // has been rerun + HasBeenRerun bool `json:"has_been_rerun,omitempty"` + // has been retried HasBeenRetried bool `json:"has_been_retried,omitempty"`