import * as $dara from '@darabonba/typescript'; export declare class CreateUserResponseBodyUserTagsTag extends $dara.Model { tagKey?: string; tagValue?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateUserResponseBodyUserTags extends $dara.Model { tag?: CreateUserResponseBodyUserTagsTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateUserResponseBodyUser extends $dara.Model { /** * @remarks * The description. * * @example * This is a cloud computing engineer. */ comments?: string; /** * @remarks * The time when the RAM user was created. * * @example * 2020-10-12T09:12:00Z */ createDate?: string; /** * @remarks * The display name of the RAM user. * * @example * test */ displayName?: string; /** * @remarks * The email address of the RAM user. * * > This parameter is valid only on the China site (aliyun.com). * * @example * alice@example.com */ email?: string; /** * @remarks * The last time when the RAM user logged on to the Alibaba Cloud Management Console. * * @example * 2020-10-12T09:12:00Z */ lastLoginDate?: string; /** * @remarks * The mobile phone number of the RAM user. * * > This parameter is valid only on the China site (aliyun.com). * * @example * 86-1868888**** */ mobilePhone?: string; /** * @remarks * The source of the RAM user. Valid values: * * - Manual: The RAM user is manually created in the RAM console. * * - SCIM: The RAM user is mapped by using System for Cross-domain Identity Management (SCIM). * * - CloudSSO: The RAM user is mapped from a CloudSSO user. * * @example * Manual */ provisionType?: string; tags?: CreateUserResponseBodyUserTags; /** * @remarks * The time when the information about the RAM user was updated. * * @example * 2020-10-12T09:12:00Z */ updateDate?: string; /** * @remarks * The ID of the RAM user. * * @example * 20732900249392**** */ userId?: string; /** * @remarks * The logon name of the RAM user. * * @example * test@example.onaliyun.com */ userPrincipalName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateUserResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 2BB8C44A-2862-4922-AD43-03924749173B */ requestId?: string; /** * @remarks * The information about the RAM user. */ user?: CreateUserResponseBodyUser; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }