mirror of https://github.com/databricks/cli.git
18 lines
408 B
Go
18 lines
408 B
Go
|
package resources
|
||
|
|
||
|
import "github.com/databricks/cli/bundle"
|
||
|
|
||
|
// Completions returns the same as [References] except
|
||
|
// that every key maps directly to a single reference.
|
||
|
func Completions(b *bundle.Bundle) map[string]Reference {
|
||
|
out := make(map[string]Reference)
|
||
|
keyOnlyRefs, _ := References(b)
|
||
|
for k, refs := range keyOnlyRefs {
|
||
|
if len(refs) != 1 {
|
||
|
continue
|
||
|
}
|
||
|
out[k] = refs[0]
|
||
|
}
|
||
|
return out
|
||
|
}
|