WithJobUpdatedAt sets the UpdatedAt timestamp for the provisioner job.
(t time.Time)
| 93 | |
| 94 | // WithJobUpdatedAt sets the UpdatedAt timestamp for the provisioner job. |
| 95 | func WithJobUpdatedAt(t time.Time) BuilderOption { |
| 96 | return func(b *WorkspaceBuildBuilder) { |
| 97 | b.jobUpdatedAt = t |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | // WithJobCompletedAt sets the CompletedAt timestamp for the provisioner job. |
| 102 | func WithJobCompletedAt(t time.Time) BuilderOption { |
no outgoing calls