UNPKG

@spacelift-io/pulumi-spacelift

Version:

A Pulumi package for creating and managing Spacelift resources.

79 lines 3.15 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.Run = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * `spacelift.Run` allows programmatically triggering runs in response to arbitrary changes in the keepers section. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as spacelift from "@spacelift-io/pulumi-spacelift"; * * const thisStack = new spacelift.Stack("thisStack", { * repository: "test", * branch: "main", * }); * const thisRun = new spacelift.Run("thisRun", { * stackId: thisStack.id, * keepers: { * branch: thisStack.branch, * }, * }); * ``` */ class Run extends pulumi.CustomResource { /** * Get an existing Run resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name, id, state, opts) { return new Run(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of Run. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === Run.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["commitSha"] = state ? state.commitSha : undefined; resourceInputs["keepers"] = state ? state.keepers : undefined; resourceInputs["proposed"] = state ? state.proposed : undefined; resourceInputs["stackId"] = state ? state.stackId : undefined; } else { const args = argsOrState; if ((!args || args.stackId === undefined) && !opts.urn) { throw new Error("Missing required property 'stackId'"); } resourceInputs["commitSha"] = args ? args.commitSha : undefined; resourceInputs["keepers"] = args ? args.keepers : undefined; resourceInputs["proposed"] = args ? args.proposed : undefined; resourceInputs["stackId"] = args ? args.stackId : undefined; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(Run.__pulumiType, name, resourceInputs, opts); } } exports.Run = Run; /** @internal */ Run.__pulumiType = 'spacelift:index/run:Run'; //# sourceMappingURL=run.js.map