import * as pulumi from "@pulumi/pulumi"; /** * The zia_atp_malicious_urls resource manages the list of malicious URL exceptions for Advanced Threat Protection (ATP) in the Zscaler Internet Access (ZIA) cloud service. URLs added to this list are treated as known malicious and will be blocked. This is a singleton resource. * * For more information, see the [ZIA Advanced Threat Protection documentation](https://help.zscaler.com/zia/about-advanced-threat-protection-policy). * * ## Example Usage * ### Configure ATP Malicious URL Exceptions * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.AtpMaliciousUrls("example", { * maliciousUrls: [ * "malicious-site.com", * "phishing-example.net", * "bad-domain.org", * ], * }); * ``` * * > This is a singleton resource. Import is not applicable. */ export declare class AtpMaliciousUrls extends pulumi.CustomResource { /** * Get an existing AtpMaliciousUrls 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): AtpMaliciousUrls; /** * Returns true if the given object is an instance of AtpMaliciousUrls. 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 AtpMaliciousUrls; /** * List of URLs to be treated as malicious by Advanced Threat Protection. */ readonly maliciousUrls: pulumi.Output; /** * The internal resource identifier for the ATP malicious URLs. */ readonly resourceId: pulumi.Output; /** * Create a AtpMaliciousUrls 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?: AtpMaliciousUrlsArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AtpMaliciousUrls resource. */ export interface AtpMaliciousUrlsArgs { /** * List of URLs to be treated as malicious by Advanced Threat Protection. */ maliciousUrls?: pulumi.Input[] | undefined>; } //# sourceMappingURL=atpMaliciousUrls.d.ts.map