import * as pulumi from "@pulumi/pulumi"; export declare class QStashSchedule extends pulumi.CustomResource { /** * Get an existing QStashSchedule 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?: QStashScheduleState, opts?: pulumi.CustomResourceOptions): QStashSchedule; /** * Returns true if the given object is an instance of QStashSchedule. 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 QStashSchedule; /** * 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 Based Deduplication (bool) for Qstash Scheduling. */ readonly contentBasedDeduplication: 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; /** * Deduplication ID for Qstash Scheduling. */ readonly deduplicationId: pulumi.Output; /** * Delay for Qstash Schedule. */ readonly delay: pulumi.Output; /** * Destination for Qstash Schedule. Either Topic ID or valid URL */ readonly destination: pulumi.Output; /** * Forward headers to your API */ readonly forwardHeaders: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Start time for Qstash Scheduling. */ readonly notBefore: pulumi.Output; /** * Retries for Qstash Schedule requests. */ readonly retries: pulumi.Output; /** * Unique Qstash Schedule ID for requested schedule */ readonly scheduleId: pulumi.Output; /** * Create a QStashSchedule 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: QStashScheduleArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering QStashSchedule resources. */ export interface QStashScheduleState { /** * 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 Based Deduplication (bool) for Qstash Scheduling. */ contentBasedDeduplication?: 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; /** * Deduplication ID for Qstash Scheduling. */ deduplicationId?: pulumi.Input; /** * Delay for Qstash Schedule. */ delay?: pulumi.Input; /** * Destination for Qstash Schedule. Either Topic ID or valid URL */ destination?: pulumi.Input; /** * Forward headers to your API */ forwardHeaders?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Start time for Qstash Scheduling. */ notBefore?: 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 QStashSchedule resource. */ export interface QStashScheduleArgs { /** * 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 Based Deduplication (bool) for Qstash Scheduling. */ contentBasedDeduplication?: pulumi.Input; /** * Content type for Qstash Scheduling. */ contentType?: pulumi.Input; /** * Cron string for Qstash Schedule */ cron: pulumi.Input; /** * Deduplication ID for Qstash Scheduling. */ deduplicationId?: pulumi.Input; /** * Delay for Qstash Schedule. */ delay?: pulumi.Input; /** * Destination for Qstash Schedule. Either Topic ID or valid URL */ destination: pulumi.Input; /** * Forward headers to your API */ forwardHeaders?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Start time for Qstash Scheduling. */ notBefore?: pulumi.Input; /** * Retries for Qstash Schedule requests. */ retries?: pulumi.Input; }