UNPKG

@lbrlabs/pulumi-harness

Version:

A Pulumi package for creating and managing Harness resources.

28 lines 1.18 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.getApiKeyOutput = exports.getApiKey = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); function getApiKey(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("harness:platform/getApiKey:getApiKey", { "accountId": args.accountId, "apikeyType": args.apikeyType, "defaultTimeToExpireToken": args.defaultTimeToExpireToken, "description": args.description, "identifier": args.identifier, "name": args.name, "orgId": args.orgId, "parentId": args.parentId, "projectId": args.projectId, "tags": args.tags, }, opts); } exports.getApiKey = getApiKey; function getApiKeyOutput(args, opts) { return pulumi.output(args).apply((a) => getApiKey(a, opts)); } exports.getApiKeyOutput = getApiKeyOutput; //# sourceMappingURL=getApiKey.js.map