UNPKG

@lbrlabs/pulumi-harness

Version:

A Pulumi package for creating and managing Harness resources.

28 lines 1.19 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.getDelegateIdsOutput = exports.getDelegateIds = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to get a list of delegate ID's matching the specified search criteria. */ function getDelegateIds(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("harness:cloudprovider/getDelegateIds:getDelegateIds", { "name": args.name, "status": args.status, "type": args.type, }, opts); } exports.getDelegateIds = getDelegateIds; /** * Use this data source to get a list of delegate ID's matching the specified search criteria. */ function getDelegateIdsOutput(args, opts) { return pulumi.output(args).apply((a) => getDelegateIds(a, opts)); } exports.getDelegateIdsOutput = getDelegateIdsOutput; //# sourceMappingURL=getDelegateIds.js.map