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/pipelines"
|
|
)
|
|
|
|
type Pipeline 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"`
|
|
|
|
*pipelines.PipelineSpec
|
|
}
|
|
|
|
func (s *Pipeline) UnmarshalJSON(b []byte) error {
|
|
return marshal.Unmarshal(b, s)
|
|
}
|
|
|
|
func (s Pipeline) MarshalJSON() ([]byte, error) {
|
|
return marshal.Marshal(s)
|
|
}
|
|
|
|
func (p *Pipeline) Exists(ctx context.Context, w *databricks.WorkspaceClient, id string) (bool, error) {
|
|
_, err := w.Pipelines.Get(ctx, pipelines.GetPipelineRequest{
|
|
PipelineId: id,
|
|
})
|
|
if err != nil {
|
|
log.Debugf(ctx, "pipeline %s does not exist", id)
|
|
return false, err
|
|
}
|
|
return true, nil
|
|
}
|
|
|
|
func (p *Pipeline) TerraformResourceName() string {
|
|
return "databricks_pipeline"
|
|
}
|
|
|
|
func (p *Pipeline) InitializeURL(baseURL url.URL) {
|
|
if p.ID == "" {
|
|
return
|
|
}
|
|
baseURL.Path = fmt.Sprintf("pipelines/%s", p.ID)
|
|
p.URL = baseURL.String()
|
|
}
|
|
|
|
func (p *Pipeline) GetName() string {
|
|
return p.Name
|
|
}
|
|
|
|
func (s *Pipeline) GetURL() string {
|
|
return s.URL
|
|
}
|