Files
steampipe/pkg/dashboard/dashboardevents/execution_complete.go
kaidaguerre fa18c8f0e2 Add support for node reuse. Update graph, flow and hierarchy to declare nodes and edges inline, rather than as a list of references. Closes #2871
Only top level resources can have with and param blocks. Closes #2872
Refactor resource and dashboard run hierarchies to use base impl structs. Closes #2873
2022-12-14 17:18:57 +00:00

23 lines
518 B
Go

package dashboardevents
import (
"time"
"github.com/turbot/steampipe/pkg/dashboard/dashboardtypes"
)
type ExecutionComplete struct {
Root dashboardtypes.DashboardTreeRun
Session string
ExecutionId string
Panels map[string]dashboardtypes.SnapshotPanel
Inputs map[string]interface{}
Variables map[string]string
SearchPath []string
StartTime time.Time
EndTime time.Time
}
// IsDashboardEvent implements DashboardEvent interface
func (*ExecutionComplete) IsDashboardEvent() {}