github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/output-funcs/dotnet/Outputs/SsisEnvironmentReferenceResponse.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 environment reference. 15 /// </summary> 16 [OutputType] 17 public sealed class SsisEnvironmentReferenceResponse 18 { 19 /// <summary> 20 /// Environment folder name. 21 /// </summary> 22 public readonly string? EnvironmentFolderName; 23 /// <summary> 24 /// Environment name. 25 /// </summary> 26 public readonly string? EnvironmentName; 27 /// <summary> 28 /// Environment reference id. 29 /// </summary> 30 public readonly double? Id; 31 /// <summary> 32 /// Reference type 33 /// </summary> 34 public readonly string? ReferenceType; 35 36 [OutputConstructor] 37 private SsisEnvironmentReferenceResponse( 38 string? environmentFolderName, 39 40 string? environmentName, 41 42 double? id, 43 44 string? referenceType) 45 { 46 EnvironmentFolderName = environmentFolderName; 47 EnvironmentName = environmentName; 48 Id = id; 49 ReferenceType = referenceType; 50 } 51 } 52 }