package ip_access_lists

import (
	"github.com/databricks/cli/libs/cmdio"
	"github.com/spf13/cobra"
)

func listOverride(listCmd *cobra.Command) {
	// this command still has no Web UI
	listCmd.Annotations["template"] = cmdio.Heredoc(`
	{{range .}}{{.ListId|green}}	{{.Label}}	{{join .IpAddresses ","}}	{{if eq .ListType "ALLOW"}}{{"ALLOW"|green}}{{else}}{{"BLOCK"|red}}{{end}}	{{if .Enabled}}{{"ENABLED"|green}}{{else}}{{"DISABLED"|red}}{{end}}
	{{end}}`)
}

func init() {
	listOverrides = append(listOverrides, listOverride)
}