2021-06-24 16:17:55 +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 Foo : global::Pulumi.InvokeArgs
|
2021-06-24 16:17:55 +00:00
|
|
|
{
|
|
|
|
[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()
|
|
|
|
{
|
|
|
|
}
|
2022-07-27 09:23:34 +00:00
|
|
|
public static new Foo Empty => new Foo();
|
2021-06-24 16:17:55 +00:00
|
|
|
}
|
|
|
|
}
|