pulumi/tests/testdata/codegen/random-pet-pp/dotnet/random-pet.cs

15 lines
248 B
C#

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Random = Pulumi.Random;
return await Deployment.RunAsync(() =>
{
var random_pet = new Random.RandomPet("random-pet", new()
{
Prefix = "doggo",
});
});