@spacelift-io/pulumi-spacelift
Version:
A Pulumi package for creating and managing Spacelift resources.
25 lines • 1.25 kB
JavaScript
;
// *** 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.getVcsAgentPoolOutput = exports.getVcsAgentPool = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* `spacelift.VcsAgentPool` represents a Spacelift **VCS agent pool** - a logical group of proxies allowing Spacelift to access private VCS installations
*/
function getVcsAgentPool(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("spacelift:index/getVcsAgentPool:getVcsAgentPool", {
"vcsAgentPoolId": args.vcsAgentPoolId,
}, opts);
}
exports.getVcsAgentPool = getVcsAgentPool;
/**
* `spacelift.VcsAgentPool` represents a Spacelift **VCS agent pool** - a logical group of proxies allowing Spacelift to access private VCS installations
*/
function getVcsAgentPoolOutput(args, opts) {
return pulumi.output(args).apply((a) => getVcsAgentPool(a, opts));
}
exports.getVcsAgentPoolOutput = getVcsAgentPoolOutput;
//# sourceMappingURL=getVcsAgentPool.js.map