import * as pulumi from "@pulumi/pulumi"; /** * The zia_security_policy_settings resource manages the whitelist and blacklist URL configuration for the ZIA security policy. This is a singleton resource that controls which URLs are always allowed (whitelisted) or always blocked (blacklisted) across the organization. * * For more information, see the [ZIA Security Policy Settings documentation](https://help.zscaler.com/zia/configuring-security-policy). * * ## Example Usage * ### Basic Security Policy Settings * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.SecurityPolicySettings("example", { * whitelistUrls: [ * "example.com", * "trusted-site.org", * ], * blacklistUrls: [ * "malicious-site.com", * "phishing-site.net", * ], * }); * ``` * * > This is a singleton resource. Import is not applicable. */ export declare class SecurityPolicySettings extends pulumi.CustomResource { /** * Get an existing SecurityPolicySettings 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): SecurityPolicySettings; /** * Returns true if the given object is an instance of SecurityPolicySettings. 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 SecurityPolicySettings; /** * List of URLs that are always blocked (blacklisted) by the security policy. */ readonly blacklistUrls: pulumi.Output; /** * The internal resource identifier for the security policy settings. */ readonly resourceId: pulumi.Output; /** * List of URLs that are always allowed (whitelisted) by the security policy. */ readonly whitelistUrls: pulumi.Output; /** * Create a SecurityPolicySettings 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?: SecurityPolicySettingsArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a SecurityPolicySettings resource. */ export interface SecurityPolicySettingsArgs { /** * List of URLs that are always blocked (blacklisted) by the security policy. */ blacklistUrls?: pulumi.Input[] | undefined>; /** * List of URLs that are always allowed (whitelisted) by the security policy. */ whitelistUrls?: pulumi.Input[] | undefined>; } //# sourceMappingURL=securityPolicySettings.d.ts.map