import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * GeneralSetting data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const settingsData = scm.getGeneralSetting({ * id: "f7e61db6-b03a-493b-a70d-da39ed2e21b0", * }); * export const fetchedSettings = settingsData; * ``` */ export declare function getGeneralSetting(args: GetGeneralSettingArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGeneralSetting. */ export interface GetGeneralSettingArgs { /** * 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 getGeneralSetting. */ export interface GetGeneralSettingResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; readonly general: outputs.GetGeneralSettingGeneral; /** * UUID of the resource */ readonly id: string; readonly snippet: string; readonly tfid: string; } /** * GeneralSetting data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const settingsData = scm.getGeneralSetting({ * id: "f7e61db6-b03a-493b-a70d-da39ed2e21b0", * }); * export const fetchedSettings = settingsData; * ``` */ export declare function getGeneralSettingOutput(args: GetGeneralSettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGeneralSetting. */ export interface GetGeneralSettingOutputArgs { /** * 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=getGeneralSetting.d.ts.map