mirror of https://github.com/pulumi/pulumi.git
39 lines
885 B
C#
39 lines
885 B
C#
// *** 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
|
|
{
|
|
|
|
public sealed class Foo : global::Pulumi.InvokeArgs
|
|
{
|
|
[Input("a", required: true)]
|
|
public bool A { get; set; }
|
|
|
|
[Input("b")]
|
|
public bool? B { get; set; }
|
|
|
|
[Input("c", required: true)]
|
|
public int C { get; set; }
|
|
|
|
[Input("d")]
|
|
public int? D { get; set; }
|
|
|
|
[Input("e", required: true)]
|
|
public string E { get; set; } = null!;
|
|
|
|
[Input("f")]
|
|
public string? F { get; set; }
|
|
|
|
public Foo()
|
|
{
|
|
}
|
|
public static new Foo Empty => new Foo();
|
|
}
|
|
}
|