databricks-cli/cmd/bundle/schema.go

25 lines
469 B
Go
Raw Normal View History

package bundle
import (
2024-08-27 11:46:52 +00:00
_ "embed"
2024-09-04 09:56:52 +00:00
"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 {
2024-09-04 09:56:52 +00:00
_, err := cmd.OutOrStdout().Write(generated.BundleSchema)
2024-08-27 11:46:52 +00:00
return err
}
return cmd
}