import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleCustomPagesList = cloudflare.getCustomPagesList({ * accountId: "account_id", * zoneId: "zone_id", * }); * ``` */ export declare function getCustomPagesList(args?: GetCustomPagesListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCustomPagesList. */ export interface GetCustomPagesListArgs { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ accountId?: string; /** * Max items to fetch, default: 1000 */ maxItems?: number; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ zoneId?: string; } /** * A collection of values returned by getCustomPagesList. */ export interface GetCustomPagesListResult { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ readonly accountId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Max items to fetch, default: 1000 */ readonly maxItems?: number; /** * The items returned by the data source */ readonly results: outputs.GetCustomPagesListResult[]; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ readonly zoneId?: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleCustomPagesList = cloudflare.getCustomPagesList({ * accountId: "account_id", * zoneId: "zone_id", * }); * ``` */ export declare function getCustomPagesListOutput(args?: GetCustomPagesListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCustomPagesList. */ export interface GetCustomPagesListOutputArgs { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ accountId?: pulumi.Input; /** * Max items to fetch, default: 1000 */ maxItems?: pulumi.Input; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ zoneId?: pulumi.Input; }