11 types derived from AzureIntent
Aspire.Hosting.Azure (11)
16 references to AzureIntent
Aspire.Hosting.Azure (16)
AzureProvisioningController.cs (16)
1008private async Task RunOperationAsync(DistributedApplicationModel model, AzureIntent intent, CancellationToken cancellationToken)
1016private async Task<T> RunOperationAsync<T>(DistributedApplicationModel model, AzureIntent intent, CancellationToken cancellationToken)
1391AzureIntent intent,
1704private async Task<object?> ExecuteIntentAsync(DistributedApplicationModel model, AzureIntent intent, CancellationToken cancellationToken)
2219private ActiveAzureOperation StartOperation(DistributedApplicationModel model, AzureIntent intent, CancellationToken cancellationToken)
2232private void CompleteOperation(AzureIntent intent, ActiveAzureOperation? activeOperation)
2256private void UpdateActiveOperationPhase(AzureIntent intent, string phase, string? status = null)
2278private static AzureOperationState CreateActiveOperationState(DistributedApplicationModel model, AzureIntent intent)
2297private static AzureOperationState CreateQueuedOperationState(DistributedApplicationModel model, AzureIntent intent)
2307private void RegisterQueuedOperation(AzureIntent intent, AzureOperationState queuedOperationState)
2373private static AzureControllerState CreateControllerState(AzureIntent? currentIntent, ActiveAzureOperation? activeOperation)
4229private ActiveAzureOperation(AzureIntent intent, AzureOperationState operation, DateTimeOffset startedAt, CancellationTokenSource cancellationTokenSource)
4239public AzureIntent Intent { get; }
4251public static ActiveAzureOperation Create(AzureIntent intent, AzureOperationState operation, DateTimeOffset startedAt, CancellationToken cancellationToken)
4316private sealed record AzureControllerStatus(AzureIntent? CurrentIntent, ActiveAzureOperation? ActiveOperation);
4396AzureIntent Intent,