mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-22 14:00:14 -05:00
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.DashboardNodeRun
|
|
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() {}
|