TemplateVersionLogsAfter streams logs for a template version that occurred after a specific log ID.
(ctx context.Context, version uuid.UUID, after int64)
| 187 | |
| 188 | // TemplateVersionLogsAfter streams logs for a template version that occurred after a specific log ID. |
| 189 | func (c *Client) TemplateVersionLogsAfter(ctx context.Context, version uuid.UUID, after int64) (<-chan ProvisionerJobLog, io.Closer, error) { |
| 190 | return c.provisionerJobLogsAfter(ctx, fmt.Sprintf("/api/v2/templateversions/%s/logs", version), after) |
| 191 | } |
| 192 | |
| 193 | // CreateTemplateVersionDryRunRequest defines the request parameters for |
| 194 | // CreateTemplateVersionDryRun. |