UNPKG

@lbrlabs/pulumi-harness

Version:

A Pulumi package for creating and managing Harness resources.

30 lines 1.16 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.getInputSetOutput = exports.getInputSet = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Data source for retrieving a Harness input set. */ function getInputSet(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("harness:platform/getInputSet:getInputSet", { "gitDetails": args.gitDetails, "identifier": args.identifier, "name": args.name, "orgId": args.orgId, "pipelineId": args.pipelineId, "projectId": args.projectId, }, opts); } exports.getInputSet = getInputSet; /** * Data source for retrieving a Harness input set. */ function getInputSetOutput(args, opts) { return pulumi.output(args).apply((a) => getInputSet(a, opts)); } exports.getInputSetOutput = getInputSetOutput; //# sourceMappingURL=getInputSet.js.map