mirror of https://github.com/databricks/cli.git
12 lines
317 B
Go
12 lines
317 B
Go
package config
|
|
|
|
import (
|
|
"github.com/databricks/bricks/bundle/config/resources"
|
|
)
|
|
|
|
// Resources defines Databricks resources associated with the bundle.
|
|
type Resources struct {
|
|
Jobs map[string]*resources.Job `json:"jobs,omitempty"`
|
|
Pipelines map[string]*resources.Pipeline `json:"pipelines,omitempty"`
|
|
}
|