mirror of https://github.com/pulumi/pulumi.git
37 lines
830 B
C#
37 lines
830 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.Outputs
|
|
{
|
|
|
|
/// <summary>
|
|
/// A Toy for a cat
|
|
/// </summary>
|
|
[OutputType]
|
|
public sealed class Laser
|
|
{
|
|
public readonly Pulumi.Example.Cat? Animal;
|
|
public readonly bool? Batteries;
|
|
public readonly double? Light;
|
|
|
|
[OutputConstructor]
|
|
private Laser(
|
|
Pulumi.Example.Cat? animal,
|
|
|
|
bool? batteries,
|
|
|
|
double? light)
|
|
{
|
|
Animal = animal;
|
|
Batteries = batteries;
|
|
Light = light;
|
|
}
|
|
}
|
|
}
|