2 implementations of PatchAsync
Aspire.Hosting (1)
Dcp\KubernetesService.cs (1)
158
public Task<T>
PatchAsync
<T>(T obj, V1Patch patch, CancellationToken cancellationToken = default)
Aspire.Hosting.Tests (1)
Dcp\TestKubernetesService.cs (1)
180
public Task<T>
PatchAsync
<T>(T obj, V1Patch patch, CancellationToken cancellationToken = default) where T : CustomResource
2 references to PatchAsync
Aspire.Hosting (2)
Dcp\DcpExecutor.cs (2)
1656
await _kubernetesService.
PatchAsync
(c, patch, attemptCancellationToken).ConfigureAwait(false);
1671
await _kubernetesService.
PatchAsync
(e, patch, attemptCancellationToken).ConfigureAwait(false);