import * as pulumi from "@pulumi/pulumi"; /** * Data Source schema for Volcengine::VEDBM::Account */ export declare function getAccount(args: GetAccountArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAccount. */ export interface GetAccountArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getAccount. */ export interface GetAccountResult { /** * Account Description */ readonly accountDesc: string; /** * Account Name */ readonly accountName: string; /** * Database Account Password */ readonly accountPassword: string; /** * Account Type */ readonly accountType: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Instance ID */ readonly instanceId: string; /** * Reset high-privilege account permissions. Only applicable to Super accounts. If users modify high-privilege account permissions via SQL on the backend, subsequent features may become unavailable. Therefore, this function is provided to restore all permissions with one click. */ readonly resetPrivilege: boolean; } /** * Data Source schema for Volcengine::VEDBM::Account */ export declare function getAccountOutput(args: GetAccountOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAccount. */ export interface GetAccountOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }