File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -137,8 +137,10 @@ func (enum *ListJobRunsRequestOrderBy) UnmarshalJSON(data []byte) error {
137137
138138// CronSchedule: cron schedule.
139139type CronSchedule struct {
140+ // Schedule: uNIX cron schedule to run job (e.g., '* * * * *').
140141Schedule string `json:"schedule"`
141142
143+ // Timezone: timezone for the cron schedule, in tz database format (e.g., 'Europe/Paris').
142144Timezone string `json:"timezone"`
143145}
144146
@@ -247,7 +249,7 @@ type CreateJobDefinitionRequest struct {
247249// ImageURI: image to use for the job.
248250ImageURI string `json:"image_uri"`
249251
250- // Command: startup command.
252+ // Command: startup command. If empty or not defined, the image's default command is used.
251253Command string `json:"command"`
252254
253255// ProjectID: UUID of the Scaleway Project containing the job.
You can’t perform that action at this time.
0 commit comments