@bdzscaler/pulumi-zia
Version:
A Pulumi package for creating and managing zia cloud resources.
40 lines • 1.88 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.getDLPEDMSchemaOutput = exports.getDLPEDMSchema = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* * [Official documentation](https://help.zscaler.com/zia/about-exact-data-match)
* * [API documentation](https://help.zscaler.com/zia/data-loss-prevention#/dlpExactDataMatchSchemas-get)
*
* Use the **zia_dlp_edm_schema** data source to get information about a the list of DLP Exact Data Match (EDM) templates in the Zscaler Internet Access cloud or via the API.
*
* ## Example Usage
*/
function getDLPEDMSchema(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("zia:index/getDLPEDMSchema:getDLPEDMSchema", {
"projectName": args.projectName,
}, opts);
}
exports.getDLPEDMSchema = getDLPEDMSchema;
/**
* * [Official documentation](https://help.zscaler.com/zia/about-exact-data-match)
* * [API documentation](https://help.zscaler.com/zia/data-loss-prevention#/dlpExactDataMatchSchemas-get)
*
* Use the **zia_dlp_edm_schema** data source to get information about a the list of DLP Exact Data Match (EDM) templates in the Zscaler Internet Access cloud or via the API.
*
* ## Example Usage
*/
function getDLPEDMSchemaOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("zia:index/getDLPEDMSchema:getDLPEDMSchema", {
"projectName": args.projectName,
}, opts);
}
exports.getDLPEDMSchemaOutput = getDLPEDMSchemaOutput;
//# sourceMappingURL=getDLPEDMSchema.js.map
;