2021-07-13 16:39:58 +00:00
|
|
|
// *** WARNING: this file was generated by test. ***
|
|
|
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Collections.Immutable;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Pulumi.Serialization;
|
|
|
|
|
|
|
|
namespace Pulumi.Example.Inputs
|
|
|
|
{
|
|
|
|
|
2022-07-27 09:24:21 +00:00
|
|
|
public sealed class ObjectWithNodeOptionalInputsArgs : global::Pulumi.ResourceArgs
|
2021-07-13 16:39:58 +00:00
|
|
|
{
|
|
|
|
[Input("bar")]
|
|
|
|
public Input<int>? Bar { get; set; }
|
|
|
|
|
|
|
|
[Input("foo", required: true)]
|
|
|
|
public Input<string> Foo { get; set; } = null!;
|
|
|
|
|
|
|
|
public ObjectWithNodeOptionalInputsArgs()
|
|
|
|
{
|
|
|
|
}
|
2022-07-27 09:23:34 +00:00
|
|
|
public static new ObjectWithNodeOptionalInputsArgs Empty => new ObjectWithNodeOptionalInputsArgs();
|
2021-07-13 16:39:58 +00:00
|
|
|
}
|
|
|
|
}
|