mirror of https://github.com/pulumi/pulumi.git
27 lines
687 B
C#
27 lines
687 B
C#
// Copyright 2016-2020, Pulumi Corporation. All rights reserved.
|
|
|
|
using Pulumi;
|
|
|
|
class ComponentArgs : Pulumi.ResourceArgs
|
|
{
|
|
[Input("echo")]
|
|
public Input<object>? Echo { get; set; }
|
|
}
|
|
|
|
class Component : Pulumi.ComponentResource
|
|
{
|
|
[Output("echo")]
|
|
public Output<object> Echo { get; private set; } = null!;
|
|
|
|
[Output("childId")]
|
|
public Output<string> ChildId { get; private set; } = null!;
|
|
|
|
[Output("secret")]
|
|
public Output<string> Secret { get; private set; } = null!;
|
|
|
|
public Component(string name, ComponentArgs args, ComponentResourceOptions opts = null)
|
|
: base("testcomponent:index:Component", name, args, opts, remote: true)
|
|
{
|
|
}
|
|
}
|