Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Module = fx.Options( fx.Invoke(Register), fx.Provide(NewService), )
Module for fx.
Functions ¶
Types ¶
type CreatePipelineRequest ¶
type CreatePipelineRequest struct {
Pipeline *Pipeline `json:"pipeline,omitempty"`
}
CreatePipelineRequest with a definition.
type CreatePipelineResponse ¶
type CreatePipelineResponse struct { Meta map[string]string `json:"meta,omitempty"` Pipeline *Pipeline `json:"pipeline,omitempty"` }
CreatePipelineResponse a map of meta and the new pipeline.
type DeletePipelineResponse ¶
type DeletePipelineResponse struct { Meta map[string]string `json:"meta,omitempty"` Pipeline *Pipeline `json:"pipeline,omitempty"` }
DeletePipelineResponse a map of meta and the updated pipeline.
type GetPipelineResponse ¶
type GetPipelineResponse struct { Meta map[string]string `json:"meta,omitempty"` Pipeline *Pipeline `json:"pipeline,omitempty"` }
GetPipelineResponse a map of meta and the pipeline.
type Pipeline ¶
type Pipeline struct { Name string `json:"name,omitempty"` Jobs []*Job `json:"jobs,omitempty"` ID uint64 `json:"id,omitempty"` }
Pipeline to be executed.
type TriggerPipelineResponse ¶ added in v0.11.0
type TriggerPipelineResponse struct { Meta map[string]string `json:"meta,omitempty"` Pipeline *Pipeline `json:"pipeline,omitempty"` }
TriggerPipelineResponse a map of meta and the pipeline with the output in steps.
type UpdatePipelineRequest ¶
type UpdatePipelineRequest struct {
Pipeline *Pipeline `json:"pipeline,omitempty"`
}
UpdatePipelineRequest with a definition.
type UpdatePipelineResponse ¶
type UpdatePipelineResponse struct { Meta map[string]string `json:"meta,omitempty"` Pipeline *Pipeline `json:"pipeline,omitempty"` }
UpdatePipelineResponse a map of meta and the updated pipeline.
Click to show internal directories.
Click to hide internal directories.