import * as pulumi from "@pulumi/pulumi"; /** * LocalUser data source */ export declare function getLocalUser(args: GetLocalUserArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLocalUser. */ export interface GetLocalUserArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the local user */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getLocalUser. */ export interface GetLocalUserResult { /** * The device in which the resource is defined */ readonly device: string; readonly disabled: boolean; readonly encryptedValues: { [key: string]: string; }; readonly folder: string; /** * The UUID of the local user */ readonly id: string; readonly name: string; readonly password: string; readonly snippet: string; readonly tfid: string; } /** * LocalUser data source */ export declare function getLocalUserOutput(args: GetLocalUserOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLocalUser. */ export interface GetLocalUserOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the local user */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getLocalUser.d.ts.map