mirror of
https://github.com/LukeHagar/sailpoint-cli.git
synced 2025-12-06 12:47:44 +00:00
34 lines
802 B
Go
34 lines
802 B
Go
// Copyright (c) 2023, SailPoint Technologies, Inc. All rights reserved.
|
|
package connector
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/sailpoint-oss/sailpoint-cli/internal/client"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func newConnCustomizersCmd(client client.Client) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "customizers",
|
|
Short: "Manage connector customizers",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
_, _ = fmt.Fprintf(cmd.OutOrStdout(), cmd.UsageString())
|
|
},
|
|
}
|
|
|
|
cmd.AddCommand(
|
|
newCustomizerInitCmd(),
|
|
newCustomizerListCmd(client),
|
|
newCustomizerCreateCmd(client),
|
|
newCustomizerGetCmd(client),
|
|
newCustomizerUpdateCmd(client),
|
|
newCustomizerDeleteCmd(client),
|
|
newCustomizerCreateVersionCmd(client),
|
|
newCustomizerLinkCmd(client),
|
|
newCustomizerUnlinkCmd(client),
|
|
)
|
|
|
|
return cmd
|
|
}
|