8 implementations of GetDeploymentOperationsAsync
Aspire.Hosting.Azure (1)
Provisioning\Internal\DefaultArmClientProvider.cs (1)
365public async IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync(
Aspire.Hosting.Azure.Tests (7)
AzureEnvironmentResourceExtensionsTests.cs (6)
5334public async IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync( 5880public async IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync( 5973public async IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync( 6039public async IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync( 6107public IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync(string deploymentId, bool recursive = true, CancellationToken cancellationToken = default) 6171public IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync(string deploymentId, bool recursive = true, CancellationToken cancellationToken = default)
ProvisioningTestHelpers.cs (1)
470public async IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync(
2 references to GetDeploymentOperationsAsync
Aspire.Hosting.Azure (1)
Provisioning\Provisioners\BicepProvisioner.cs (1)
1019await foreach (var operation in context.ArmClient.GetDeploymentOperationsAsync(deploymentId.ToString(), recursive: true, cancellationToken).ConfigureAwait(false))
Aspire.Hosting.Azure.Tests (1)
DefaultArmClientProviderTests.cs (1)
105await foreach (var operation in armClient.GetDeploymentOperationsAsync(RootDeploymentId, recursive: true, CancellationToken.None))