diff --git a/temporalcli/commands.gen.go b/temporalcli/commands.gen.go index a73a480c4..9928d645d 100644 --- a/temporalcli/commands.gen.go +++ b/temporalcli/commands.gen.go @@ -1248,7 +1248,7 @@ func NewTemporalOperatorNexusCommand(cctx *CommandContext, parent *TemporalOpera var s TemporalOperatorNexusCommand s.Parent = parent s.Command.Use = "nexus" - s.Command.Short = "Commands for managing Nexus resources (EXPERIMENTAL)" + s.Command.Short = "Commands for managing Nexus resources" if hasHighlighting { s.Command.Long = "These commands manage Nexus resources.\n\nNexus commands follow this syntax:\n\n\x1b[1mtemporal operator nexus [command] [subcommand] [options]\x1b[0m" } else { @@ -1268,7 +1268,7 @@ func NewTemporalOperatorNexusEndpointCommand(cctx *CommandContext, parent *Tempo var s TemporalOperatorNexusEndpointCommand s.Parent = parent s.Command.Use = "endpoint" - s.Command.Short = "Commands for managing Nexus Endpoints (EXPERIMENTAL)" + s.Command.Short = "Commands for managing Nexus Endpoints" if hasHighlighting { s.Command.Long = "These commands manage Nexus Endpoints.\n\nNexus Endpoint commands follow this syntax:\n\n\x1b[1mtemporal operator nexus endpoint [command] [options]\x1b[0m" } else { @@ -1295,7 +1295,7 @@ func NewTemporalOperatorNexusEndpointCreateCommand(cctx *CommandContext, parent s.Parent = parent s.Command.DisableFlagsInUseLine = true s.Command.Use = "create [flags]" - s.Command.Short = "Create a Nexus Endpoint (EXPERIMENTAL)" + s.Command.Short = "Create a Nexus Endpoint" if hasHighlighting { s.Command.Long = "Create a Nexus Endpoint on the Server.\n\nA Nexus Endpoint name is used in Workflow code to invoke Nexus Operations.\nThe endpoint target may either be a Worker, in which case\n\x1b[1m--target-namespace\x1b[0m and \x1b[1m--target-task-queue\x1b[0m must both be provided, or\nan external URL, in which case \x1b[1m--target-url\x1b[0m must be provided.\n\nThis command will fail if an Endpoint with the same name is already\nregistered.\n\n\x1b[1mtemporal operator nexus endpoint create \\\n --name your-endpoint \\\n --target-namespace your-namespace \\\n --target-task-queue your-task-queue \\\n --description-file DESCRIPTION.md\x1b[0m" } else { @@ -1323,7 +1323,7 @@ func NewTemporalOperatorNexusEndpointDeleteCommand(cctx *CommandContext, parent s.Parent = parent s.Command.DisableFlagsInUseLine = true s.Command.Use = "delete [flags]" - s.Command.Short = "Delete a Nexus Endpoint (EXPERIMENTAL)" + s.Command.Short = "Delete a Nexus Endpoint" if hasHighlighting { s.Command.Long = "Delete a Nexus Endpoint from the Server.\n\n\x1b[1mtemporal operator nexus endpoint delete --name your-endpoint\x1b[0m" } else { @@ -1376,7 +1376,7 @@ func NewTemporalOperatorNexusEndpointListCommand(cctx *CommandContext, parent *T s.Parent = parent s.Command.DisableFlagsInUseLine = true s.Command.Use = "list [flags]" - s.Command.Short = "List Nexus Endpoints (EXPERIMENTAL)" + s.Command.Short = "List Nexus Endpoints" if hasHighlighting { s.Command.Long = "List all Nexus Endpoints on the Server.\n\n\x1b[1mtemporal operator nexus endpoint list\x1b[0m" } else { @@ -1404,7 +1404,7 @@ func NewTemporalOperatorNexusEndpointUpdateCommand(cctx *CommandContext, parent s.Parent = parent s.Command.DisableFlagsInUseLine = true s.Command.Use = "update [flags]" - s.Command.Short = "Update an existing Nexus Endpoint (EXPERIMENTAL)" + s.Command.Short = "Update an existing Nexus Endpoint" if hasHighlighting { s.Command.Long = "Update an existing Nexus Endpoint on the Server.\n\nA Nexus Endpoint name is used in Workflow code to invoke Nexus Operations.\nThe Endpoint target may either be a Worker, in which case\n\x1b[1m--target-namespace\x1b[0m and \x1b[1m--target-task-queue\x1b[0m must both be provided, or\nan external URL, in which case \x1b[1m--target-url\x1b[0m must be provided.\n\nThe Endpoint is patched; existing fields for which flags are not provided\nare left as they were.\n\nUpdate only the target task queue:\n\n\x1b[1mtemporal operator nexus endpoint update \\\n --name your-endpoint \\\n --target-task-queue your-other-queue\x1b[0m\n\nUpdate only the description:\n\n\x1b[1mtemporal operator nexus endpoint update \\\n --name your-endpoint \\\n --description-file DESCRIPTION.md\x1b[0m" } else { diff --git a/temporalcli/commandsgen/commands.yml b/temporalcli/commandsgen/commands.yml index 67d2d3af9..090d56324 100644 --- a/temporalcli/commandsgen/commands.yml +++ b/temporalcli/commandsgen/commands.yml @@ -1179,7 +1179,7 @@ commands: Once enabled, can't be changed. - name: temporal operator nexus - summary: Commands for managing Nexus resources (EXPERIMENTAL) + summary: Commands for managing Nexus resources description: | These commands manage Nexus resources. @@ -1190,7 +1190,7 @@ commands: ``` - name: temporal operator nexus endpoint - summary: Commands for managing Nexus Endpoints (EXPERIMENTAL) + summary: Commands for managing Nexus Endpoints description: | These commands manage Nexus Endpoints. @@ -1201,7 +1201,7 @@ commands: ``` - name: temporal operator nexus endpoint create - summary: Create a Nexus Endpoint (EXPERIMENTAL) + summary: Create a Nexus Endpoint description: | Create a Nexus Endpoint on the Server. @@ -1224,7 +1224,7 @@ commands: - nexus-endpoint-identity - nexus-endpoint-config - name: temporal operator nexus endpoint delete - summary: Delete a Nexus Endpoint (EXPERIMENTAL) + summary: Delete a Nexus Endpoint description: | Delete a Nexus Endpoint from the Server. @@ -1246,7 +1246,7 @@ commands: - nexus-endpoint-identity - name: temporal operator nexus endpoint list - summary: List Nexus Endpoints (EXPERIMENTAL) + summary: List Nexus Endpoints description: | List all Nexus Endpoints on the Server. @@ -1255,7 +1255,7 @@ commands: ``` - name: temporal operator nexus endpoint update - summary: Update an existing Nexus Endpoint (EXPERIMENTAL) + summary: Update an existing Nexus Endpoint description: | Update an existing Nexus Endpoint on the Server.