2 implementations of PatchAsync
Aspire.Hosting (1)
Dcp\KubernetesService.cs (1)
162
public Task<T>
PatchAsync
<T>(T obj, V1Patch patch, CancellationToken cancellationToken = default)
Aspire.Hosting.Tests (1)
Dcp\TestKubernetesService.cs (1)
331
public Task<T>
PatchAsync
<T>(T obj, V1Patch patch, CancellationToken cancellationToken = default) where T : CustomResource, IKubernetesStaticMetadata
3 references to PatchAsync
Aspire.Hosting (3)
Dcp\DcpExecutor.cs (3)
610
var result = await _kubernetesService.
PatchAsync
(obj, patch, cancellationToken).ConfigureAwait(false);
1148
await _kubernetesService.
PatchAsync
(c, patch, attemptCancellationToken).ConfigureAwait(false);
1163
await _kubernetesService.
PatchAsync
(e, patch, attemptCancellationToken).ConfigureAwait(false);