UNPKG

@pulumi/harness

Version:

A Pulumi package for creating and managing Harness resources.

36 lines 1.7 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getConnectorCustomSecretManagerOutput = exports.getConnectorCustomSecretManager = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Datasource for looking up a Custom Secret Manager connector. */ function getConnectorCustomSecretManager(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("harness:platform/getConnectorCustomSecretManager:getConnectorCustomSecretManager", { "delegateSelectors": args.delegateSelectors, "identifier": args.identifier, "name": args.name, "orgId": args.orgId, "projectId": args.projectId, }, opts); } exports.getConnectorCustomSecretManager = getConnectorCustomSecretManager; /** * Datasource for looking up a Custom Secret Manager connector. */ function getConnectorCustomSecretManagerOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("harness:platform/getConnectorCustomSecretManager:getConnectorCustomSecretManager", { "delegateSelectors": args.delegateSelectors, "identifier": args.identifier, "name": args.name, "orgId": args.orgId, "projectId": args.projectId, }, opts); } exports.getConnectorCustomSecretManagerOutput = getConnectorCustomSecretManagerOutput; //# sourceMappingURL=getConnectorCustomSecretManager.js.map