8 implementations of GetDeploymentOperationsAsync
Aspire.Hosting.Azure (1)
Provisioning\Internal\DefaultArmClientProvider.cs (1)
364
public async IAsyncEnumerable<AzureDeploymentOperationDetails>
GetDeploymentOperationsAsync
(
Aspire.Hosting.Azure.Tests (7)
AzureEnvironmentResourceExtensionsTests.cs (6)
5322
public async IAsyncEnumerable<AzureDeploymentOperationDetails>
GetDeploymentOperationsAsync
(
5868
public async IAsyncEnumerable<AzureDeploymentOperationDetails>
GetDeploymentOperationsAsync
(
5961
public async IAsyncEnumerable<AzureDeploymentOperationDetails>
GetDeploymentOperationsAsync
(
6027
public async IAsyncEnumerable<AzureDeploymentOperationDetails>
GetDeploymentOperationsAsync
(
6095
public IAsyncEnumerable<AzureDeploymentOperationDetails>
GetDeploymentOperationsAsync
(string deploymentId, bool recursive = true, CancellationToken cancellationToken = default)
6159
public IAsyncEnumerable<AzureDeploymentOperationDetails>
GetDeploymentOperationsAsync
(string deploymentId, bool recursive = true, CancellationToken cancellationToken = default)
ProvisioningTestHelpers.cs (1)
469
public async IAsyncEnumerable<AzureDeploymentOperationDetails>
GetDeploymentOperationsAsync
(
2 references to GetDeploymentOperationsAsync
Aspire.Hosting.Azure (1)
Provisioning\Provisioners\BicepProvisioner.cs (1)
1019
await foreach (var operation in context.ArmClient.
GetDeploymentOperationsAsync
(deploymentId.ToString(), recursive: true, cancellationToken).ConfigureAwait(false))
Aspire.Hosting.Azure.Tests (1)
DefaultArmClientProviderTests.cs (1)
105
await foreach (var operation in armClient.
GetDeploymentOperationsAsync
(RootDeploymentId, recursive: true, CancellationToken.None))