github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/output-funcs/dotnet/Outputs/SsisFolderResponse.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.Mypkg.Outputs
    11  {
    12  
    13      /// <summary>
    14      /// Ssis folder.
    15      /// </summary>
    16      [OutputType]
    17      public sealed class SsisFolderResponse
    18      {
    19          /// <summary>
    20          /// Metadata description.
    21          /// </summary>
    22          public readonly string? Description;
    23          /// <summary>
    24          /// Metadata id.
    25          /// </summary>
    26          public readonly double? Id;
    27          /// <summary>
    28          /// Metadata name.
    29          /// </summary>
    30          public readonly string? Name;
    31          /// <summary>
    32          /// The type of SSIS object metadata.
    33          /// Expected value is 'Folder'.
    34          /// </summary>
    35          public readonly string Type;
    36  
    37          [OutputConstructor]
    38          private SsisFolderResponse(
    39              string? description,
    40  
    41              double? id,
    42  
    43              string? name,
    44  
    45              string type)
    46          {
    47              Description = description;
    48              Id = id;
    49              Name = name;
    50              Type = type;
    51          }
    52      }
    53  }