mirror of https://github.com/pulumi/pulumi.git
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
|
|
|
|
import * as pulumi from "@pulumi/pulumi";
|
|
import * as dynamic from "@pulumi/pulumi/dynamic";
|
|
|
|
const sleep = require("sleep-promise");
|
|
|
|
class InputProvider implements dynamic.ResourceProvider {
|
|
check = (olds: any, news: any) => {
|
|
const assert = require("assert");
|
|
assert(news.input);
|
|
return Promise.resolve({ inputs: news });
|
|
};
|
|
diff = (id: pulumi.ID, olds: any, news: any) => Promise.resolve({});
|
|
create = (inputs: any) => Promise.resolve({ id: "0" });
|
|
update = (id: string, olds: any, news: any) => Promise.resolve({});
|
|
delete = (id: pulumi.ID, props: any) => Promise.resolve();
|
|
}
|
|
|
|
class InputResource extends dynamic.Resource {
|
|
constructor(name: string, input: pulumi.Input<string>) {
|
|
super(new InputProvider(), name, { input: input }, undefined);
|
|
}
|
|
}
|
|
|
|
(async () => {
|
|
try {
|
|
const a = new InputResource("a", "string");
|
|
const b = new InputResource("b", a.urn);
|
|
} catch (err) {
|
|
console.error(err);
|
|
process.exit(-1);
|
|
}
|
|
})();
|