8 implementations of GetDeploymentOperationsAsync
Aspire.Hosting.Azure (1)
Provisioning\Internal\DefaultArmClientProvider.cs (1)
364public async IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync(
Aspire.Hosting.Azure.Tests (7)
AzureEnvironmentResourceExtensionsTests.cs (6)
5322public async IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync( 5868public async IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync( 5961public async IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync( 6027public async IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync( 6095public IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync(string deploymentId, bool recursive = true, CancellationToken cancellationToken = default) 6159public IAsyncEnumerable<AzureDeploymentOperationDetails> GetDeploymentOperationsAsync(string deploymentId, bool recursive = true, CancellationToken cancellationToken = default)
ProvisioningTestHelpers.cs (1)
469public 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))