in cmd/update.go [35:54]
func init() {
updatePasswordCmd.Flags().StringVarP(&email, "email", "e", "", "Email of username which to update")
updatePasswordCmd.MarkFlagRequired("email")
updatePasswordCmd.Flags().StringVarP(&newEmail, "new-email", "n", "", "New username email")
updatePasswordCmd.MarkFlagRequired("new-email")
updatePasswordCmd.Flags().StringVarP(&newPassword, "new-password", "p", "", "New username password")
updatePasswordCmd.MarkFlagRequired("new-password")
updatePasswordCmd.MarkFlagsRequiredTogether("email", "new-email", "new-password")
updateCmd.AddCommand(updatePasswordCmd)
updateOidcCmd.Flags().StringVarP(&clientId, "client-id", "c", "", "Client ID used to identify the client")
updateOidcCmd.MarkFlagRequired("client-id")
updateOidcCmd.Flags().StringArrayVarP(&redirectUris, "redirect-uris", "r", nil, "A registered set of redirect URIs")
updateOidcCmd.Flags().StringArrayVarP(&trustedPeers, "trusted-peers", "t", nil, "TrustedPeers are a list of peers which can issue tokens on this client's behalf using the dynamic scope")
updateOidcCmd.Flags().StringVarP(&name, "name", "n", "", "Name used when displaying this client to the end user")
updateOidcCmd.Flags().StringVarP(&logoUrl, "logo-url", "l", "", "LogoURL used when displaying this client to the end user")
updateCmd.AddCommand(updateOidcCmd)
rootCmd.AddCommand(updateCmd)
}