databricks-cli/bundle/config/variable/lookup_warehouse.go

25 lines
460 B
Go
Raw Normal View History

2024-11-20 21:40:33 +00:00
package variable
2024-11-20 21:40:43 +00:00
import (
"context"
"fmt"
"github.com/databricks/databricks-sdk-go"
)
type lookupWarehouse struct {
name string
}
func (l *lookupWarehouse) Resolve(ctx context.Context, w *databricks.WorkspaceClient) (string, error) {
entity, err := w.Warehouses.GetByName(ctx, l.name)
if err != nil {
return "", err
}
return fmt.Sprint(entity.Id), nil
}
func (l *lookupWarehouse) String() string {
return fmt.Sprintf("warehouse: %s", l.name)
}