MCPcopy Create free account
hub / github.com/auth0/auth0-cli / eventStreamsCmd

Function eventStreamsCmd

internal/cli/event_streams.go:75–97  ·  view source on GitHub ↗
(cli *cli)

Source from the content-addressed store, hash-verified

73)
74
75func eventStreamsCmd(cli *cli) *cobra.Command {
76 cmd := &cobra.Command{
77 Use: "event-streams",
78 Short: "Manage Event Stream",
79 Long: "Events are a way for Auth0 customers to synchronize, correlate or orchestrate " +
80 "changes that occur within Auth0 or 3rd-party identity providers to your app or 3rd party services.",
81 }
82
83 cmd.SetUsageTemplate(resourceUsageTemplate())
84 cmd.AddCommand(listEventStreamsCmd(cli))
85 cmd.AddCommand(createEventStreamCmd(cli))
86 cmd.AddCommand(showEventStreamCmd(cli))
87 cmd.AddCommand(updateEventStreamCmd(cli))
88 cmd.AddCommand(deleteEventStreamCmd(cli))
89
90 cmd.AddCommand(triggerEventStreamCmd(cli))
91 cmd.AddCommand(deliveriesEventStreamCmd(cli))
92 cmd.AddCommand(redeliverEventStreamCmd(cli))
93 cmd.AddCommand(redeliverManyEventStreamCmd(cli))
94 cmd.AddCommand(statsEventStreamCmd(cli))
95 cmd.AddCommand(subscribeEventStreamCmd(cli))
96 return cmd
97}
98
99func listEventStreamsCmd(cli *cli) *cobra.Command {
100 cmd := &cobra.Command{

Callers 1

addSubCommandsFunction · 0.85

Calls 12

resourceUsageTemplateFunction · 0.85
listEventStreamsCmdFunction · 0.85
createEventStreamCmdFunction · 0.85
showEventStreamCmdFunction · 0.85
updateEventStreamCmdFunction · 0.85
deleteEventStreamCmdFunction · 0.85
triggerEventStreamCmdFunction · 0.85
deliveriesEventStreamCmdFunction · 0.85
redeliverEventStreamCmdFunction · 0.85
statsEventStreamCmdFunction · 0.85
subscribeEventStreamCmdFunction · 0.85

Tested by

no test coverage detected