case class CronJob(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[CronJobSpec] = Optional.Absent, status: Optional[CronJobStatus] = Optional.Absent) extends Product with Serializable
CronJob represents the configuration of a single cron job.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CronJob
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new CronJob(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[CronJobSpec] = Optional.Absent, status: Optional[CronJobStatus] = Optional.Absent)
Value Members
-
def
getMetadata: IO[K8sFailure, ObjectMeta]
Gets metadata.
Gets metadata.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getSpec: IO[K8sFailure, CronJobSpec]
Gets spec.
Gets spec.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getStatus: IO[K8sFailure, CronJobStatus]
Gets status.
Gets status.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val metadata: Optional[ObjectMeta]
- val spec: Optional[CronJobSpec]
- val status: Optional[CronJobStatus]