mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-18 13:00:10 -05:00
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
23 lines
518 B
Go
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() {}
|