mirror of https://github.com/pulumi/pulumi.git
16 lines
696 B
TypeScript
16 lines
696 B
TypeScript
// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
|
|
|
|
import { Resource } from "./resource";
|
|
|
|
// Step 2: Same, Update, Same, Delete, Create:
|
|
// * Create 1 resource, a2, equivalent to the a1 in Step 1 (Same(a1, a2)).
|
|
let a = new Resource("a", { state: 1 });
|
|
// * Create 1 resource, b2, with a property different than the b1 in Step 1 (Update(b1=>b2)).
|
|
let b = new Resource("b", { state: 2 });
|
|
// * Create 1 resource, c2, equivalent to the c1 in Step 1 (Same(c1, c2)).
|
|
let c = new Resource("c", { state: 1, resource: a });
|
|
// * Elide d (Delete(d1)).
|
|
// * Create 1 resource, e2, not present in Step 1 (Create(e2)).
|
|
let e = new Resource("e", { state: 1 });
|
|
// Checkpoint: a2, b2, c2, e2
|