github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/transpiled_examples/random-pp/dotnet/random.cs (about)

     1  using System.Collections.Generic;
     2  using Pulumi;
     3  using Random = Pulumi.Random;
     4  
     5  return await Deployment.RunAsync(() => 
     6  {
     7      var randomPassword = new Random.RandomPassword("randomPassword", new()
     8      {
     9          Length = 16,
    10          Special = true,
    11          OverrideSpecial = "_%@",
    12      });
    13  
    14      return new Dictionary<string, object?>
    15      {
    16          ["password"] = randomPassword.Result,
    17      };
    18  });
    19