@bdzscaler/pulumi-zia
Version:
A Pulumi package for creating and managing zia cloud resources.
40 lines • 2.31 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.getLocationLiteOutput = exports.getLocationLite = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* * [Official documentation](https://help.zscaler.com/zia/about-locations)
* * [API documentation](https://help.zscaler.com/zia/location-management#/locations/lite-get)
*
* Use the **zia_location_lite** data source to get information about a location in lite mode option available in the Zscaler Internet Access. This data source can be used to retrieve the Road Warrior location to then associated with one of the following resources: ``zia.URLFilteringRules``, ``zia.FirewallFilteringRule`` and ``zia.DLPWebRules`
*/
function getLocationLite(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("zia:index/getLocationLite:getLocationLite", {
"digestAuthEnabled": args.digestAuthEnabled,
"kerberosAuth": args.kerberosAuth,
"name": args.name,
}, opts);
}
exports.getLocationLite = getLocationLite;
/**
* * [Official documentation](https://help.zscaler.com/zia/about-locations)
* * [API documentation](https://help.zscaler.com/zia/location-management#/locations/lite-get)
*
* Use the **zia_location_lite** data source to get information about a location in lite mode option available in the Zscaler Internet Access. This data source can be used to retrieve the Road Warrior location to then associated with one of the following resources: ``zia.URLFilteringRules``, ``zia.FirewallFilteringRule`` and ``zia.DLPWebRules`
*/
function getLocationLiteOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("zia:index/getLocationLite:getLocationLite", {
"digestAuthEnabled": args.digestAuthEnabled,
"kerberosAuth": args.kerberosAuth,
"name": args.name,
}, opts);
}
exports.getLocationLiteOutput = getLocationLiteOutput;
//# sourceMappingURL=getLocationLite.js.map
;