pulumi/tests/testdata/codegen/nested-invokes-pp/dotnet/nested-invokes.cs

20 lines
344 B
C#

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Std = Pulumi.Std;
return await Deployment.RunAsync(() =>
{
var example = Std.Replace.Invoke(new()
{
Text = Std.Upper.Invoke(new()
{
Input = "hello_world",
}).Result,
Search = "_",
Replace = "-",
});
});