import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Schedule data source */ export declare function getSchedule(args: GetScheduleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSchedule. */ export interface GetScheduleArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the schedule */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getSchedule. */ export interface GetScheduleResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * The UUID of the schedule */ readonly id: string; readonly name: string; readonly scheduleType: outputs.GetScheduleScheduleType; readonly snippet: string; readonly tfid: string; } /** * Schedule data source */ export declare function getScheduleOutput(args: GetScheduleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSchedule. */ export interface GetScheduleOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the schedule */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getSchedule.d.ts.map