github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/output-funcs-edgeorder/dotnet/Outputs/SpecificationResponse.cs (about)

     1  // *** WARNING: this file was generated by test. ***
     2  // *** Do not edit by hand unless you're certain you know what you are doing! ***
     3  
     4  using System;
     5  using System.Collections.Generic;
     6  using System.Collections.Immutable;
     7  using System.Threading.Tasks;
     8  using Pulumi.Serialization;
     9  
    10  namespace Pulumi.Myedgeorder.Outputs
    11  {
    12  
    13      /// <summary>
    14      /// Specifications of the configurations
    15      /// </summary>
    16      [OutputType]
    17      public sealed class SpecificationResponse
    18      {
    19          /// <summary>
    20          /// Name of the specification
    21          /// </summary>
    22          public readonly string Name;
    23          /// <summary>
    24          /// Value of the specification
    25          /// </summary>
    26          public readonly string Value;
    27  
    28          [OutputConstructor]
    29          private SpecificationResponse(
    30              string name,
    31  
    32              string value)
    33          {
    34              Name = name;
    35              Value = value;
    36          }
    37      }
    38  }