UNPKG

@bdzscaler/pulumi-zia

Version:

A Pulumi package for creating and managing zia cloud resources.

42 lines 2.05 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.getCbiProfileOutput = exports.getCbiProfile = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * * [Official documentation](https://help.zscaler.com/zia/configuring-url-filtering-policy#Action) * * [API documentation](https://help.zscaler.com/zia/browser-isolation#/browserIsolation/profiles-get) * * Use the **zia_cloud_browser_isolation_profile** data source to get information about an isolation profile in the Zscaler Internet Access cloud. This data source is required when configuring URL filtering rule where the action is set to `ISOLATE` * * ## Example Usage */ function getCbiProfile(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("zia:index/getCbiProfile:getCbiProfile", { "id": args.id, "name": args.name, }, opts); } exports.getCbiProfile = getCbiProfile; /** * * [Official documentation](https://help.zscaler.com/zia/configuring-url-filtering-policy#Action) * * [API documentation](https://help.zscaler.com/zia/browser-isolation#/browserIsolation/profiles-get) * * Use the **zia_cloud_browser_isolation_profile** data source to get information about an isolation profile in the Zscaler Internet Access cloud. This data source is required when configuring URL filtering rule where the action is set to `ISOLATE` * * ## Example Usage */ function getCbiProfileOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("zia:index/getCbiProfile:getCbiProfile", { "id": args.id, "name": args.name, }, opts); } exports.getCbiProfileOutput = getCbiProfileOutput; //# sourceMappingURL=getCbiProfile.js.map