mirror of https://github.com/pulumi/pulumi.git
24 lines
555 B
C#
24 lines
555 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.Xyz.Inputs
|
|
{
|
|
|
|
public sealed class FooArgs : global::Pulumi.ResourceArgs
|
|
{
|
|
[Input("a")]
|
|
public Input<bool>? A { get; set; }
|
|
|
|
public FooArgs()
|
|
{
|
|
}
|
|
public static new FooArgs Empty => new FooArgs();
|
|
}
|
|
}
|