UNPKG

@pulumi/harness

Version:

A Pulumi package for creating and managing Harness resources.

34 lines 1.44 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.getConnectorAzureRepoOutput = exports.getConnectorAzureRepo = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Datasource for looking up a Azure Repo connector. */ function getConnectorAzureRepo(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("harness:platform/getConnectorAzureRepo:getConnectorAzureRepo", { "identifier": args.identifier, "name": args.name, "orgId": args.orgId, "projectId": args.projectId, }, opts); } exports.getConnectorAzureRepo = getConnectorAzureRepo; /** * Datasource for looking up a Azure Repo connector. */ function getConnectorAzureRepoOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("harness:platform/getConnectorAzureRepo:getConnectorAzureRepo", { "identifier": args.identifier, "name": args.name, "orgId": args.orgId, "projectId": args.projectId, }, opts); } exports.getConnectorAzureRepoOutput = getConnectorAzureRepoOutput; //# sourceMappingURL=getConnectorAzureRepo.js.map