mirror of https://github.com/databricks/cli.git
25 lines
470 B
Go
25 lines
470 B
Go
package variable
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/databricks/databricks-sdk-go"
|
|
)
|
|
|
|
type resolveMetastore struct {
|
|
name string
|
|
}
|
|
|
|
func (l resolveMetastore) Resolve(ctx context.Context, w *databricks.WorkspaceClient) (string, error) {
|
|
entity, err := w.Metastores.GetByName(ctx, l.name)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return fmt.Sprint(entity.MetastoreId), nil
|
|
}
|
|
|
|
func (l resolveMetastore) String() string {
|
|
return fmt.Sprintf("metastore: %s", l.name)
|
|
}
|