UNPKG

@pulumi/wavefront

Version:

A Pulumi package for creating and managing wavefront cloud resources.

52 lines 1.71 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.getUserGroupOutput = exports.getUserGroup = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Use this data source to get information about a Wavefront user group by its ID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as wavefront from "@pulumi/wavefront"; * * // Get the information about the user group. * const example = wavefront.getUserGroup({ * id: "user-group-id", * }); * ``` */ function getUserGroup(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("wavefront:index/getUserGroup:getUserGroup", { "id": args.id, }, opts); } exports.getUserGroup = getUserGroup; /** * Use this data source to get information about a Wavefront user group by its ID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as wavefront from "@pulumi/wavefront"; * * // Get the information about the user group. * const example = wavefront.getUserGroup({ * id: "user-group-id", * }); * ``` */ function getUserGroupOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("wavefront:index/getUserGroup:getUserGroup", { "id": args.id, }, opts); } exports.getUserGroupOutput = getUserGroupOutput; //# sourceMappingURL=getUserGroup.js.map