-
Notifications
You must be signed in to change notification settings - Fork 117
/
rename.go
48 lines (39 loc) · 1.03 KB
/
rename.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package service
import (
"github.com/rilldata/rill/cli/pkg/cmdutil"
"github.com/rilldata/rill/cli/pkg/config"
adminv1 "github.com/rilldata/rill/proto/gen/rill/admin/v1"
"github.com/spf13/cobra"
)
func RenameCmd(cfg *config.Config) *cobra.Command {
var newName string
renameCmd := &cobra.Command{
Use: "rename <service-name>",
Args: cobra.ExactArgs(1),
Short: "Rename service",
RunE: func(cmd *cobra.Command, args []string) error {
client, err := cmdutil.Client(cfg)
if err != nil {
return err
}
defer client.Close()
req := &adminv1.UpdateServiceRequest{
Name: args[0],
OrganizationName: cfg.Org,
}
if newName != "" {
req.NewName = &newName
}
res, err := client.UpdateService(cmd.Context(), req)
if err != nil {
return err
}
cmdutil.PrintlnSuccess("Renamed service")
cmdutil.TablePrinter(toRow(res.Service))
return nil
},
}
renameCmd.Flags().SortFlags = false
renameCmd.Flags().StringVar(&newName, "new-name", "", "New Service Name")
return renameCmd
}