pulumi/tests/testdata/codegen/simple-plain-schema-with-ro.../dotnet/Inputs/FooArgs.cs

39 lines
903 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 FooArgs : global::Pulumi.ResourceArgs
{
[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 FooArgs()
{
}
public static new FooArgs Empty => new FooArgs();
}
}