import * as pulumi from "@pulumi/pulumi"; export declare class QStashScheduleV2 extends pulumi.CustomResource { /** * Get an existing QStashScheduleV2 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, state?: QStashScheduleV2State, opts?: pulumi.CustomResourceOptions): QStashScheduleV2; /** * Returns true if the given object is an instance of QStashScheduleV2. 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 QStashScheduleV2; /** * Body to send for the POST request in string format. Needs escaping (\) double quotes. */ readonly body: pulumi.Output; /** * Callback URL for Qstash Schedule. */ readonly callback: pulumi.Output; /** * Content type for Qstash Scheduling. */ readonly contentType: pulumi.Output; /** * Creation time for Qstash Schedule. */ readonly createdAt: pulumi.Output; /** * Cron string for Qstash Schedule */ readonly cron: pulumi.Output; /** * Delay for Qstash Schedule. Delay should be given in seconds */ readonly delay: pulumi.Output; /** * Destination for Qstash Schedule. Either Topic Name or valid URL */ readonly destination: pulumi.Output; /** * Forward headers to your API */ readonly forwardHeaders: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Headers for the QStash schedule */ readonly header: pulumi.Output; /** * Method of Http Request on QStash */ readonly method: pulumi.Output; /** * Retries for Qstash Schedule requests. */ readonly retries: pulumi.Output; /** * Unique Qstash Schedule ID for requested schedule */ readonly scheduleId: pulumi.Output; /** * Create a QStashScheduleV2 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: QStashScheduleV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering QStashScheduleV2 resources. */ export interface QStashScheduleV2State { /** * Body to send for the POST request in string format. Needs escaping (\) double quotes. */ body?: pulumi.Input; /** * Callback URL for Qstash Schedule. */ callback?: pulumi.Input; /** * Content type for Qstash Scheduling. */ contentType?: pulumi.Input; /** * Creation time for Qstash Schedule. */ createdAt?: pulumi.Input; /** * Cron string for Qstash Schedule */ cron?: pulumi.Input; /** * Delay for Qstash Schedule. Delay should be given in seconds */ delay?: pulumi.Input; /** * Destination for Qstash Schedule. Either Topic Name or valid URL */ destination?: pulumi.Input; /** * Forward headers to your API */ forwardHeaders?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Headers for the QStash schedule */ header?: pulumi.Input; /** * Method of Http Request on QStash */ method?: pulumi.Input; /** * Retries for Qstash Schedule requests. */ retries?: pulumi.Input; /** * Unique Qstash Schedule ID for requested schedule */ scheduleId?: pulumi.Input; } /** * The set of arguments for constructing a QStashScheduleV2 resource. */ export interface QStashScheduleV2Args { /** * Body to send for the POST request in string format. Needs escaping (\) double quotes. */ body?: pulumi.Input; /** * Callback URL for Qstash Schedule. */ callback?: pulumi.Input; /** * Content type for Qstash Scheduling. */ contentType?: pulumi.Input; /** * Cron string for Qstash Schedule */ cron: pulumi.Input; /** * Delay for Qstash Schedule. Delay should be given in seconds */ delay?: pulumi.Input; /** * Destination for Qstash Schedule. Either Topic Name or valid URL */ destination: pulumi.Input; /** * Forward headers to your API */ forwardHeaders?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Method of Http Request on QStash */ method?: pulumi.Input; /** * Retries for Qstash Schedule requests. */ retries?: pulumi.Input; }