UNPKG

@bdzscaler/pulumi-zia

Version:

A Pulumi package for creating and managing zia cloud resources.

62 lines (61 loc) 2.78 kB
import * as pulumi from "@pulumi/pulumi"; /** * * [Official documentation](https://help.zscaler.com/zia/configuring-advanced-threat-protection-policy) * * [API documentation](https://help.zscaler.com/zia/advanced-threat-protection-policy#/) * * The **zia_atp_security_exceptions** resource alows you to updates security exceptions for the ATP policy. To learn more see [Advanced Threat Protection](https://help.zscaler.com/unified/configuring-security-exceptions-advanced-threat-protection-policy) * * ## Example Usage * * ## Import * * Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZIA configurations into Terraform-compliant HashiCorp Configuration Language. * * Visit * * **zia_atp_security_exceptions** can be imported by using `all_urls` as the import ID. * * For example: * * ```sh * $ pulumi import zia:index/aTPSecurityExceptions:ATPSecurityExceptions this all_urls * ``` */ export declare class ATPSecurityExceptions extends pulumi.CustomResource { /** * Get an existing ATPSecurityExceptions 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ATPSecurityExceptionsState, opts?: pulumi.CustomResourceOptions): ATPSecurityExceptions; /** * Returns true if the given object is an instance of ATPSecurityExceptions. 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 ATPSecurityExceptions; readonly bypassUrls: pulumi.Output<string[]>; /** * Create a ATPSecurityExceptions 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?: ATPSecurityExceptionsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ATPSecurityExceptions resources. */ export interface ATPSecurityExceptionsState { bypassUrls?: pulumi.Input<pulumi.Input<string>[]>; } /** * The set of arguments for constructing a ATPSecurityExceptions resource. */ export interface ATPSecurityExceptionsArgs { bypassUrls?: pulumi.Input<pulumi.Input<string>[]>; }