UpdateJobDefinitionRequest: {
    command?: string;
    cpuLimit?: number;
    cronSchedule?: Jobs.v1alpha1.UpdateJobDefinitionRequestCronScheduleConfig;
    description?: string;
    environmentVariables?: Record<string, string>;
    imageUri?: string;
    jobDefinitionId: string;
    jobTimeout?: string;
    localStorageCapacity?: number;
    memoryLimit?: number;
    name?: string;
    region?: Region;
}

Type declaration

  • Optionalcommand?: string

    Startup command.

  • OptionalcpuLimit?: number

    CPU limit of the job.

  • OptionalcronSchedule?: Jobs.v1alpha1.UpdateJobDefinitionRequestCronScheduleConfig
  • Optionaldescription?: string

    Description of the job.

  • OptionalenvironmentVariables?: Record<string, string>

    Environment variables of the job.

  • OptionalimageUri?: string

    Image to use for the job.

  • jobDefinitionId: string

    UUID of the job definition to update.

  • OptionaljobTimeout?: string

    Timeout of the job in seconds.

  • OptionallocalStorageCapacity?: number

    Local storage capacity of the job (in MiB).

  • OptionalmemoryLimit?: number

    Memory limit of the job (in MiB).

  • Optionalname?: string

    Name of the job definition.

  • Optionalregion?: Region

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