@bdzscaler/pulumi-zia
Version:
A Pulumi package for creating and managing zia cloud resources.
42 lines • 2.06 kB
JavaScript
// *** 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.getDLPNotificationTemplatesOutput = exports.getDLPNotificationTemplates = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* * [Official documentation](https://help.zscaler.com/zia/about-dlp-notification-templates)
* * [API documentation](https://help.zscaler.com/zia/data-loss-prevention#/dlpNotificationTemplates-get)
*
* Use the **zia_dlp_notification_templates** data source to get information about a ZIA DLP Notification Templates in the Zscaler Internet Access cloud or via the API.
*
* ## Example Usage
*/
function getDLPNotificationTemplates(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("zia:index/getDLPNotificationTemplates:getDLPNotificationTemplates", {
"id": args.id,
"name": args.name,
}, opts);
}
exports.getDLPNotificationTemplates = getDLPNotificationTemplates;
/**
* * [Official documentation](https://help.zscaler.com/zia/about-dlp-notification-templates)
* * [API documentation](https://help.zscaler.com/zia/data-loss-prevention#/dlpNotificationTemplates-get)
*
* Use the **zia_dlp_notification_templates** data source to get information about a ZIA DLP Notification Templates in the Zscaler Internet Access cloud or via the API.
*
* ## Example Usage
*/
function getDLPNotificationTemplatesOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("zia:index/getDLPNotificationTemplates:getDLPNotificationTemplates", {
"id": args.id,
"name": args.name,
}, opts);
}
exports.getDLPNotificationTemplatesOutput = getDLPNotificationTemplatesOutput;
//# sourceMappingURL=getDLPNotificationTemplates.js.map
;