pulumi/tests/testdata/codegen/output-literals-pp/dotnet/output-literals.cs

16 lines
305 B
C#

using System.Collections.Generic;
using System.Linq;
using Pulumi;
return await Deployment.RunAsync(() =>
{
return new Dictionary<string, object?>
{
["output_true"] = true,
["output_false"] = false,
["output_number"] = 4,
["output_string"] = "hello",
};
});