Packages

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
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CronJobStatus
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. 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

  1. val active: Optional[Vector[ObjectReference]]
  2. 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.

  3. def getLastScheduleTime: IO[K8sFailure, Time]

    Gets lastScheduleTime.

    Gets lastScheduleTime.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  4. def getLastSuccessfulTime: IO[K8sFailure, Time]

    Gets lastSuccessfulTime.

    Gets lastSuccessfulTime.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  5. val lastScheduleTime: Optional[Time]
  6. val lastSuccessfulTime: Optional[Time]