diff --git a/internal/temporalcli/commands.gen.go b/internal/temporalcli/commands.gen.go index ca95a64b2..5f9d423bb 100644 --- a/internal/temporalcli/commands.gen.go +++ b/internal/temporalcli/commands.gen.go @@ -2010,7 +2010,7 @@ func NewTemporalOperatorNamespaceDeleteCommand(cctx *CommandContext, parent *Tem s.Command.Long = "Removes a Namespace from the Service.\n\n```\ntemporal operator namespace delete [options]\n```\n\nFor example:\n\n```\ntemporal operator namespace delete \\\n --namespace YourNamespaceName\n```" } s.Command.Args = cobra.MaximumNArgs(1) - s.Command.Flags().BoolVarP(&s.Yes, "yes", "y", false, "Request confirmation before deletion.") + s.Command.Flags().BoolVarP(&s.Yes, "yes", "y", false, "Don't prompt to confirm deletion.") s.Command.Run = func(c *cobra.Command, args []string) { if err := s.run(cctx, args); err != nil { cctx.Options.Fail(err) diff --git a/internal/temporalcli/commands.yaml b/internal/temporalcli/commands.yaml index 542ded558..159c797e0 100644 --- a/internal/temporalcli/commands.yaml +++ b/internal/temporalcli/commands.yaml @@ -2355,7 +2355,7 @@ commands: - name: yes short: y type: bool - description: Request confirmation before deletion. + description: Don't prompt to confirm deletion. - name: temporal operator namespace describe summary: Describe a Namespace