pulumi/tests/integration/get_created/index.ts

31 lines
819 B
TypeScript
Raw Permalink Normal View History

// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
import * as pulumi from "@pulumi/pulumi";
class Provider implements pulumi.dynamic.ResourceProvider {
public static instance = new Provider();
public create: (inputs: any) => Promise<pulumi.dynamic.CreateResult>;
constructor() {
this.create = async (inputs: any) => {
return {
id: "0",
outs: undefined,
};
};
}
}
class Resource extends pulumi.dynamic.Resource {
constructor(name: string, opts?: pulumi.ResourceOptions) {
super(Provider.instance, name, {}, opts);
}
}
// Create a resource using the default dynamic provider instance.
let a = new Resource("a");
// Attempt to read the created resource.
let b = new Resource("b", { id: a.id });