Sets the parent task ID that this task is chained to. When set, the task will wait for the parent to complete before executing, and will use the parent's completed repository as its starting point.
(mut self, task_id: Option<String>)
| 177 | /// When set, the task will wait for the parent to complete before executing, |
| 178 | /// and will use the parent's completed repository as its starting point. |
| 179 | pub fn parent_id(mut self, task_id: Option<String>) -> Self { |
| 180 | self.parent_id = task_id; |
| 181 | self |
| 182 | } |
| 183 | |
| 184 | /// Sets whether per-container network isolation is enabled. |
| 185 | /// When disabled, the container runs on the default Docker network with direct internet access. |
no outgoing calls