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.

117 lines 3.9 kB
import * as pulumi from "@pulumi/pulumi"; export declare class PullzoneAccessList extends pulumi.CustomResource { /** * Get an existing PullzoneAccessList 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?: PullzoneAccessListState, opts?: pulumi.CustomResourceOptions): PullzoneAccessList; /** * Returns true if the given object is an instance of PullzoneAccessList. 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 PullzoneAccessList; /** * Options: `Allow`, `Block`, `Bypass`, `Challenge`, `Log` */ readonly action: pulumi.Output<string>; /** * Indicated whether the Access List is enabled. */ readonly enabled: pulumi.Output<boolean>; /** * The Access List entries. */ readonly entries: pulumi.Output<string[]>; /** * The Access List name. */ readonly name: pulumi.Output<string>; /** * The ID of the linked pullzone. */ readonly pullzone: pulumi.Output<number>; /** * The ID of the Access List. */ readonly pullzoneAccessListId: pulumi.Output<number>; /** * Options: `ASN`, `CIDR`, `Country`, `IP`, `JA4`, `Organization` */ readonly type: pulumi.Output<string>; /** * Create a PullzoneAccessList 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: PullzoneAccessListArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PullzoneAccessList resources. */ export interface PullzoneAccessListState { /** * Options: `Allow`, `Block`, `Bypass`, `Challenge`, `Log` */ action?: pulumi.Input<string | undefined>; /** * Indicated whether the Access List is enabled. */ enabled?: pulumi.Input<boolean | undefined>; /** * The Access List entries. */ entries?: pulumi.Input<pulumi.Input<string>[] | undefined>; /** * The Access List name. */ name?: pulumi.Input<string | undefined>; /** * The ID of the linked pullzone. */ pullzone?: pulumi.Input<number | undefined>; /** * The ID of the Access List. */ pullzoneAccessListId?: pulumi.Input<number | undefined>; /** * Options: `ASN`, `CIDR`, `Country`, `IP`, `JA4`, `Organization` */ type?: pulumi.Input<string | undefined>; } /** * The set of arguments for constructing a PullzoneAccessList resource. */ export interface PullzoneAccessListArgs { /** * Options: `Allow`, `Block`, `Bypass`, `Challenge`, `Log` */ action: pulumi.Input<string>; /** * Indicated whether the Access List is enabled. */ enabled?: pulumi.Input<boolean | undefined>; /** * The Access List entries. */ entries: pulumi.Input<pulumi.Input<string>[]>; /** * The Access List name. */ name?: pulumi.Input<string | undefined>; /** * The ID of the linked pullzone. */ pullzone: pulumi.Input<number>; /** * Options: `ASN`, `CIDR`, `Country`, `IP`, `JA4`, `Organization` */ type: pulumi.Input<string>; } //# sourceMappingURL=pullzoneAccessList.d.ts.map