UNPKG

@bdzscaler/pulumi-zpa

Version:

A Pulumi package for creating and managing Zscaler Private Access (ZPA) cloud resources.

64 lines 2.87 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.getServiceEdgeAssistantScheduleOutput = exports.getServiceEdgeAssistantSchedule = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * * [Official documentation](https://help.zscaler.com/zpa/deleting-disconnected-app-connectors) * * [API documentation](https://help.zscaler.com/zpa/configuring-auto-delete-disconnected-app-connectors-using-api) * * Use the **zpa_service_edge_assistant_schedule** data source to get information about Auto Delete frequency of the Service Edge for the specified customer in the Zscaler Private Access cloud. * * > **NOTE** - The `customerId` attribute is optional and not required during the configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as zpa from "@bdzscaler/pulumi-zpa"; * * const _this = zpa.getServiceEdgeAssistantSchedule({ * customerId: "1234567891012", * }); * ``` */ function getServiceEdgeAssistantSchedule(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("zpa:index/getServiceEdgeAssistantSchedule:getServiceEdgeAssistantSchedule", { "customerId": args.customerId, "id": args.id, }, opts); } exports.getServiceEdgeAssistantSchedule = getServiceEdgeAssistantSchedule; /** * * [Official documentation](https://help.zscaler.com/zpa/deleting-disconnected-app-connectors) * * [API documentation](https://help.zscaler.com/zpa/configuring-auto-delete-disconnected-app-connectors-using-api) * * Use the **zpa_service_edge_assistant_schedule** data source to get information about Auto Delete frequency of the Service Edge for the specified customer in the Zscaler Private Access cloud. * * > **NOTE** - The `customerId` attribute is optional and not required during the configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as zpa from "@bdzscaler/pulumi-zpa"; * * const _this = zpa.getServiceEdgeAssistantSchedule({ * customerId: "1234567891012", * }); * ``` */ function getServiceEdgeAssistantScheduleOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("zpa:index/getServiceEdgeAssistantSchedule:getServiceEdgeAssistantSchedule", { "customerId": args.customerId, "id": args.id, }, opts); } exports.getServiceEdgeAssistantScheduleOutput = getServiceEdgeAssistantScheduleOutput; //# sourceMappingURL=getServiceEdgeAssistantSchedule.js.map