import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * AuthenticationSetting data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const settingsData = scm.getAuthenticationSetting({ * id: "f4e09263-f8bf-4a4d-a37d-b54d6530810a", * }); * export const fetchedSettings = settingsData; * ``` */ export declare function getAuthenticationSetting(args: GetAuthenticationSettingArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAuthenticationSetting. */ export interface GetAuthenticationSettingArgs { /** * 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 getAuthenticationSetting. */ export interface GetAuthenticationSettingResult { readonly authentication: outputs.GetAuthenticationSettingAuthentication; /** * 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; } /** * AuthenticationSetting data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const settingsData = scm.getAuthenticationSetting({ * id: "f4e09263-f8bf-4a4d-a37d-b54d6530810a", * }); * export const fetchedSettings = settingsData; * ``` */ export declare function getAuthenticationSettingOutput(args: GetAuthenticationSettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAuthenticationSetting. */ export interface GetAuthenticationSettingOutputArgs { /** * 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=getAuthenticationSetting.d.ts.map