var Cmd = &cobra.Command{
Use: "idps",
Aliases: []string{"idp"},
Short: "List cluster IDPs",
Long: "List identity providers for a cluster.",
Example: ` # List all identity providers on a cluster named "mycluster"
rosa list idps --cluster=mycluster`,
Run: run,
Args: cobra.NoArgs,
}