github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/output-funcs/dotnet/Outputs/SsisEnvironmentResponse.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. 15 /// </summary> 16 [OutputType] 17 public sealed class SsisEnvironmentResponse 18 { 19 /// <summary> 20 /// Metadata description. 21 /// </summary> 22 public readonly string? Description; 23 /// <summary> 24 /// Folder id which contains environment. 25 /// </summary> 26 public readonly double? FolderId; 27 /// <summary> 28 /// Metadata id. 29 /// </summary> 30 public readonly double? Id; 31 /// <summary> 32 /// Metadata name. 33 /// </summary> 34 public readonly string? Name; 35 /// <summary> 36 /// The type of SSIS object metadata. 37 /// Expected value is 'Environment'. 38 /// </summary> 39 public readonly string Type; 40 /// <summary> 41 /// Variable in environment 42 /// </summary> 43 public readonly ImmutableArray<Outputs.SsisVariableResponse> Variables; 44 45 [OutputConstructor] 46 private SsisEnvironmentResponse( 47 string? description, 48 49 double? folderId, 50 51 double? id, 52 53 string? name, 54 55 string type, 56 57 ImmutableArray<Outputs.SsisVariableResponse> variables) 58 { 59 Description = description; 60 FolderId = folderId; 61 Id = id; 62 Name = name; 63 Type = type; 64 Variables = variables; 65 } 66 } 67 }