mirror of https://github.com/databricks/cli.git
281 lines
8.7 KiB
Go
Executable File
281 lines
8.7 KiB
Go
Executable File
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
|
|
|
|
package functions
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/databricks/bricks/cmd/root"
|
|
"github.com/databricks/bricks/libs/cmdio"
|
|
"github.com/databricks/bricks/libs/flags"
|
|
"github.com/databricks/databricks-sdk-go/service/catalog"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var Cmd = &cobra.Command{
|
|
Use: "functions",
|
|
Short: `Functions implement User-Defined Functions (UDFs) in Unity Catalog.`,
|
|
Long: `Functions implement User-Defined Functions (UDFs) in Unity Catalog.
|
|
|
|
The function implementation can be any SQL expression or Query, and it can be
|
|
invoked wherever a table reference is allowed in a query. In Unity Catalog, a
|
|
function resides at the same level as a table, so it can be referenced with
|
|
the form __catalog_name__.__schema_name__.__function_name__.`,
|
|
}
|
|
|
|
// start create command
|
|
|
|
var createReq catalog.CreateFunction
|
|
var createJson flags.JsonFlag
|
|
|
|
func init() {
|
|
Cmd.AddCommand(createCmd)
|
|
// TODO: short flags
|
|
createCmd.Flags().Var(&createJson, "json", `either inline JSON string or @path/to/file.json with request body`)
|
|
|
|
createCmd.Flags().StringVar(&createReq.Comment, "comment", createReq.Comment, `User-provided free-form text description.`)
|
|
createCmd.Flags().StringVar(&createReq.ExternalLanguage, "external-language", createReq.ExternalLanguage, `External function language.`)
|
|
createCmd.Flags().StringVar(&createReq.ExternalName, "external-name", createReq.ExternalName, `External function name.`)
|
|
// TODO: map via StringToStringVar: properties
|
|
createCmd.Flags().StringVar(&createReq.SqlPath, "sql-path", createReq.SqlPath, `List of schemes whose objects can be referenced without qualification.`)
|
|
|
|
}
|
|
|
|
var createCmd = &cobra.Command{
|
|
Use: "create",
|
|
Short: `Create a function.`,
|
|
Long: `Create a function.
|
|
|
|
Creates a new function
|
|
|
|
The user must have the following permissions in order for the function to be
|
|
created: - **USE_CATALOG** on the function's parent catalog - **USE_SCHEMA**
|
|
and **CREATE_FUNCTION** on the function's parent schema`,
|
|
|
|
Annotations: map[string]string{},
|
|
PreRunE: root.MustWorkspaceClient,
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
ctx := cmd.Context()
|
|
w := root.WorkspaceClient(ctx)
|
|
err = createJson.Unmarshal(&createReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
createReq.Name = args[0]
|
|
createReq.CatalogName = args[1]
|
|
createReq.SchemaName = args[2]
|
|
_, err = fmt.Sscan(args[3], &createReq.InputParams)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid INPUT_PARAMS: %s", args[3])
|
|
}
|
|
_, err = fmt.Sscan(args[4], &createReq.DataType)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid DATA_TYPE: %s", args[4])
|
|
}
|
|
createReq.FullDataType = args[5]
|
|
_, err = fmt.Sscan(args[6], &createReq.ReturnParams)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid RETURN_PARAMS: %s", args[6])
|
|
}
|
|
_, err = fmt.Sscan(args[7], &createReq.RoutineBody)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid ROUTINE_BODY: %s", args[7])
|
|
}
|
|
createReq.RoutineDefinition = args[8]
|
|
_, err = fmt.Sscan(args[9], &createReq.RoutineDependencies)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid ROUTINE_DEPENDENCIES: %s", args[9])
|
|
}
|
|
_, err = fmt.Sscan(args[10], &createReq.ParameterStyle)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid PARAMETER_STYLE: %s", args[10])
|
|
}
|
|
_, err = fmt.Sscan(args[11], &createReq.IsDeterministic)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid IS_DETERMINISTIC: %s", args[11])
|
|
}
|
|
_, err = fmt.Sscan(args[12], &createReq.SqlDataAccess)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid SQL_DATA_ACCESS: %s", args[12])
|
|
}
|
|
_, err = fmt.Sscan(args[13], &createReq.IsNullCall)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid IS_NULL_CALL: %s", args[13])
|
|
}
|
|
_, err = fmt.Sscan(args[14], &createReq.SecurityType)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid SECURITY_TYPE: %s", args[14])
|
|
}
|
|
createReq.SpecificName = args[15]
|
|
|
|
response, err := w.Functions.Create(ctx, createReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return cmdio.Render(ctx, response)
|
|
},
|
|
}
|
|
|
|
// start delete command
|
|
|
|
var deleteReq catalog.DeleteFunctionRequest
|
|
|
|
func init() {
|
|
Cmd.AddCommand(deleteCmd)
|
|
// TODO: short flags
|
|
|
|
deleteCmd.Flags().BoolVar(&deleteReq.Force, "force", deleteReq.Force, `Force deletion even if the function is notempty.`)
|
|
|
|
}
|
|
|
|
var deleteCmd = &cobra.Command{
|
|
Use: "delete NAME",
|
|
Short: `Delete a function.`,
|
|
Long: `Delete a function.
|
|
|
|
Deletes the function that matches the supplied name. For the deletion to
|
|
succeed, the user must satisfy one of the following conditions: - Is the owner
|
|
of the function's parent catalog - Is the owner of the function's parent
|
|
schema and have the **USE_CATALOG** privilege on its parent catalog - Is the
|
|
owner of the function itself and have both the **USE_CATALOG** privilege on
|
|
its parent catalog and the **USE_SCHEMA** privilege on its parent schema`,
|
|
|
|
Annotations: map[string]string{},
|
|
Args: cobra.ExactArgs(1),
|
|
PreRunE: root.MustWorkspaceClient,
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
ctx := cmd.Context()
|
|
w := root.WorkspaceClient(ctx)
|
|
deleteReq.Name = args[0]
|
|
|
|
err = w.Functions.Delete(ctx, deleteReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
|
|
// start get command
|
|
|
|
var getReq catalog.GetFunctionRequest
|
|
|
|
func init() {
|
|
Cmd.AddCommand(getCmd)
|
|
// TODO: short flags
|
|
|
|
}
|
|
|
|
var getCmd = &cobra.Command{
|
|
Use: "get NAME",
|
|
Short: `Get a function.`,
|
|
Long: `Get a function.
|
|
|
|
Gets a function from within a parent catalog and schema. For the fetch to
|
|
succeed, the user must satisfy one of the following requirements: - Is a
|
|
metastore admin - Is an owner of the function's parent catalog - Have the
|
|
**USE_CATALOG** privilege on the function's parent catalog and be the owner of
|
|
the function - Have the **USE_CATALOG** privilege on the function's parent
|
|
catalog, the **USE_SCHEMA** privilege on the function's parent schema, and the
|
|
**EXECUTE** privilege on the function itself`,
|
|
|
|
Annotations: map[string]string{},
|
|
Args: cobra.ExactArgs(1),
|
|
PreRunE: root.MustWorkspaceClient,
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
ctx := cmd.Context()
|
|
w := root.WorkspaceClient(ctx)
|
|
getReq.Name = args[0]
|
|
|
|
response, err := w.Functions.Get(ctx, getReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return cmdio.Render(ctx, response)
|
|
},
|
|
}
|
|
|
|
// start list command
|
|
|
|
var listReq catalog.ListFunctionsRequest
|
|
|
|
func init() {
|
|
Cmd.AddCommand(listCmd)
|
|
// TODO: short flags
|
|
|
|
}
|
|
|
|
var listCmd = &cobra.Command{
|
|
Use: "list CATALOG_NAME SCHEMA_NAME",
|
|
Short: `List functions.`,
|
|
Long: `List functions.
|
|
|
|
List functions within the specified parent catalog and schema. If the user is
|
|
a metastore admin, all functions are returned in the output list. Otherwise,
|
|
the user must have the **USE_CATALOG** privilege on the catalog and the
|
|
**USE_SCHEMA** privilege on the schema, and the output list contains only
|
|
functions for which either the user has the **EXECUTE** privilege or the user
|
|
is the owner. There is no guarantee of a specific ordering of the elements in
|
|
the array.`,
|
|
|
|
Annotations: map[string]string{},
|
|
Args: cobra.ExactArgs(2),
|
|
PreRunE: root.MustWorkspaceClient,
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
ctx := cmd.Context()
|
|
w := root.WorkspaceClient(ctx)
|
|
listReq.CatalogName = args[0]
|
|
listReq.SchemaName = args[1]
|
|
|
|
response, err := w.Functions.List(ctx, listReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return cmdio.Render(ctx, response)
|
|
},
|
|
}
|
|
|
|
// start update command
|
|
|
|
var updateReq catalog.UpdateFunction
|
|
|
|
func init() {
|
|
Cmd.AddCommand(updateCmd)
|
|
// TODO: short flags
|
|
|
|
updateCmd.Flags().StringVar(&updateReq.Owner, "owner", updateReq.Owner, `Username of current owner of function.`)
|
|
|
|
}
|
|
|
|
var updateCmd = &cobra.Command{
|
|
Use: "update NAME",
|
|
Short: `Update a function.`,
|
|
Long: `Update a function.
|
|
|
|
Updates the function that matches the supplied name. Only the owner of the
|
|
function can be updated. If the user is not a metastore admin, the user must
|
|
be a member of the group that is the new function owner. - Is a metastore
|
|
admin - Is the owner of the function's parent catalog - Is the owner of the
|
|
function's parent schema and has the **USE_CATALOG** privilege on its parent
|
|
catalog - Is the owner of the function itself and has the **USE_CATALOG**
|
|
privilege on its parent catalog as well as the **USE_SCHEMA** privilege on the
|
|
function's parent schema.`,
|
|
|
|
Annotations: map[string]string{},
|
|
Args: cobra.ExactArgs(1),
|
|
PreRunE: root.MustWorkspaceClient,
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
ctx := cmd.Context()
|
|
w := root.WorkspaceClient(ctx)
|
|
updateReq.Name = args[0]
|
|
|
|
response, err := w.Functions.Update(ctx, updateReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return cmdio.Render(ctx, response)
|
|
},
|
|
}
|
|
|
|
// end service Functions
|