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 {
137
137
138
138
// CronSchedule: cron schedule.
139
139
type CronSchedule struct {
140
+ // Schedule: uNIX cron schedule to run job (e.g., '* * * * *').
140
141
Schedule string `json:"schedule"`
141
142
143
+ // Timezone: timezone for the cron schedule, in tz database format (e.g., 'Europe/Paris').
142
144
Timezone string `json:"timezone"`
143
145
}
144
146
@@ -247,7 +249,7 @@ type CreateJobDefinitionRequest struct {
247
249
// ImageURI: image to use for the job.
248
250
ImageURI string `json:"image_uri"`
249
251
250
- // Command: startup command.
252
+ // Command: startup command. If empty or not defined, the image's default command is used.
251
253
Command string `json:"command"`
252
254
253
255
// ProjectID: UUID of the Scaleway Project containing the job.
You can’t perform that action at this time.
0 commit comments