Documentation
¶
Index ¶
- func NewCreateCmd(f *cmdutil.Factory) *cobra.Command
- func NewDeleteCmd(f *cmdutil.Factory) *cobra.Command
- func NewGetCmd(f *cmdutil.Factory) *cobra.Command
- func NewGoLiveCmd(f *cmdutil.Factory) *cobra.Command
- func NewListCmd(f *cmdutil.Factory) *cobra.Command
- func NewPauseCmd(f *cmdutil.Factory) *cobra.Command
- func NewRunCmd(f *cmdutil.Factory) *cobra.Command
- func NewUpdateCmd(f *cmdutil.Factory) *cobra.Command
- func NewWorkflowCmd(f *cmdutil.Factory) *cobra.Command
- type Workflow
- type WorkflowDetail
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Workflow ¶
type Workflow struct {
ID string `json:"id"`
Name string `json:"name"`
Enabled bool `json:"enabled"`
Visibility string `json:"visibility"`
CreatedAt string `json:"createdAt"`
UpdatedAt string `json:"updatedAt"`
}
Workflow is the API response shape for a single workflow in the list.
type WorkflowDetail ¶
type WorkflowDetail struct {
ID string `json:"id"`
Name string `json:"name"`
Enabled bool `json:"enabled"`
Visibility string `json:"visibility"`
CreatedAt string `json:"createdAt"`
UpdatedAt string `json:"updatedAt"`
Nodes []interface{} `json:"nodes"`
Edges []interface{} `json:"edges"`
PublicTags []string `json:"publicTags,omitempty"`
}
WorkflowDetail extends Workflow with node/edge counts and tags.
Click to show internal directories.
Click to hide internal directories.