github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/other-owned/dotnet/Inputs/ObjectWithNodeOptionalInputsArgs.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  using Pulumi;
    10  
    11  namespace Other.Example.Inputs
    12  {
    13  
    14      public sealed class ObjectWithNodeOptionalInputsArgs : global::Pulumi.ResourceArgs
    15      {
    16          [Input("bar")]
    17          public Input<int>? Bar { get; set; }
    18  
    19          [Input("foo", required: true)]
    20          public Input<string> Foo { get; set; } = null!;
    21  
    22          public ObjectWithNodeOptionalInputsArgs()
    23          {
    24          }
    25          public static new ObjectWithNodeOptionalInputsArgs Empty => new ObjectWithNodeOptionalInputsArgs();
    26      }
    27  }