UNPKG

pulumi-bunnynet

Version:

A Pulumi provider for managing Bunny.net CDN and edge computing resources, dynamically bridged from the Terraform Bunnynet provider with support for pull zones, storage, DNS, compute containers, and video streaming.

122 lines 4.51 kB
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<pulumi.ID>, 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<outputs.PullzoneShieldAccessList[] | undefined>; /** * Configures Bot Detection settings. */ readonly botDetection: pulumi.Output<outputs.PullzoneShieldBotDetection | undefined>; /** * Configures DDoS settings. */ readonly ddos: pulumi.Output<outputs.PullzoneShieldDdos | undefined>; /** * The ID of the linked pullzone. */ readonly pullzone: pulumi.Output<number>; /** * The ID of the Bunny Shield. */ readonly pullzoneShieldId: pulumi.Output<number>; /** * Options: `Advanced`, `Basic`, `Business`, `Enterprise` */ readonly tier: pulumi.Output<string>; /** * Configures WAF settings. */ readonly waf: pulumi.Output<outputs.PullzoneShieldWaf | undefined>; /** * Replace our bunny.net branded block and challenge pages with a white-labelled experience. */ readonly whitelabel: pulumi.Output<boolean>; /** * 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<pulumi.Input<inputs.PullzoneShieldAccessList>[] | undefined>; /** * Configures Bot Detection settings. */ botDetection?: pulumi.Input<inputs.PullzoneShieldBotDetection | undefined>; /** * Configures DDoS settings. */ ddos?: pulumi.Input<inputs.PullzoneShieldDdos | undefined>; /** * The ID of the linked pullzone. */ pullzone?: pulumi.Input<number | undefined>; /** * The ID of the Bunny Shield. */ pullzoneShieldId?: pulumi.Input<number | undefined>; /** * Options: `Advanced`, `Basic`, `Business`, `Enterprise` */ tier?: pulumi.Input<string | undefined>; /** * Configures WAF settings. */ waf?: pulumi.Input<inputs.PullzoneShieldWaf | undefined>; /** * Replace our bunny.net branded block and challenge pages with a white-labelled experience. */ whitelabel?: pulumi.Input<boolean | undefined>; } /** * The set of arguments for constructing a PullzoneShield resource. */ export interface PullzoneShieldArgs { accessLists?: pulumi.Input<pulumi.Input<inputs.PullzoneShieldAccessList>[] | undefined>; /** * Configures Bot Detection settings. */ botDetection?: pulumi.Input<inputs.PullzoneShieldBotDetection | undefined>; /** * Configures DDoS settings. */ ddos?: pulumi.Input<inputs.PullzoneShieldDdos | undefined>; /** * The ID of the linked pullzone. */ pullzone: pulumi.Input<number>; /** * Options: `Advanced`, `Basic`, `Business`, `Enterprise` */ tier?: pulumi.Input<string | undefined>; /** * Configures WAF settings. */ waf?: pulumi.Input<inputs.PullzoneShieldWaf | undefined>; /** * Replace our bunny.net branded block and challenge pages with a white-labelled experience. */ whitelabel?: pulumi.Input<boolean | undefined>; } //# sourceMappingURL=pullzoneShield.d.ts.map