databricks-cli/bundle/config/resources/pipeline.go

16 lines
329 B
Go
Raw Normal View History

package resources
import (
"github.com/databricks/cli/bundle/config/paths"
"github.com/databricks/databricks-sdk-go/service/pipelines"
)
2022-11-18 10:12:24 +00:00
type Pipeline struct {
ID string `json:"id,omitempty" bundle:"readonly"`
Permissions []Permission `json:"permissions,omitempty"`
2022-11-18 10:12:24 +00:00
paths.Paths
2022-11-18 10:12:24 +00:00
*pipelines.PipelineSpec
}