UNPKG

@pulumi/juniper-mist

Version:

A Pulumi package for creating and managing Juniper Mist resources.

50 lines 2.04 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.getConstWebhooksOutput = exports.getConstWebhooks = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * This data source provides the list of Webhook Topics. * * This information can be used to configure webhooks at the Org level (`junipermist.org.Webhook` resource) or at the Site level (`junipermist.site.Webhook` resource). * * > Only the Webhook topics with `forOrg`==` true ` are supported at the Org level. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const listOfWebhooks = junipermist.getConstWebhooks({}); * ``` */ function getConstWebhooks(opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("junipermist:index/getConstWebhooks:getConstWebhooks", {}, opts); } exports.getConstWebhooks = getConstWebhooks; /** * This data source provides the list of Webhook Topics. * * This information can be used to configure webhooks at the Org level (`junipermist.org.Webhook` resource) or at the Site level (`junipermist.site.Webhook` resource). * * > Only the Webhook topics with `forOrg`==` true ` are supported at the Org level. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as junipermist from "@pulumi/juniper-mist"; * * const listOfWebhooks = junipermist.getConstWebhooks({}); * ``` */ function getConstWebhooksOutput(opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("junipermist:index/getConstWebhooks:getConstWebhooks", {}, opts); } exports.getConstWebhooksOutput = getConstWebhooksOutput; //# sourceMappingURL=getConstWebhooks.js.map