import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to retrieve information about an identity user. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myUser = ovh.Me.getIdentityUser({ * user: "my_user_login", * }); * ``` */ export declare function getIdentityUser(args: GetIdentityUserArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIdentityUser. */ export interface GetIdentityUserArgs { /** * User's login. */ user: string; } /** * A collection of values returned by getIdentityUser. */ export interface GetIdentityUserResult { /** * User's identity URN. */ readonly UserURN: string; /** * Creation date of this user. */ readonly creation: string; /** * User description. */ readonly description: string; /** * User's email. */ readonly email: string; /** * User's group. */ readonly group: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Last update of this user. */ readonly lastUpdate: string; /** * User's login suffix. */ readonly login: string; /** * When the user changed his password for the last time. */ readonly passwordLastUpdate: string; /** * Current user's status. */ readonly status: string; readonly user: string; } /** * Use this data source to retrieve information about an identity user. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myUser = ovh.Me.getIdentityUser({ * user: "my_user_login", * }); * ``` */ export declare function getIdentityUserOutput(args: GetIdentityUserOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIdentityUser. */ export interface GetIdentityUserOutputArgs { /** * User's login. */ user: pulumi.Input; }