2021-10-12 16:13:13 +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.Plant.Inputs
|
|
|
|
{
|
|
|
|
|
2022-07-27 09:24:21 +00:00
|
|
|
public sealed class ContainerArgs : global::Pulumi.ResourceArgs
|
2021-10-12 16:13:13 +00:00
|
|
|
{
|
|
|
|
[Input("brightness")]
|
|
|
|
public Input<Pulumi.Plant.ContainerBrightness>? Brightness { get; set; }
|
|
|
|
|
|
|
|
[Input("color")]
|
|
|
|
public InputUnion<Pulumi.Plant.ContainerColor, string>? Color { get; set; }
|
|
|
|
|
|
|
|
[Input("material")]
|
|
|
|
public Input<string>? Material { get; set; }
|
|
|
|
|
|
|
|
[Input("size", required: true)]
|
|
|
|
public Input<Pulumi.Plant.ContainerSize> Size { get; set; } = null!;
|
|
|
|
|
|
|
|
public ContainerArgs()
|
|
|
|
{
|
|
|
|
Brightness = Pulumi.Plant.ContainerBrightness.One;
|
|
|
|
}
|
2022-07-27 09:23:34 +00:00
|
|
|
public static new ContainerArgs Empty => new ContainerArgs();
|
2021-10-12 16:13:13 +00:00
|
|
|
}
|
|
|
|
}
|