WithJobStartedAt sets the StartedAt timestamp for the provisioner job.
(t time.Time)
| 86 | |
| 87 | // WithJobStartedAt sets the StartedAt timestamp for the provisioner job. |
| 88 | func WithJobStartedAt(t time.Time) BuilderOption { |
| 89 | return func(b *WorkspaceBuildBuilder) { |
| 90 | b.jobStartedAt = t |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | // WithJobUpdatedAt sets the UpdatedAt timestamp for the provisioner job. |
| 95 | func WithJobUpdatedAt(t time.Time) BuilderOption { |
no outgoing calls