(ctx context.Context, execID string, config client.ExecAttachOptions)
| 334 | } |
| 335 | |
| 336 | func (d *DryRunClient) ExecAttach(ctx context.Context, execID string, config client.ExecAttachOptions) (client.ExecAttachResult, error) { |
| 337 | return client.ExecAttachResult{}, errors.New("interactive exec is not supported in dry-run mode") |
| 338 | } |
| 339 | |
| 340 | func (d *DryRunClient) ExecInspect(ctx context.Context, execID string, options client.ExecInspectOptions) (client.ExecInspectResult, error) { |
| 341 | return d.apiClient.ExecInspect(ctx, execID, options) |
no outgoing calls