github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/different-enum/dotnet/Inputs/ContainerArgs.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.Inputs 11 { 12 13 public sealed class ContainerArgs : global::Pulumi.ResourceArgs 14 { 15 [Input("brightness")] 16 public Input<Pulumi.Plant.ContainerBrightness>? Brightness { get; set; } 17 18 [Input("color")] 19 public InputUnion<Pulumi.Plant.ContainerColor, string>? Color { get; set; } 20 21 [Input("material")] 22 public Input<string>? Material { get; set; } 23 24 [Input("size", required: true)] 25 public Input<Pulumi.Plant.ContainerSize> Size { get; set; } = null!; 26 27 public ContainerArgs() 28 { 29 Brightness = Pulumi.Plant.ContainerBrightness.One; 30 } 31 public static new ContainerArgs Empty => new ContainerArgs(); 32 } 33 }