databricks-cli/cmd/bundle/schema.go

25 lines
469 B
Go

package bundle
import (
_ "embed"
"github.com/databricks/cli/bundle/generated"
"github.com/databricks/cli/cmd/root"
"github.com/spf13/cobra"
)
func newSchemaCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "schema",
Short: "Generate JSON Schema for bundle configuration",
Args: root.NoArgs,
}
cmd.RunE = func(cmd *cobra.Command, args []string) error {
_, err := cmd.OutOrStdout().Write(generated.BundleSchema)
return err
}
return cmd
}