winget-cli

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

ResourceKind.cs (1136B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="ResourceKind.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.Management.Configuration.Processor.DSCv3.Model
      8 {
      9     /// <summary>
     10     /// https://learn.microsoft.com/en-us/powershell/dsc/reference/schemas/definitions/resourcekind?view=dsc-3.0
     11     /// The kind of resource.
     12     /// </summary>
     13     internal enum ResourceKind
     14     {
     15         /// <summary>
     16         /// The kind is unknown.
     17         /// </summary>
     18         Unknown,
     19 
     20         /// <summary>
     21         /// A standard resource.
     22         /// </summary>
     23         Resource,
     24 
     25         /// <summary>
     26         /// An adapter resource.
     27         /// </summary>
     28         Adapter,
     29 
     30         /// <summary>
     31         /// A group resource.
     32         /// </summary>
     33         Group,
     34 
     35         /// <summary>
     36         /// An importer resource.
     37         /// </summary>
     38         Importer,
     39     }
     40 }