@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
26 lines • 732 B
TypeScript
import { UserStatusEnum } from './UserStatusEnum';
import { UserTypeEnum } from './UserTypeEnum';
/** An IAM User */
export interface User {
/** Creation date of this user */
creation: string;
/** User's description */
description: string;
/** User's email */
email?: string;
/** User's group */
group: string;
/** User's last update date */
lastUpdate: string;
/** User's login suffix */
login: string;
/** User's password last update date */
passwordLastUpdate?: string;
/** Current user's status */
status: UserStatusEnum;
/** Type of user */
type?: UserTypeEnum;
/** IAM identity URN of the user */
urn: string;
}
//# sourceMappingURL=User.d.ts.map