import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class PullzoneShield extends pulumi.CustomResource { /** * Get an existing PullzoneShield 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, state?: PullzoneShieldState, opts?: pulumi.CustomResourceOptions): PullzoneShield; /** * Returns true if the given object is an instance of PullzoneShield. 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 PullzoneShield; readonly accessLists: pulumi.Output; /** * Configures Bot Detection settings. */ readonly botDetection: pulumi.Output; /** * Configures DDoS settings. */ readonly ddos: pulumi.Output; /** * The ID of the linked pullzone. */ readonly pullzone: pulumi.Output; /** * The ID of the Bunny Shield. */ readonly pullzoneShieldId: pulumi.Output; /** * Options: `Advanced`, `Basic`, `Business`, `Enterprise` */ readonly tier: pulumi.Output; /** * Configures WAF settings. */ readonly waf: pulumi.Output; /** * Replace our bunny.net branded block and challenge pages with a white-labelled experience. */ readonly whitelabel: pulumi.Output; /** * Create a PullzoneShield 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: PullzoneShieldArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PullzoneShield resources. */ export interface PullzoneShieldState { accessLists?: pulumi.Input[]>; /** * Configures Bot Detection settings. */ botDetection?: pulumi.Input; /** * Configures DDoS settings. */ ddos?: pulumi.Input; /** * The ID of the linked pullzone. */ pullzone?: pulumi.Input; /** * The ID of the Bunny Shield. */ pullzoneShieldId?: pulumi.Input; /** * Options: `Advanced`, `Basic`, `Business`, `Enterprise` */ tier?: pulumi.Input; /** * Configures WAF settings. */ waf?: pulumi.Input; /** * Replace our bunny.net branded block and challenge pages with a white-labelled experience. */ whitelabel?: pulumi.Input; } /** * The set of arguments for constructing a PullzoneShield resource. */ export interface PullzoneShieldArgs { accessLists?: pulumi.Input[]>; /** * Configures Bot Detection settings. */ botDetection?: pulumi.Input; /** * Configures DDoS settings. */ ddos?: pulumi.Input; /** * The ID of the linked pullzone. */ pullzone: pulumi.Input; /** * Options: `Advanced`, `Basic`, `Business`, `Enterprise` */ tier?: pulumi.Input; /** * Configures WAF settings. */ waf?: pulumi.Input; /** * Replace our bunny.net branded block and challenge pages with a white-labelled experience. */ whitelabel?: pulumi.Input; }