github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/dashboard/dashboardevents/execution_complete.go (about)

     1  package dashboardevents
     2  
     3  import (
     4  	"time"
     5  
     6  	"github.com/turbot/steampipe/pkg/dashboard/dashboardtypes"
     7  )
     8  
     9  type ExecutionComplete struct {
    10  	Root        dashboardtypes.DashboardTreeRun
    11  	Session     string
    12  	ExecutionId string
    13  	Panels      map[string]dashboardtypes.SnapshotPanel
    14  	Inputs      map[string]interface{}
    15  	Variables   map[string]string
    16  	SearchPath  []string
    17  	StartTime   time.Time
    18  	EndTime     time.Time
    19  }
    20  
    21  // IsDashboardEvent implements DashboardEvent interface
    22  func (*ExecutionComplete) IsDashboardEvent() {}