import * as pulumi from "@pulumi/pulumi"; /** * The zia_dc_exclusion resource manages data center exclusions in the Zscaler Internet Access (ZIA) cloud service. Data center exclusions allow you to temporarily exclude specific data centers from traffic forwarding during maintenance windows or other planned events. * * ## Example Usage * ### Data Center Exclusion * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.DcExclusion("example", { * datacenterId: 12345, * startTimeUtc: "02/25/2026 08:00:00 am", * endTimeUtc: "02/25/2026 10:00:00 pm", * description: "Maintenance window exclusion", * }); * ``` * * ## Import * * An existing Data Center Exclusion can be imported using its datacenter ID, e.g. * * ```sh * $ pulumi import zia:index:DcExclusion example 12345 * ``` */ export declare class DcExclusion extends pulumi.CustomResource { /** * Get an existing DcExclusion resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): DcExclusion; /** * Returns true if the given object is an instance of DcExclusion. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DcExclusion; /** * The ID of the data center to exclude. */ readonly datacenterId: pulumi.Output; /** * A description of the data center exclusion. */ readonly description: pulumi.Output; /** * Exclusion end time as Unix epoch seconds. */ readonly endTime: pulumi.Output; /** * Exclusion end time in UTC format: `MM/DD/YYYY HH:MM:SS am/pm`. */ readonly endTimeUtc: pulumi.Output; /** * Whether the data center exclusion has expired. */ readonly expired: pulumi.Output; /** * Exclusion start time as Unix epoch seconds. */ readonly startTime: pulumi.Output; /** * Exclusion start time in UTC format: `MM/DD/YYYY HH:MM:SS am/pm`. */ readonly startTimeUtc: pulumi.Output; /** * Create a DcExclusion resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: DcExclusionArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a DcExclusion resource. */ export interface DcExclusionArgs { /** * The ID of the data center to exclude. */ datacenterId?: pulumi.Input; /** * A description of the data center exclusion. */ description?: pulumi.Input; /** * Exclusion end time as Unix epoch seconds. */ endTime?: pulumi.Input; /** * Exclusion end time in UTC format: `MM/DD/YYYY HH:MM:SS am/pm`. */ endTimeUtc?: pulumi.Input; /** * Exclusion start time as Unix epoch seconds. */ startTime?: pulumi.Input; /** * Exclusion start time in UTC format: `MM/DD/YYYY HH:MM:SS am/pm`. */ startTimeUtc?: pulumi.Input; } //# sourceMappingURL=dcExclusion.d.ts.map