import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage */ export declare function getSchedule(args?: GetScheduleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSchedule. */ export interface GetScheduleArgs { /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: { [key: string]: string; }; name?: string; } /** * A collection of values returned by getSchedule. */ export interface GetScheduleResult { /** * Filter by date range using 'lt' and 'gt'. */ readonly createdAt?: { [key: string]: string; }; /** * The ID of this resource. */ readonly id: string; readonly includeShadowsInSlackNotifications: boolean; readonly name: string; readonly shiftReportDayOfWeek: string; readonly shiftReportEnabled: boolean; readonly shiftReportTimeOfDay: string; readonly shiftReportTimeZone: string; readonly shiftStartNotificationsEnabled: boolean; readonly shiftUpdateNotificationsEnabled: boolean; readonly syncLinearEnabled: boolean; } /** * ## Example Usage */ export declare function getScheduleOutput(args?: GetScheduleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSchedule. */ export interface GetScheduleOutputArgs { /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; name?: pulumi.Input; } //# sourceMappingURL=getSchedule.d.ts.map