winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

PSConfigurationUnitState.cs (1221B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="PSConfigurationUnitState.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.WinGet.Configuration.Engine.PSObjects
      8 {
      9     /// <summary>
     10     /// Must match ConfigurationUnitState.
     11     /// </summary>
     12     public enum PSConfigurationUnitState
     13     {
     14         /// <summary>
     15         /// The state of the configuration unit is unknown.
     16         /// </summary>
     17         Unknown,
     18 
     19         /// <summary>
     20         /// The configuration unit is in the queue to be applied.
     21         /// </summary>
     22         Pending,
     23 
     24         /// <summary>
     25         /// The configuration unit is actively being applied.
     26         /// </summary>
     27         InProgress,
     28 
     29         /// <summary>
     30         /// The configuration unit has completed being applied.
     31         /// </summary>
     32         Completed,
     33 
     34         /// <summary>
     35         /// The configuration unit was not applied due to external factors.
     36         /// </summary>
     37         Skipped,
     38     }
     39 }