Files
steampipe/pkg/dashboard/dashboardevents/execution_complete.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() {}