Cron Job Spec Patch
data class CronJobSpecPatch(val concurrencyPolicy: String? = null, val failedJobsHistoryLimit: Int? = null, val jobTemplate: JobTemplateSpecPatch? = null, val schedule: String? = null, val startingDeadlineSeconds: Int? = null, val successfulJobsHistoryLimit: Int? = null, val suspend: Boolean? = null)
CronJobSpec describes how the job execution will look like and when it will actually run.
Constructors
Link copied to clipboard
fun CronJobSpecPatch(concurrencyPolicy: String? = null, failedJobsHistoryLimit: Int? = null, jobTemplate: JobTemplateSpecPatch? = null, schedule: String? = null, startingDeadlineSeconds: Int? = null, successfulJobsHistoryLimit: Int? = null, suspend: Boolean? = null)