mirror of https://github.com/databricks/cli.git
12 lines
318 B
Go
12 lines
318 B
Go
|
package config
|
||
|
|
||
|
// Environment defines overrides for a single environment.
|
||
|
// This structure is recursively merged into the root configuration.
|
||
|
type Environment struct {
|
||
|
Bundle *Bundle `json:"bundle,omitempty"`
|
||
|
|
||
|
Workspace *Workspace `json:"workspace,omitempty"`
|
||
|
|
||
|
Resources *Resources `json:"resources,omitempty"`
|
||
|
}
|