import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * UpdateSchedule data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const settingsData = scm.getUpdateSchedule({ * id: "4bde6878-8709-4231-a7b4-c51d8fb4008a", * }); * export const fetchedSettings = settingsData; * ``` */ export declare function getUpdateSchedule(args: GetUpdateScheduleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUpdateSchedule. */ export interface GetUpdateScheduleArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; snippet?: string; } /** * A collection of values returned by getUpdateSchedule. */ export interface GetUpdateScheduleResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly snippet: string; readonly tfid: string; readonly updateSchedule: outputs.GetUpdateScheduleUpdateSchedule; } /** * UpdateSchedule data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const settingsData = scm.getUpdateSchedule({ * id: "4bde6878-8709-4231-a7b4-c51d8fb4008a", * }); * export const fetchedSettings = settingsData; * ``` */ export declare function getUpdateScheduleOutput(args: GetUpdateScheduleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUpdateSchedule. */ export interface GetUpdateScheduleOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getUpdateSchedule.d.ts.map