Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 27 additions & 17 deletions internal/temporalcli/commands.gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,19 @@ func (v *ScheduleIdOptions) BuildFlags(f *pflag.FlagSet) {
}

type ScheduleConfigurationOptions struct {
Calendar []string
CatchupWindow cliext.FlagDuration
Cron []string
EndTime cliext.FlagTimestamp
Interval []string
Jitter cliext.FlagDuration
Notes string
Paused bool
PauseOnFailure bool
RemainingActions int
StartTime cliext.FlagTimestamp
TimeZone string
ScheduleSearchAttribute []string
ScheduleMemo []string
FlagSet *pflag.FlagSet
Calendar []string
CatchupWindow cliext.FlagDuration
Cron []string
EndTime cliext.FlagTimestamp
Interval []string
Jitter cliext.FlagDuration
Notes string
Paused bool
PauseOnFailure bool
RemainingActions int
StartTime cliext.FlagTimestamp
TimeZone string
FlagSet *pflag.FlagSet
}

func (v *ScheduleConfigurationOptions) BuildFlags(f *pflag.FlagSet) {
Expand All @@ -72,6 +70,16 @@ func (v *ScheduleConfigurationOptions) BuildFlags(f *pflag.FlagSet) {
f.IntVar(&v.RemainingActions, "remaining-actions", 0, "Total allowed actions. Default is zero (unlimited).")
f.Var(&v.StartTime, "start-time", "Schedule start time.")
f.StringVar(&v.TimeZone, "time-zone", "", "Interpret calendar specs with the `TZ` time zone. For a list of time zones, see: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones.")
}

type ScheduleCreateOnlyOptions struct {
ScheduleSearchAttribute []string
ScheduleMemo []string
FlagSet *pflag.FlagSet
}

func (v *ScheduleCreateOnlyOptions) BuildFlags(f *pflag.FlagSet) {
v.FlagSet = f
f.StringArrayVar(&v.ScheduleSearchAttribute, "schedule-search-attribute", nil, "Set schedule Search Attributes using `KEY=\"VALUE` pairs. Keys must be identifiers, and values must be JSON values. For example: 'YourKey={\"your\": \"value\"}'. Can be passed multiple times.")
f.StringArrayVar(&v.ScheduleMemo, "schedule-memo", nil, "Set schedule memo using `KEY=\"VALUE` pairs. Keys must be identifiers, and values must be JSON values. For example: 'YourKey={\"your\": \"value\"}'. Can be passed multiple times.")
}
Expand Down Expand Up @@ -1821,6 +1829,7 @@ type TemporalScheduleCreateCommand struct {
Parent *TemporalScheduleCommand
Command cobra.Command
ScheduleConfigurationOptions
ScheduleCreateOnlyOptions
ScheduleIdOptions
OverlapPolicyOptions
SharedWorkflowStartOptions
Expand All @@ -1840,6 +1849,7 @@ func NewTemporalScheduleCreateCommand(cctx *CommandContext, parent *TemporalSche
}
s.Command.Args = cobra.NoArgs
s.ScheduleConfigurationOptions.BuildFlags(s.Command.Flags())
s.ScheduleCreateOnlyOptions.BuildFlags(s.Command.Flags())
s.ScheduleIdOptions.BuildFlags(s.Command.Flags())
s.OverlapPolicyOptions.BuildFlags(s.Command.Flags())
s.SharedWorkflowStartOptions.BuildFlags(s.Command.Flags())
Expand Down Expand Up @@ -2019,9 +2029,9 @@ func NewTemporalScheduleUpdateCommand(cctx *CommandContext, parent *TemporalSche
s.Command.Use = "update [flags]"
s.Command.Short = "Update Schedule details"
if hasHighlighting {
s.Command.Long = "Update an existing Schedule with new configuration details, including time\nspecifications, action, and policies:\n\n\x1b[1mtemporal schedule update \\\n --schedule-id \"YourScheduleId\" \\\n --workflow-type \"NewWorkflowType\"\x1b[0m"
s.Command.Long = "Update an existing Schedule with new configuration details, including time\nspecifications, action, and policies:\n\n\x1b[1mtemporal schedule update \\\n --schedule-id \"YourScheduleId\" \\\n --workflow-type \"NewWorkflowType\"\x1b[0m\n\nThis command performs a full replacement of the Schedule\nconfiguration. Any options not provided will be reset to their default\nvalues. You must re-specify all options, not just the ones you want to\nchange. To view the current configuration of a Schedule, use\n\x1b[1mtemporal schedule describe\x1b[0m before updating.\n\nSchedule memo and search attributes cannot be updated with this\ncommand. They are set only during Schedule creation and are not affected\nby updates."
} else {
s.Command.Long = "Update an existing Schedule with new configuration details, including time\nspecifications, action, and policies:\n\n```\ntemporal schedule update \\\n --schedule-id \"YourScheduleId\" \\\n --workflow-type \"NewWorkflowType\"\n```"
s.Command.Long = "Update an existing Schedule with new configuration details, including time\nspecifications, action, and policies:\n\n```\ntemporal schedule update \\\n --schedule-id \"YourScheduleId\" \\\n --workflow-type \"NewWorkflowType\"\n```\n\nThis command performs a full replacement of the Schedule\nconfiguration. Any options not provided will be reset to their default\nvalues. You must re-specify all options, not just the ones you want to\nchange. To view the current configuration of a Schedule, use\n`temporal schedule describe` before updating.\n\nSchedule memo and search attributes cannot be updated with this\ncommand. They are set only during Schedule creation and are not affected\nby updates."
}
s.Command.Args = cobra.NoArgs
s.ScheduleConfigurationOptions.BuildFlags(s.Command.Flags())
Expand Down
14 changes: 14 additions & 0 deletions internal/temporalcli/commands.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2122,6 +2122,7 @@ commands:
For example, every Friday at 12:30 PM: `30 12 * * Fri`.
option-sets:
- schedule-configuration
- schedule-create-only
- schedule-id
- overlap-policy
- shared-workflow-start
Expand Down Expand Up @@ -2240,6 +2241,16 @@ commands:
--schedule-id "YourScheduleId" \
--workflow-type "NewWorkflowType"
```

This command performs a full replacement of the Schedule
configuration. Any options not provided will be reset to their default
values. You must re-specify all options, not just the ones you want to
change. To view the current configuration of a Schedule, use
`temporal schedule describe` before updating.

Schedule memo and search attributes cannot be updated with this
command. They are set only during Schedule creation and are not affected
by updates.
option-sets:
- schedule-configuration
- schedule-id
Expand Down Expand Up @@ -4351,6 +4362,9 @@ option-sets:
Interpret calendar specs with the `TZ` time zone.
For a list of time zones, see:
https://en.wikipedia.org/wiki/List_of_tz_database_time_zones.

- name: schedule-create-only
options:
- name: schedule-search-attribute
type: string[]
description: |
Expand Down
Loading