UNPKG

@pulumi/wavefront

Version:

A Pulumi package for creating and managing wavefront cloud resources.

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