mirror of https://github.com/databricks/cli.git
14 lines
315 B
Go
14 lines
315 B
Go
|
package config
|
||
|
|
||
|
type Bundle struct {
|
||
|
Name string `json:"name,omitempty"`
|
||
|
|
||
|
// TODO
|
||
|
// Default cluster to run commands on (Python, Scala).
|
||
|
// DefaultCluster string `json:"default_cluster,omitempty"`
|
||
|
|
||
|
// TODO
|
||
|
// Default warehouse to run SQL on.
|
||
|
// DefaultWarehouse string `json:"default_warehouse,omitempty"`
|
||
|
}
|