mirror of https://github.com/databricks/cli.git
61 lines
1.4 KiB
Go
61 lines
1.4 KiB
Go
package resources
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/url"
|
|
|
|
"github.com/databricks/cli/libs/log"
|
|
"github.com/databricks/databricks-sdk-go"
|
|
"github.com/databricks/databricks-sdk-go/marshal"
|
|
"github.com/databricks/databricks-sdk-go/service/ml"
|
|
)
|
|
|
|
type MlflowModel struct {
|
|
ID string `json:"id,omitempty" bundle:"readonly"`
|
|
Permissions []Permission `json:"permissions,omitempty"`
|
|
ModifiedStatus ModifiedStatus `json:"modified_status,omitempty" bundle:"internal"`
|
|
URL string `json:"url,omitempty" bundle:"internal"`
|
|
|
|
*ml.Model
|
|
}
|
|
|
|
func (s *MlflowModel) UnmarshalJSON(b []byte) error {
|
|
return marshal.Unmarshal(b, s)
|
|
}
|
|
|
|
func (s MlflowModel) MarshalJSON() ([]byte, error) {
|
|
return marshal.Marshal(s)
|
|
}
|
|
|
|
func (s *MlflowModel) Exists(ctx context.Context, w *databricks.WorkspaceClient, id string) (bool, error) {
|
|
_, err := w.ModelRegistry.GetModel(ctx, ml.GetModelRequest{
|
|
Name: id,
|
|
})
|
|
if err != nil {
|
|
log.Debugf(ctx, "model %s does not exist", id)
|
|
return false, err
|
|
}
|
|
return true, nil
|
|
}
|
|
|
|
func (s *MlflowModel) TerraformResourceName() string {
|
|
return "databricks_mlflow_model"
|
|
}
|
|
|
|
func (s *MlflowModel) InitializeURL(baseURL url.URL) {
|
|
if s.ID == "" {
|
|
return
|
|
}
|
|
baseURL.Path = fmt.Sprintf("ml/models/%s", s.ID)
|
|
s.URL = baseURL.String()
|
|
}
|
|
|
|
func (s *MlflowModel) GetName() string {
|
|
return s.Name
|
|
}
|
|
|
|
func (s *MlflowModel) GetURL() string {
|
|
return s.URL
|
|
}
|