4 implementations of GetDiskImageAsync
Aspire.Hosting.Azure.Sandboxes (1)
Internal\Adc\AzureDevComputeClient.cs (1)
75
public Task<AzureDevComputeDiskImage>
GetDiskImageAsync
(AzureDevComputeResourceScope scope, string diskImageId, CancellationToken cancellationToken)
Aspire.Hosting.Azure.Tests (3)
AzureSandboxesTests.cs (3)
2870
public Task<AzureDevComputeDiskImage>
GetDiskImageAsync
(AzureDevComputeResourceScope scope, string diskImageId, CancellationToken cancellationToken) => throw new NotSupportedException();
2978
public Task<AzureDevComputeDiskImage>
GetDiskImageAsync
(AzureDevComputeResourceScope scope, string diskImageId, CancellationToken cancellationToken) => throw new NotSupportedException();
3013
public Task<AzureDevComputeDiskImage>
GetDiskImageAsync
(AzureDevComputeResourceScope scope, string diskImageId, CancellationToken cancellationToken) => throw new NotSupportedException();
1 reference to GetDiskImageAsync
Aspire.Hosting.Azure.Sandboxes (1)
AzureSandboxContainerDeployment.cs (1)
700
diskImage = await client.
GetDiskImageAsync
(scope, diskImage.Id, context.CancellationToken).ConfigureAwait(false);