| File: AzureContainerRegistryRole.cs | Web Access |
| Project: src\src\Aspire.Hosting.Azure.ContainerRegistry\Aspire.Hosting.Azure.ContainerRegistry.csproj (Aspire.Hosting.Azure.ContainerRegistry) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Aspire.Hosting; /// <summary> /// Represents ATS-compatible Azure Container Registry roles. /// </summary> internal enum AzureContainerRegistryRole { AcrDelete, AcrImageSigner, AcrPull, AcrPush, AcrQuarantineReader, AcrQuarantineWriter, } |