case class CronJobStatus(active: Optional[Vector[ObjectReference]] = Optional.Absent, lastScheduleTime: Optional[Time] = Optional.Absent, lastSuccessfulTime: Optional[Time] = Optional.Absent) extends Product with Serializable
CronJobStatus represents the current state of a cron job.
- active
A list of pointers to currently running jobs.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CronJobStatus
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
CronJobStatus(active: Optional[Vector[ObjectReference]] = Optional.Absent, lastScheduleTime: Optional[Time] = Optional.Absent, lastSuccessfulTime: Optional[Time] = Optional.Absent)
- active
A list of pointers to currently running jobs.
Value Members
- val active: Optional[Vector[ObjectReference]]
-
def
getActive: IO[K8sFailure, Vector[ObjectReference]]
A list of pointers to currently running jobs.
A list of pointers to currently running jobs.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getLastScheduleTime: IO[K8sFailure, Time]
Gets lastScheduleTime.
Gets lastScheduleTime.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getLastSuccessfulTime: IO[K8sFailure, Time]
Gets lastSuccessfulTime.
Gets lastSuccessfulTime.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val lastScheduleTime: Optional[Time]
- val lastSuccessfulTime: Optional[Time]