github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/third-party-package-pp/nodejs/third-party-package.ts (about)

     1  import * as pulumi from "@pulumi/pulumi";
     2  import * as other from "@third-party/pulumi-other";
     3  
     4  const Other = new other.Thing("Other", {idea: "Support Third Party"});
     5  const Question = new other.module.Object("Question", {answer: 42});
     6  const Question2 = new other.module.sub.Object("Question2", {answer: 24});
     7  const Provider = new other.Provider("Provider", {objectProp: {
     8      prop1: "foo",
     9      prop2: "bar",
    10      prop3: "fizz",
    11  }});