UNPKG

@lbrlabs/pulumi-harness

Version:

A Pulumi package for creating and managing Harness resources.

26 lines 978 B
"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.getServiceOutput = exports.getService = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Data source for retrieving a Harness service */ function getService(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("harness:index/getService:getService", { "appId": args.appId, "id": args.id, }, opts); } exports.getService = getService; /** * Data source for retrieving a Harness service */ function getServiceOutput(args, opts) { return pulumi.output(args).apply((a) => getService(a, opts)); } exports.getServiceOutput = getServiceOutput; //# sourceMappingURL=getService.js.map