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 exampleLogpushJobs = cloudflare.getLogpushJobs({ * accountId: "account_id", * zoneId: "zone_id", * }); * ``` */ export declare function getLogpushJobs(args?: GetLogpushJobsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLogpushJobs. */ export interface GetLogpushJobsArgs { /** * 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 getLogpushJobs. */ export interface GetLogpushJobsResult { /** * 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.GetLogpushJobsResult[]; /** * 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 exampleLogpushJobs = cloudflare.getLogpushJobs({ * accountId: "account_id", * zoneId: "zone_id", * }); * ``` */ export declare function getLogpushJobsOutput(args?: GetLogpushJobsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLogpushJobs. */ export interface GetLogpushJobsOutputArgs { /** * 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; }