Class CronJobStatus
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.batch.v1beta1.CronJobStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<CronJobStatusBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class CronJobStatus extends Object implements io.fabric8.kubernetes.api.builder.Editable<CronJobStatusBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
CronJobStatus represents the current state of a cron job.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CronJobStatus()No args constructor for use in serializationCronJobStatus(List<io.fabric8.kubernetes.api.model.ObjectReference> active, String lastScheduleTime, String lastSuccessfulTime)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CronJobStatusBuilderedit()List<io.fabric8.kubernetes.api.model.ObjectReference>getActive()A list of pointers to currently running jobs.Map<String,Object>getAdditionalProperties()StringgetLastScheduleTime()CronJobStatus represents the current state of a cron job.StringgetLastSuccessfulTime()CronJobStatus represents the current state of a cron job.voidsetActive(List<io.fabric8.kubernetes.api.model.ObjectReference> active)A list of pointers to currently running jobs.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetLastScheduleTime(String lastScheduleTime)CronJobStatus represents the current state of a cron job.voidsetLastSuccessfulTime(String lastSuccessfulTime)CronJobStatus represents the current state of a cron job.CronJobStatusBuildertoBuilder()
-
-
-
Method Detail
-
getActive
public List<io.fabric8.kubernetes.api.model.ObjectReference> getActive()
A list of pointers to currently running jobs.
-
setActive
public void setActive(List<io.fabric8.kubernetes.api.model.ObjectReference> active)
A list of pointers to currently running jobs.
-
getLastScheduleTime
public String getLastScheduleTime()
CronJobStatus represents the current state of a cron job.
-
setLastScheduleTime
public void setLastScheduleTime(String lastScheduleTime)
CronJobStatus represents the current state of a cron job.
-
getLastSuccessfulTime
public String getLastSuccessfulTime()
CronJobStatus represents the current state of a cron job.
-
setLastSuccessfulTime
public void setLastSuccessfulTime(String lastSuccessfulTime)
CronJobStatus represents the current state of a cron job.
-
edit
public CronJobStatusBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<CronJobStatusBuilder>
-
toBuilder
public CronJobStatusBuilder toBuilder()
-
-