pulumi/tests/testdata/codegen/retain-on-delete-pp/dotnet/retain-on-delete.cs

17 lines
278 B
C#

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Random = Pulumi.Random;
return await Deployment.RunAsync(() =>
{
var foo = new Random.RandomPet("foo", new()
{
}, new CustomResourceOptions
{
RetainOnDelete = true,
});
});