File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
packages/clients/src/api/jobs/v1alpha1 Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,12 @@ export type ListJobDefinitionsRequestOrderBy =
1919export type ListJobRunsRequestOrderBy = 'created_at_asc' | 'created_at_desc'
2020
2121export interface CronSchedule {
22+ /** UNIX cron schedule to run job (e.g., '* * * * *'). */
2223 schedule : string
24+ /**
25+ * Timezone for the cron schedule, in tz database format (e.g.,
26+ * 'Europe/Paris').
27+ */
2328 timezone : string
2429}
2530
@@ -94,7 +99,10 @@ export type CreateJobDefinitionRequest = {
9499 localStorageCapacity ?: number
95100 /** Image to use for the job. */
96101 imageUri : string
97- /** Startup command. */
102+ /**
103+ * Startup command. If empty or not defined, the image's default command is
104+ * used.
105+ */
98106 command : string
99107 /** UUID of the Scaleway Project containing the job. */
100108 projectId ?: string
You can’t perform that action at this time.
0 commit comments