interface JobDefinition {
    command: string;
    cpuLimit: number;
    createdAt?: Date;
    cronSchedule?: Jobs.v1alpha1.CronSchedule;
    description: string;
    environmentVariables: Record<string, string>;
    id: string;
    imageUri: string;
    jobTimeout?: string;
    localStorageCapacity: number;
    memoryLimit: number;
    name: string;
    projectId: string;
    region: Region;
    updatedAt?: Date;
}

Properties

command: string
cpuLimit: number
createdAt?: Date
cronSchedule?: Jobs.v1alpha1.CronSchedule
description: string
environmentVariables: Record<string, string>
id: string
imageUri: string
jobTimeout?: string
localStorageCapacity: number
memoryLimit: number
name: string
projectId: string
region: Region

Region to target. If none is passed will use default region from the config.

updatedAt?: Date