github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/dashed-import-schema/dotnet/Outputs/Container.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.Plant.Outputs 11 { 12 13 [OutputType] 14 public sealed class Container 15 { 16 public readonly Pulumi.Plant.ContainerBrightness? Brightness; 17 public readonly string? Color; 18 public readonly string? Material; 19 public readonly Pulumi.Plant.ContainerSize Size; 20 21 [OutputConstructor] 22 private Container( 23 Pulumi.Plant.ContainerBrightness? brightness, 24 25 string? color, 26 27 string? material, 28 29 Pulumi.Plant.ContainerSize size) 30 { 31 Brightness = brightness; 32 Color = color; 33 Material = material; 34 Size = size; 35 } 36 } 37 }