import * as pulumi from "@pulumi/pulumi"; /** * Data Source schema for Volcengine::Kafka::User */ export declare function getUser(args: GetUserArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUser. */ export interface GetUserArgs { id: string; } /** * A collection of values returned by getUser. */ export interface GetUserResult { readonly allAuthority: boolean; readonly createTime: string; readonly description: string; readonly id: string; readonly instanceId: string; readonly passwordType: string; readonly userName: string; readonly userPassword: string; } /** * Data Source schema for Volcengine::Kafka::User */ export declare function getUserOutput(args: GetUserOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUser. */ export interface GetUserOutputArgs { id: pulumi.Input; }