@pulumi/wavefront
Version:
A Pulumi package for creating and managing wavefront cloud resources.
58 lines • 1.93 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.getExternalLinksOutput = exports.getExternalLinks = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* Use this data source to get information about all Wavefront external links.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as wavefront from "@pulumi/wavefront";
*
* // Get the information about all external links.
* const example = wavefront.getExternalLinks({
* limit: 10,
* offset: 0,
* });
* ```
*/
function getExternalLinks(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("wavefront:index/getExternalLinks:getExternalLinks", {
"limit": args.limit,
"offset": args.offset,
}, opts);
}
exports.getExternalLinks = getExternalLinks;
/**
* Use this data source to get information about all Wavefront external links.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as wavefront from "@pulumi/wavefront";
*
* // Get the information about all external links.
* const example = wavefront.getExternalLinks({
* limit: 10,
* offset: 0,
* });
* ```
*/
function getExternalLinksOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("wavefront:index/getExternalLinks:getExternalLinks", {
"limit": args.limit,
"offset": args.offset,
}, opts);
}
exports.getExternalLinksOutput = getExternalLinksOutput;
//# sourceMappingURL=getExternalLinks.js.map