github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/replace-on-change/dotnet/Outputs/Laser.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.Example.Outputs 11 { 12 13 /// <summary> 14 /// A Toy for a cat 15 /// </summary> 16 [OutputType] 17 public sealed class Laser 18 { 19 public readonly Pulumi.Example.Cat? Animal; 20 public readonly bool? Batteries; 21 public readonly double? Light; 22 23 [OutputConstructor] 24 private Laser( 25 Pulumi.Example.Cat? animal, 26 27 bool? batteries, 28 29 double? light) 30 { 31 Animal = animal; 32 Batteries = batteries; 33 Light = light; 34 } 35 } 36 }