@bdzscaler/pulumi-zia
Version:
A Pulumi package for creating and managing zia cloud resources.
38 lines • 2.24 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.getDlpDictionaryPredefinedIdentifiersOutput = exports.getDlpDictionaryPredefinedIdentifiers = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* * [Official documentation](https://help.zscaler.com/zia/understanding-predefined-dlp-dictionaries)
* * [API documentation](https://help.zscaler.com/zia/data-loss-prevention#/dlpDictionaries/{dictId}/predefinedIdentifiers-get)
*
* Use the **zia_dlp_dictionary_predefined_identifiers** data source to get information about the list of predefined identifiers that are available for selection in the specified hierarchical DLP dictionary.
*
* ## Example Usage
*/
function getDlpDictionaryPredefinedIdentifiers(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("zia:index/getDlpDictionaryPredefinedIdentifiers:getDlpDictionaryPredefinedIdentifiers", {
"name": args.name,
}, opts);
}
exports.getDlpDictionaryPredefinedIdentifiers = getDlpDictionaryPredefinedIdentifiers;
/**
* * [Official documentation](https://help.zscaler.com/zia/understanding-predefined-dlp-dictionaries)
* * [API documentation](https://help.zscaler.com/zia/data-loss-prevention#/dlpDictionaries/{dictId}/predefinedIdentifiers-get)
*
* Use the **zia_dlp_dictionary_predefined_identifiers** data source to get information about the list of predefined identifiers that are available for selection in the specified hierarchical DLP dictionary.
*
* ## Example Usage
*/
function getDlpDictionaryPredefinedIdentifiersOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("zia:index/getDlpDictionaryPredefinedIdentifiers:getDlpDictionaryPredefinedIdentifiers", {
"name": args.name,
}, opts);
}
exports.getDlpDictionaryPredefinedIdentifiersOutput = getDlpDictionaryPredefinedIdentifiersOutput;
//# sourceMappingURL=getDlpDictionaryPredefinedIdentifiers.js.map
;