io.k8s.api.batch.v1.CronJobStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s131 Show documentation
Show all versions of bl-k8s131 Show documentation
Programmatic resource management for Kubernetes
The newest version!
package io.k8s.api.batch.v1;
import io.k8s.api.core.v1.ObjectReference;
import java.lang.String;
import java.util.List;
/**
* CronJobStatus represents the current state of a cron job.
*/
public class CronJobStatus {
public List active;
public String lastScheduleTime;
public String lastSuccessfulTime;
/**
* A list of pointers to currently running jobs.
*/
public CronJobStatus active(List active) {
this.active = active;
return this;
}
/**
* Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
*/
public CronJobStatus lastScheduleTime(String lastScheduleTime) {
this.lastScheduleTime = lastScheduleTime;
return this;
}
/**
* Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
*/
public CronJobStatus lastSuccessfulTime(String lastSuccessfulTime) {
this.lastSuccessfulTime = lastSuccessfulTime;
return this;
}
public static CronJobStatus cronJobStatus() {
return new CronJobStatus();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy