UNPKG

@pulumi/harness

Version:

A Pulumi package for creating and managing Harness resources.

34 lines 1.55 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.getGitopsRepoCertOutput = exports.getGitopsRepoCert = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Data source for retrieving a GitOps Repository Certificate. It fetches all the certificates that are added to the provided agent. */ function getGitopsRepoCert(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("harness:platform/getGitopsRepoCert:getGitopsRepoCert", { "accountId": args.accountId, "agentId": args.agentId, "orgId": args.orgId, "projectId": args.projectId, }, opts); } exports.getGitopsRepoCert = getGitopsRepoCert; /** * Data source for retrieving a GitOps Repository Certificate. It fetches all the certificates that are added to the provided agent. */ function getGitopsRepoCertOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("harness:platform/getGitopsRepoCert:getGitopsRepoCert", { "accountId": args.accountId, "agentId": args.agentId, "orgId": args.orgId, "projectId": args.projectId, }, opts); } exports.getGitopsRepoCertOutput = getGitopsRepoCertOutput; //# sourceMappingURL=getGitopsRepoCert.js.map