JobStatusResponse

data class JobStatusResponse(val conditions: List<GoogleCloudRunV1ConditionResponse>, val executionCount: Int, val latestCreatedExecution: ExecutionReferenceResponse, val observedGeneration: Int)

JobStatus represents the current state of a Job.

Constructors

Link copied to clipboard
constructor(conditions: List<GoogleCloudRunV1ConditionResponse>, executionCount: Int, latestCreatedExecution: ExecutionReferenceResponse, observedGeneration: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Conditions communicate information about ongoing/complete reconciliation processes that bring the "spec" inline with the observed state of the world. Job-specific conditions include: * Ready: True when the job is ready to be executed.

Link copied to clipboard

Number of executions created for this job.

Link copied to clipboard

A pointer to the most recently created execution for this job. This is set regardless of the eventual state of the execution.

Link copied to clipboard

The 'generation' of the job that was last processed by the controller.