import * as pulumi from "@pulumi/pulumi"; export declare function getQStashScheduleV2(args: GetQStashScheduleV2Args, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getQStashScheduleV2. */ export interface GetQStashScheduleV2Args { body?: string; callback?: string; delay?: string; header?: string; retries?: number; scheduleId: string; } /** * A collection of values returned by getQStashScheduleV2. */ export interface GetQStashScheduleV2Result { readonly body?: string; readonly callback?: string; readonly createdAt: number; readonly cron: string; readonly delay?: string; readonly destination: string; readonly header?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly method: string; readonly retries?: number; readonly scheduleId: string; } export declare function getQStashScheduleV2Output(args: GetQStashScheduleV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getQStashScheduleV2. */ export interface GetQStashScheduleV2OutputArgs { body?: pulumi.Input; callback?: pulumi.Input; delay?: pulumi.Input; header?: pulumi.Input; retries?: pulumi.Input; scheduleId: pulumi.Input; }